コード例 #1
0
        /// <summary>
        /// Fait une recherche générale dans tout les index grâce au param keyword
        /// </summary>
        /// <param name="keyword"></param>
        /// <param name="from"></param>
        /// <param name="take"></param>
        /// <returns></returns>
        public GenericResponse get(string keyword, int from = 0, int take=20)
        {
          //  var nvc = HttpUtility.ParseQueryString(Request.RequestUri.Query);
            if(keyword.Contains("%20")){
                keyword.Replace("%20", " ");
            }
            keyword = keyword.ToLower();
            GenericResponse myReturn = new GenericResponse();
            
            //Search in Profiles
            profilesController Pcontroller = new profilesController();
            myReturn.Gprofile = Pcontroller.SimpleSearchProfile(keyword, from, take).Hits;            

            //Search in Blogs
            blogController Bcontroller = new blogController();
            myReturn.Gblog = Bcontroller.SimpleSearchBlog(keyword, from, take).Hits;
            myReturn.Gblogpost = Bcontroller.SimpleSearchBlogPost(keyword, from, take).Hits;
            myReturn.Gblogpostcomment = Bcontroller.SimpleSearchBlogComment(keyword, from, take).Hits;
            
            //Search in Events
            eventsController Econtroller = new eventsController();
            myReturn.Gevent = Econtroller.SimpleSearchEvent(keyword, from, take).Hits;

            //Search in Places
            placesController PLcontroller = new placesController();
            myReturn.Gplace = PLcontroller.SimpleSearchPlace(keyword, from, take).Hits;

            //Search in Forum
            forumController Fcontroller = new forumController();
            myReturn.Gpostforum = Fcontroller.SimpleSearchPostForum(keyword, from, take).Hits;

            return myReturn;
        }
コード例 #2
0
 /// <summary>
 /// supprime un lieu
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public bool get_place(string id = "")
 {
     if (id == "" || id == null) return false;
     placesController controller = new placesController();
     controller.RemovePlace(id);
     return true;
 }
コード例 #3
0
ファイル: TestAdd.cs プロジェクト: Yunyun548/Recherche
 public void TestInitialize()
 {
     client = YoupElasticSearch.InitializeConnection();
     controllerEvent = new eventsController();
     controllerProfile = new profilesController();
     controllerPlace = new placesController();
     controllerForum = new forumController();
     controllerBlog = new blogController();
 }
コード例 #4
0
        /// <summary>
        /// 
        /// </summary>
        /// <param name="keyword"></param>
        /// <param name="from"></param>
        /// <param name="take"></param>
        /// <param name="location"></param>
        /// <returns></returns>
        public GenericResponse get_place(string keyword="", int from=0, int take=20, string location="")
        {
            if (keyword.Contains("%20"))
            {
                keyword.Replace("%20", " ");
            }
            keyword = keyword.ToLower();
            location = location.ToLower();
            GenericResponse myReturn = new GenericResponse();

            //Search in Places
            placesController Pcontroller = new placesController();
            myReturn.Gplace = Pcontroller.AdvancedSearchPlace(from, take, keyword, location).Hits;
            return myReturn;
        }
コード例 #5
0
 /// <summary>
 /// Met à jour un lieu
 /// </summary>
 /// <param name="id"></param>
 /// <param name="name"></param>
 /// <param name="town"></param>
 /// <param name="latitude"></param>
 /// <param name="longitude"></param>
 /// <returns></returns>
 public bool get_place(string id="", string name="", string town="", decimal? latitude=0, decimal? longitude=0)
 {
     Place XNewPlace = new Place(id, name, town, latitude, longitude);
     placesController controller = new placesController();
     controller.UpdatePlace(XNewPlace);
     return true;
 }