コード例 #1
0
        public IHttpActionResult Follow(FollowingArtistDto dto)
        {
            try
            {
                var userId = User.Identity.GetUserId();

                if (_context.Followers.Any(f => f.FollowerId == userId && f.FolloweeId == dto.ArtistId))
                {
                    return(BadRequest("Już śledzisz tego wykonawcę!"));
                }

                var following = new FollowingArtist()
                {
                    FolloweeId = dto.ArtistId,
                    FollowerId = userId
                };

                _context.Followers.Add(following);
                _context.SaveChanges();

                return(Ok());
            }
            catch (Exception)
            {
                return(BadRequest("Obserwowanie nie powiodło się."));
            }
        }
コード例 #2
0
        public IHttpActionResult IsFollowing(FollowingArtistDto dto)
        {
            var userId = User.Identity.GetUserId();

            if (_context.Followers.Any(f => f.FollowerId == userId && f.FolloweeId == dto.ArtistId))
            {
                return(Ok());
            }

            return(BadRequest());
        }
コード例 #3
0
        public IHttpActionResult CancelFollowing(FollowingArtistDto dto)
        {
            var userId = User.Identity.GetUserId();


            if (!_context.Followers.Any(f => f.FollowerId == userId && f.FolloweeId == dto.ArtistId))
            {
                return(BadRequest("Nie śledzisz tego wykonawcy"));
            }

            var follow = _context.Followers.Single(f => f.FolloweeId == dto.ArtistId && f.FollowerId == userId);



            _context.Followers.Remove(follow);
            _context.SaveChanges();

            return(Ok());
        }