summaryrefslogtreecommitdiff
path: root/Project-Unite/Controllers/WikiControllerController.cs
blob: 391c57da3e3964b321335904438e35a721bf7bd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Microsoft.AspNet.Identity;
using Project_Unite.Models;

namespace Project_Unite.Controllers
{
    public class WikiController : Controller
    {
        public ActionResult Index(string id = "", bool triedtolikeowntopic=false)
        {
            var db = new ApplicationDbContext();
            var model = new WikiViewModel();
            var wikicategories = db.WikiCategories.Where(x => x.Parent == "none");
            model.Categories = wikicategories;
            model.Page = db.WikiPages.FirstOrDefault(x => x.Id == id);
            if (triedtolikeowntopic)
                ViewBag.Error = "You cannot like or dislike your own wiki page.";
            return View(model);
        }

        [Authorize]
        public ActionResult EditPage(string id)
        {
            var db = new ApplicationDbContext();
            var model = new AddWikiPageViewModel();
            var wiki = db.WikiPages.FirstOrDefault(x => x.Id == id);
            if (wiki == null)
                return new HttpStatusCodeResult(404);
            model.Content = wiki.Contents;
            model.Name = wiki.Name;
            model.ParentId = wiki.CategoryId;
            model.PageId = id;
            return View(model);
        }

        [Authorize]
        [ValidateAntiForgeryToken]
        [HttpPost]
        public ActionResult EditPage(AddWikiPageViewModel model)
        {
            if (!ModelState.IsValid)
                return View(model);
            var db = new ApplicationDbContext();

            var wiki = db.WikiPages.FirstOrDefault(x => x.Id == model.PageId);
            if (wiki == null)
                return new HttpStatusCodeResult(404);
            var edit = new ForumPostEdit();
            edit.PreviousState = wiki.Contents;
            edit.EditedAt = DateTime.Now;
            edit.UserId = User.Identity.GetUserId();
            edit.Id = Guid.NewGuid().ToString();
            edit.Parent = wiki.Id;

            db.ForumPostEdits.Add(edit);

            wiki.Contents = model.Content;
            wiki.CategoryId = model.ParentId;

            db.SaveChanges();

            return RedirectToAction("Index", new { id = model.PageId });
        }

        public ActionResult Random()
        {
            var db = new ApplicationDbContext();
            var rnd = new Random();
            var index = rnd.Next(0, db.WikiPages.Count());
            if (db.WikiPages.Count() == 0)
                return RedirectToAction("Index");

            var wiki = db.WikiPages.ToArray()[index].Id;
            return RedirectToAction("Index", new { id = wiki });
        }

        [Authorize]
        public ActionResult AddPage()
        {
            return View(new AddWikiPageViewModel());
        }

        [Authorize]
        [HttpPost]
        [ValidateAntiForgeryToken]
        public ActionResult AddPage(AddWikiPageViewModel model)
        {
            if (!ModelState.IsValid)
                return View(model);

            var db = new ApplicationDbContext();
            var page = new WikiPage();
            page.CategoryId = model.ParentId;
            page.Contents = model.Content;
            page.Name = model.Name;

            string allowed = "abcdefghijklmnopqrstuvwxyz1234567890_";
            page.Id = page.Name.ToLower();
            foreach(var c in page.Id.ToCharArray())
            {
                if (!allowed.Contains(c))
                    page.Id = page.Id.Replace(c, '_');
            }

            var edit = new ForumPostEdit();
            edit.Id = Guid.NewGuid().ToString();
            edit.Parent = page.Id;
            edit.EditedAt = DateTime.Now;
            edit.EditReason = "Page created.";
            edit.PreviousState = page.Contents;
            edit.UserId = User.Identity.GetUserId();

            db.ForumPostEdits.Add(edit);
            db.WikiPages.Add(page);
            db.SaveChanges();

            return RedirectToAction("Index", new { id = edit.Id });
        }

        [Authorize]
        public ActionResult DislikePage(string id)
        {
            var db = new ApplicationDbContext();
            var topic = db.WikiPages.FirstOrDefault(x => x.Id == id);
            var uid = User.Identity.GetUserId();
            if (topic == null)
                return new HttpStatusCodeResult(404);
            if (topic.EditHistory.OrderBy(x => x.EditedAt).First().UserId == User.Identity.GetUserId())
                return RedirectToAction("Index", new { id = id, triedtolikeowntopic = true });
            var like = db.Likes.Where(x => x.Topic == topic.Id).FirstOrDefault(x => x.User == uid);
            if (like != null)
            {
                if (like.IsDislike == false)
                {
                    like.IsDislike = true;
                }
                else
                {
                    db.Likes.Remove(like);
                }
            }
            else
            {
                like = new Models.Like();
                like.Id = Guid.NewGuid().ToString();
                like.User = User.Identity.GetUserId();
                like.Topic = topic.Id;
                like.LikedAt = DateTime.Now;
                like.IsDislike = true;
                db.Likes.Add(like);
            }
            db.SaveChanges();
            return RedirectToAction("Index", new { id = id });
        }

        [Authorize]
        public ActionResult LikePage(string id)
        {
            var db = new ApplicationDbContext();
            var topic = db.WikiPages.FirstOrDefault(x => x.Id == id);
            var uid = User.Identity.GetUserId();
            if (topic == null)
                return new HttpStatusCodeResult(404);
            if (topic.EditHistory.OrderBy(x=>x.EditedAt).First().UserId == User.Identity.GetUserId())
                return RedirectToAction("Index", new { id = id, triedtolikeowntopic = true });
            var like = db.Likes.Where(x => x.Topic == topic.Id).FirstOrDefault(x => x.User == uid);
            if (like != null)
            {
                if (like.IsDislike == true)
                {
                    like.IsDislike = false;
                }
                else
                {
                    db.Likes.Remove(like);
                }
            }
            else
            {
                like = new Models.Like();
                like.Id = Guid.NewGuid().ToString();
                like.User = User.Identity.GetUserId();
                like.Topic = topic.Id;
                like.LikedAt = DateTime.Now;
                like.IsDislike = false;
                db.Likes.Add(like);
            }
            db.SaveChanges();
            return RedirectToAction("Index", new { id = id });
        }

    }
}