Ejemplo n.º 1
0
        // To protect from overposting attacks, please enable the specific properties you want to bind to, for
        // more details see https://aka.ms/RazorPagesCRUD.
        public async Task <IActionResult> OnPostAsync(int id)
        {
            Artist.ArtistID = id;

            if (!ModelState.IsValid)
            {
                error = string.Join(" | ", ModelState.Values
                                    .SelectMany(v => v.Errors)
                                    .Select(e => e.ErrorMessage));

                error += id.ToString();

                return(Page());
            }

            Artist.Listens = 0;

            Artist.Rating = 1;

            Artist.WordVec = Vspace.ConvertToString(Vspace.Add(_textprocessor.PredictText(Artist.Name), _textprocessor.PredictText(Artist.Description)));

            await _access.Create(id, Artist);

            return(RedirectToPage("./Index"));
        }
Ejemplo n.º 2
0
        public JsonResult OnPostLike(string song_id, string val)
        {
            if (HttpContext.User.Identity.IsAuthenticated)
            {
                int _id = Int32.Parse(HttpContext.User.Claims.Where(c => c.Type == "UserID").Select(c => c.Value).SingleOrDefault());
                _User             = _context.User.Find(_id);
                preference_vector = Vspace.ToArray(_User.PreferenceVector);
            }

            int like = Int32.Parse(val);

            if (_User != null)
            {
                History history = _context.History.Where(x => x.User.UserID == _User.UserID && x.Song.SongID == Int32.Parse(song_id)).FirstOrDefault();

                Song song = _context.Song.Where(s => s.SongID == Int32.Parse(song_id)).Include(x => x.Album).ThenInclude(x => x.Artist).FirstOrDefault();

                if (history == null)
                {
                    history = new History()
                    {
                        User = _User, Song = song, Progress = 0, Liked = like
                    };
                    _context.History.Add(history);
                    _context.SaveChanges();
                    return(new JsonResult("updated 1"));
                }

                if (history.Liked != like)
                {
                    song.Rating += like;

                    Artist artist = _context.Artist.Where(a => a.ArtistID == song.Album.Artist.ArtistID).FirstOrDefault();

                    artist.Rating += like;

                    history.Liked = like;

                    _User.PreferenceVector = Vspace.ConvertToString(
                        Vspace.Normalize(Vspace.Add(Vspace.Scale(like, Vspace.ToArray(song.WordVec)), Vspace.ToArray(_User.PreferenceVector))));

                    _context.Song.Update(song);
                    _context.Artist.Update(artist);
                    _context.History.Update(history);
                    _context.User.Update(_User);
                    _context.SaveChanges();
                }
                return(new JsonResult("Like1"));
            }
            return(new JsonResult("updated"));
        }
Ejemplo n.º 3
0
        public JsonResult OnPostIncreaseListen(string song_id)
        {
            if (HttpContext.User.Identity.IsAuthenticated)
            {
                int _id = Int32.Parse(HttpContext.User.Claims.Where(c => c.Type == "UserID").Select(c => c.Value).SingleOrDefault());
                _User = _context.User.Find(_id);
            }
            if (_User != null)
            {
                History history = _context.History.Where(x => x.User.UserID == _User.UserID && x.Song.SongID == Int32.Parse(song_id)).FirstOrDefault();

                Song song = _context.Song.Where(s => s.SongID == Int32.Parse(song_id)).Include(x => x.Album).ThenInclude(x => x.Artist).FirstOrDefault();
                if (history == null)
                {
                    _User.PreferenceVector = Vspace.ConvertToString(
                        Vspace.Normalize(Vspace.Add(Vspace.Scale(0.05f, Vspace.ToArray(song.WordVec)), Vspace.ToArray(_User.PreferenceVector))));

                    song.Listens += 1;
                    Artist artist = _context.Artist.Where(a => a.ArtistID == song.Album.Artist.ArtistID).FirstOrDefault();
                    artist.Listens += 1;

                    History new_history = new History()
                    {
                        User = _User, Song = song, Progress = 0, Liked = 0
                    };
                    _context.User.Update(_User);
                    _context.Song.Update(song);
                    _context.Artist.Update(artist);
                    _context.History.Add(new_history);
                    _context.SaveChanges();
                    return(new JsonResult("Listen1"));
                }
                return(new JsonResult("Listen2"));
            }
            return(new JsonResult("Clicked play " + song_id));
        }
Ejemplo n.º 4
0
        public async Task <IActionResult> OnPostAsync(int?id)
        {
            file = Path.Combine(_environment.ContentRootPath, "wwwroot", "music", UploadedFile.FileName);
            using (var fileStream = new FileStream(file, FileMode.Create))
            {
                await UploadedFile.CopyToAsync(fileStream);
            }

            string filename = UploadedFile.FileName;

            filename.Replace(" ", string.Empty);
            Song.Filepath = "/music/" + filename;

            User user = _context.User.FirstOrDefault(u => u.Username == User.Identity.Name);

            Artist artist = _context.Artist.FirstOrDefault(a => a.ArtistID == id);

            Genre genre = _context.Genre.FirstOrDefault(g => g.Name == Song.Genre.Name);

            if (genre == null)
            {
                genre = new Genre
                {
                    Name    = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(Song.Genre.Name.ToLower()),
                    WordVec = VSpace.ConvertToString(_textprocessor.PredictText(Song.Genre.Name))
                };
                _context.Genre.Add(genre);
            }

            Song.Genre = genre;

            var album = _context.Album.FirstOrDefault(a => a.Name == Song.Album.Name && a.Artist.ArtistID == id);

            if (album == null)
            {
                Album Album = new Album
                {
                    Name   = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(Song.Album.Name),
                    Artist = artist
                };
                Song.Album = Album;
                _context.Album.Add(Album);
            }
            else
            {
                Song.Album = album;
            }

            _textprocessor.PredictText(Song.Lyrics);

            Song.Listens = 1;

            NaturalLanguage.vector.VectorSpace.ToArray(artist.WordVec);

            NaturalLanguage.vector.VectorSpace.ToArray(genre.WordVec);

            NaturalLanguage.vector.VectorSpace.Scale(genre_contrib, NaturalLanguage.vector.VectorSpace.ToArray(genre.WordVec));

            Song.WordVec = VSpace.ConvertToString(
                VSpace.Normalize(VSpace.Add(_textprocessor.PredictText(Song.Lyrics), _textprocessor.PredictText(Song.Name))));

            _reader.Read(Path.Combine(Environment.CurrentDirectory, "wwwroot/music",
                                      filename));

            double[][] res = AudioAnalysis.Fourier.FFT(_reader.GetStream(), 200, _reader.GetSampleRate());
            int[]      f   = AudioAnalysis.Compare.ToIntArray(res[1]);

            Song.FreqVec = AudioAnalysis.Compare.ToString(f);

            _context.Song.Add(Song);
            await _context.SaveChangesAsync();

            return(RedirectToPage("./Index"));
        }
Ejemplo n.º 5
0
        // To protect from overposting attacks, please enable the specific properties you want to bind to, for
        // more details see https://aka.ms/RazorPagesCRUD.
        public async Task <IActionResult> OnPostAsync()
        {
            Song s = _context.Song.Where(x => x.SongID == Song.SongID).FirstOrDefault();



            User user = _context.User.FirstOrDefault(u => u.Username == User.Identity.Name);

            Artist artist = _context.Artist.FirstOrDefault(a => a.ArtistID == user.UserID);

            Album a = _context.Album.Where(x => x.Name == Song.Album.Name && x.Artist.ArtistID == user.UserID).FirstOrDefault();
            Genre g = _context.Genre.Where(x => x.Name == Song.Genre.Name).FirstOrDefault();

            //if (a == null)
            //{
            //    Album Album = new Album
            //    {
            //        Name = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(Song.Album.Name),
            //        Artist = artist
            //    };
            //    Song.Album = Album;
            //    _context.Album.Add(Album);
            //}
            //else
            //{
            //    Song.Album = a;
            //}


            //if (g == null)
            //{
            //    g = new Genre
            //    {
            //        Name = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(Song.Genre.Name.ToLower()),
            //        WordVec = Vspace.ConvertToString(_textprocessor.PredictText(Song.Genre.Name))
            //    };
            //    _context.Genre.Add(g);
            //}

            //Song.Genre = g;

            //Song.Filepath = ;

            Song.WordVec = VSpace.ConvertToString(
                VSpace.Normalize(VSpace.Add(_textprocessor.PredictText(Song.Lyrics), _textprocessor.PredictText(Song.Name))));


            _context.Song.Update(s);

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!SongExists(Song.SongID))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(RedirectToPage("./Index"));
        }