コード例 #1
0
        public async Task <ActionResult> UpdateSearch(int id, [FromBody] ViewSearchModel updated)
        {
            var search = await db.Searches.Include(s => s.Sources).FirstOrDefaultAsync(s => s.Id == id);

            search.Name   = updated.Search.Name;
            search.Phrase = updated.Search.Phrase;

            foreach (ViewSearchSource searchSource in updated.Sources)
            {
                SearchSource sourceAlreadySelected = search.Sources.FirstOrDefault(ss => ss.SourceId == searchSource.Source.Id);

                if (searchSource.Selected)
                {
                    if (sourceAlreadySelected == null)
                    {
                        await db.SearchSources.AddAsync(new SearchSource { SearchId = search.Id, SourceId = searchSource.Source.Id });
                    }
                }
                else
                {
                    if (sourceAlreadySelected != null)
                    {
                        db.SearchSources.Remove(sourceAlreadySelected);
                    }
                }
            }

            await db.SaveChangesAsync();

            return(await GetSearch(id));
        }
コード例 #2
0
        public async Task <ActionResult> GetSearch(int id)
        {
            var result = new ViewSearchModel();

            result.Search = await db.Searches
                            .Include(s => s.Sources).ThenInclude(ss => ss.Source)
                            .FirstOrDefaultAsync(o => o.Id == id);

            result.RecentMatches = await db.Matches
                                   .Include(m => m.Search)
                                   .Include(m => m.Meeting).ThenInclude(m => m.Source)
                                   .Where(m => m.TimeFound > DateTime.UtcNow.Subtract(TimeSpan.FromDays(7)) && m.Search.Id == id)
                                   .OrderByDescending(m => m.Meeting.Date)
                                   .Take(10)
                                   .ToListAsync();

            result.Sources = (await db.Sources.ToListAsync()).Select(s => new ViewSearchSource {
                Source = s, Selected = result.Search.Sources.Any(ss => ss.Source.Id == s.Id)
            }).ToList();

            result.Search.Sources = null;

            return(Ok(result));
        }
コード例 #3
0
        // GET: Search

        public ActionResult Index(string query, string category)
        {
            ViewSearchModel model = new ViewSearchModel
            {
                Query  = "" + query,
                Target = "" + category
            };

            using (PixurfDBContext db = new PixurfDBContext())
            {
                //Retrieve Users
                if (category == null || category.Equals("People") || category.Equals("All"))
                {
                    var queryable = db.Users.Where(user => user.Name.Contains(query) ||
                                                   (query.Contains("@") && user.Email.Contains(query)));
                    UserRelationship relationship = new UserRelationship();
                    foreach (User user in queryable)
                    {
                        model.Users.Add(new ViewPeopleSearch {
                            Id = user.User_ID, Name = user.Name, Email = user.Email, NoofFollowers = relationship.NoOfFollowers(user.User_ID)
                        });

                        if (model.Users.Count >= 5)
                        {
                            break;
                        }
                    }
                }
                //Retrieve Contents
                if (category == null || category.Equals("Content") || category.Equals("All"))
                {
                    var queryable = db.Contents.Where(c => c.Title.Contains(query) || c.Description.Contains(query));

                    foreach (Content content in queryable)
                    {
                        bool add = false;
                        if (content.Access == "Public")
                        {
                            add = true;
                        }
                        else if (User.Identity.IsAuthenticated)
                        {
                            string uid = User.Identity.GetUserId();

                            if (content.User_ID.Equals(uid))
                            {
                                add = true;
                            }
                            else
                            {
                                UserRelationship relationship = new UserRelationship();
                                if (content.Access == "Follower" && relationship.Following(content.User_ID, uid))
                                {
                                    add = true;
                                }
                                // if not blocked
                                // lol..... what about non logged in users :P
                            }
                        }
                        if (add)
                        {
                            model.Contents.Add(new ViewContentSearch {
                                Id = content.Content_ID, Title = content.Title, Description = content.Description, Path = content.Path, OwnerId = content.User_ID, OwnerName = content.User.Name, CreationDate = content.Creation_Date
                            });
                        }

                        if (model.Contents.Count >= 4)
                        {
                            break;
                        }
                    }
                }

                //Retrieve Albums
                if (category == null || category.Equals("Album") || category.Equals("All"))
                {
                    var queryable = db.Albums.Where(a => a.Name.Contains(query) || a.Description.Contains(query));

                    foreach (Album album in queryable)
                    {
                        bool add = false;
                        if (album.Access == "Public")
                        {
                            add = true;
                        }
                        else if (User.Identity.IsAuthenticated)
                        {
                            string uid = User.Identity.GetUserId();

                            if (album.User_ID.Equals(uid))
                            {
                                add = true;
                            }
                            else
                            {
                                UserRelationship relationship = new UserRelationship();
                                if (album.Access == "Follower" && relationship.Following(album.User_ID, uid))
                                {
                                    add = true;
                                }
                                // if not blocked
                                // lol..... what about non logged in users :P
                            }
                        }

                        if (add)
                        {
                            model.Albums.Add(new ViewAlbumSearch {
                                Id = album.Album_ID, Title = album.Name, OwnerId = album.User_ID, OwnerName = album.User.Name, CreationDate = album.Creation_Date
                            });
                        }

                        if (model.Albums.Count >= 5)
                        {
                            break;
                        }
                    }
                }
            }

            ViewBag.Title = "" + query;
            return(View(model));
        }
コード例 #4
0
        public ActionResult Tag(string tag)
        {
            ViewSearchModel model = new ViewSearchModel
            {
                Query = "" + tag,
            };

            using (PixurfDBContext db = new PixurfDBContext())
            {
                IQueryable <Content> queryableContents = db.Contents.Where(c => c.Title.Contains("#" + tag) || c.Description.Contains("#" + tag));

                foreach (Content content in queryableContents)
                {
                    bool add = false;
                    if (content.Access == "Public")
                    {
                        add = true;
                    }
                    else if (User.Identity.IsAuthenticated)
                    {
                        string uid = User.Identity.GetUserId();

                        if (content.User_ID.Equals(uid))
                        {
                            add = true;
                        }
                        else
                        {
                            UserRelationship relationship = new UserRelationship();
                            if (content.Access == "Follower" && relationship.Following(content.User_ID, uid))
                            {
                                add = true;
                            }
                            // if not blocked
                            // lol..... what about non logged in users :P
                        }
                    }
                    if (add)
                    {
                        model.Contents.Add(new ViewContentSearch {
                            Id = content.Content_ID, Title = content.Title, Description = content.Description, Path = content.Path, OwnerId = content.User_ID, OwnerName = content.User.Name, CreationDate = content.Creation_Date
                        });
                    }

                    if (model.Contents.Count >= 4)
                    {
                        break;
                    }
                }


                //Retrieve Albums

                IQueryable <Album> queryableAlbums = db.Albums.Where(a => a.Name.Contains("#" + tag) || a.Description.Contains("#" + tag));

                foreach (Album album in queryableAlbums)
                {
                    bool add = false;
                    if (album.Access == "Public")
                    {
                        add = true;
                    }
                    else if (User.Identity.IsAuthenticated)
                    {
                        string uid = User.Identity.GetUserId();

                        if (album.User_ID.Equals(uid))
                        {
                            add = true;
                        }
                        else
                        {
                            UserRelationship relationship = new UserRelationship();
                            if (album.Access == "Follower" && relationship.Following(album.User_ID, uid))
                            {
                                add = true;
                            }
                            // if not blocked
                            // lol..... what about non logged in users :P
                        }
                    }

                    if (add)
                    {
                        model.Albums.Add(new ViewAlbumSearch {
                            Id = album.Album_ID, Title = album.Name, OwnerId = album.User_ID, OwnerName = album.User.Name, CreationDate = album.Creation_Date
                        });
                    }

                    if (model.Albums.Count >= 5)
                    {
                        break;
                    }
                }
            }

            ViewBag.Title = "#" + tag;
            return(View(model));
        }