示例#1
0
        public IActionResult UpVote(int id)
        {
            var         userId   = User.FindFirst(ClaimTypes.NameIdentifier).Value;
            AppUserMeme timThay  = userMemeService.GetByUserIdMemeId(userId, id);
            Meme        chinhSua = memeService.GetById(id);

            if (timThay != null)
            {
                if (timThay.UporDown == "uv")
                {
                    chinhSua.MemeUpvotes--;
                    memeService.Update(chinhSua);
                    userMemeService.Delete(timThay);
                }
                else
                {
                    chinhSua.MemeUpvotes += 2;
                    memeService.Update(chinhSua);
                    timThay.UporDown = "uv";
                    userMemeService.Update(timThay);
                }
            }
            else
            {
                AppUserMeme lichSuUpVoteMoi = new AppUserMeme();
                lichSuUpVoteMoi.MemeId   = id;
                lichSuUpVoteMoi.UserId   = userId;
                lichSuUpVoteMoi.UporDown = "uv";
                chinhSua.MemeUpvotes++;
                memeService.Update(chinhSua);
                userMemeService.Add(lichSuUpVoteMoi);
            }
            return(RedirectToAction("Index", new { id = chinhSua.MemeCategory }));
        }
示例#2
0
        // GET: Admin/Memes/Details/5
        public IActionResult Details(int id)
        {
            var meme = _context.GetById(id);

            if (meme == null)
            {
                return(NotFound());
            }

            return(View(meme));
        }