/// <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; }
/// <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; }
public void TestInitialize() { client = YoupElasticSearch.InitializeConnection(); controllerEvent = new eventsController(); controllerProfile = new profilesController(); controllerPlace = new placesController(); controllerForum = new forumController(); controllerBlog = new blogController(); }
/// <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; }
/// <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; }