/// <summary> /// Search for an Expert data using its login. /// </summary> /// <param name="login">The login of the targeted Expert.</param> /// <returns></returns> public static Manager.Expert SearchById(string login) { /* On déclare et on crée une instance des variables nécéssaires pour la recherche */ Manager.Expert expert = new Manager.Expert(); try { XPathDocument XPathDocu = new XPathDocument(path + "Experts.xml"); XPathNavigator Navigator; XPathNodeIterator Nodes; /* On affecte false à la variable NoMatches afin de vérifier par la suite * si la recherche a été fructueuse*/ expert.setnoMatch(false); /* On crée un navigateur */ Navigator = XPathDocu.CreateNavigator(); /* On crée ici l'expression XPath de recherche d'expert à partir du login */ //starts-with('XML','X') //string ExpXPath = "//Expert[@login='******' and status != 'Deactivated']"; string ExpXPath = "//Expert[starts-with(@login,'" + login + "') and status != 'Deactivated']"; /* On lance la recherche */ Nodes = Navigator.Select(Navigator.Compile(ExpXPath)); /* On vérifie si la recherche a été fructueuse */ if (Nodes.Count != 0) { Nodes.MoveNext(); // NOTE: Necéssaire pour se placer sur le noeud recherché /* Encodage des données dans la classe Expert */ expert.setId(Convert.ToInt32(Nodes.Current.GetAttribute("id", ""))); expert.setLogin(Nodes.Current.GetAttribute("login", "")); expert.setPassword(Nodes.Current.GetAttribute("password", "")); Nodes.Current.MoveToFirstChild(); /* On se déplace sur le premier noeud * enfant "Prenom" */ expert.setFirstName(Nodes.Current.Value); Nodes.Current.MoveToNext(); // On se déplace sur le noeud suivant "Nom" expert.setLastName(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setEmail(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setPhoneNumber(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setAddress(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setRole(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setSpecialty(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setStatus(Helper.StringToStatus(Nodes.Current.Value)); } /* Si aucun expert n'a été trouvé */ else { expert.setnoMatch(true); } } catch (Exception x) { expert.setnoMatch(true); } /* Renvoi de toutes les données dans une instance de la classe "Client" */ return(expert); }
/// <summary> /// Search an Expert using his firstname or lastname. /// </summary> /// <param name="name">The first/last name of the Expert.</param> /// <returns></returns> public static List<Manager.Expert> SearchByName(string name) { /* On déclare et on crée une instance des variables nécéssaires pour la recherche */ List<Manager.Expert> experts = new List<Manager.Expert>(); try { XPathDocument XPathDocu = new XPathDocument(path + "Experts.xml"); XPathNavigator Navigator; XPathNodeIterator Nodes; /* On crée un navigateur */ Navigator = XPathDocu.CreateNavigator(); /* On crée ici l'expression XPath de recherche d'expert à partir de l'id */ //string ExpXPath = "//Expert[(firstName='" + name + "' or lastName='" + name + "') and status != 'Deactivated']"; string ExpXPath = "//Expert[(starts-with(translate(firstName,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ'),'" + name.ToUpper() + "')" + "or starts-with(translate(lastName, 'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ'),'" + name.ToUpper() + "')" + ") and status != 'Deactivated']"; //string ExpXPath = "//Expert[(translate(firstName,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ')='" + name.ToUpper() + // "' or translate(lastName,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ')='" + name.ToUpper() + // "') and status != 'Deactivated']"; /* On lance la recherche */ Nodes = Navigator.Select(Navigator.Compile(ExpXPath)); /* On vérifie si la recherche a été fructueuse */ if (Nodes.Count != 0) { while (Nodes.MoveNext()) // NOTE: Necéssaire pour se placer sur le noeud recherché { Manager.Expert expert = new Manager.Expert(); /* Encodage des données dans la classe Expert */ expert.setId(Convert.ToInt32(Nodes.Current.GetAttribute("id", ""))); /* Pas besoin de chercher cette donnée vu que c'est notre * critère de recherche, on peut donc directement * l'encoder. */ expert.setLogin(Nodes.Current.GetAttribute("login", "")); expert.setPassword(Nodes.Current.GetAttribute("password", "")); Nodes.Current.MoveToFirstChild(); /* On se déplace sur le premier noeud * enfant "Prenom" */ expert.setFirstName(Nodes.Current.Value); Nodes.Current.MoveToNext(); // On se déplace sur le noeud suivant "Nom" expert.setLastName(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setEmail(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setPhoneNumber(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setAddress(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setRole(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setSpecialty(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setStatus(Helper.StringToStatus(Nodes.Current.Value)); experts.Add(expert); } } } catch (Exception x) { //If there was a problem we re-instanciate the list so no element is sent. //It returns an empty list instead of null, then we make our test on list.count. experts = new List<Manager.Expert>(); } /* Renvoi de toutes les données dans une instance de la classe "Client" */ return experts; }
/// <summary> /// Search for an Expert data using its login. /// </summary> /// <param name="login">The login of the targeted Expert.</param> /// <returns></returns> public static Manager.Expert SearchById(string login) { /* On déclare et on crée une instance des variables nécéssaires pour la recherche */ Manager.Expert expert = new Manager.Expert(); try { XPathDocument XPathDocu = new XPathDocument(path + "Experts.xml"); XPathNavigator Navigator; XPathNodeIterator Nodes; /* On affecte false à la variable NoMatches afin de vérifier par la suite * si la recherche a été fructueuse*/ expert.setnoMatch(false); /* On crée un navigateur */ Navigator = XPathDocu.CreateNavigator(); /* On crée ici l'expression XPath de recherche d'expert à partir du login */ //starts-with('XML','X') //string ExpXPath = "//Expert[@login='******' and status != 'Deactivated']"; string ExpXPath = "//Expert[starts-with(@login,'" + login + "') and status != 'Deactivated']"; /* On lance la recherche */ Nodes = Navigator.Select(Navigator.Compile(ExpXPath)); /* On vérifie si la recherche a été fructueuse */ if (Nodes.Count != 0) { Nodes.MoveNext(); // NOTE: Necéssaire pour se placer sur le noeud recherché /* Encodage des données dans la classe Expert */ expert.setId(Convert.ToInt32(Nodes.Current.GetAttribute("id", ""))); expert.setLogin(Nodes.Current.GetAttribute("login", "")); expert.setPassword(Nodes.Current.GetAttribute("password", "")); Nodes.Current.MoveToFirstChild(); /* On se déplace sur le premier noeud * enfant "Prenom" */ expert.setFirstName(Nodes.Current.Value); Nodes.Current.MoveToNext(); // On se déplace sur le noeud suivant "Nom" expert.setLastName(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setEmail(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setPhoneNumber(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setAddress(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setRole(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setSpecialty(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setStatus(Helper.StringToStatus(Nodes.Current.Value)); } /* Si aucun expert n'a été trouvé */ else { expert.setnoMatch(true); } } catch (Exception x) { expert.setnoMatch(true); } /* Renvoi de toutes les données dans une instance de la classe "Client" */ return expert; }
/// <summary> /// Returns all the elements or only the Activated onces from Experts.xml depending on the value of the boolean argument. /// </summary> /// <param name="evenDeactivated">When true get all elments, otherwise get only the activated onces.</param> /// <returns></returns> public static List <Manager.Expert> GetAll(bool evenDeactivated) { /* On déclare et on crée une instance des variables nécéssaires pour la recherche */ List <Manager.Expert> experts = new List <Manager.Expert>(); try { XPathDocument XPathDocu = new XPathDocument(path + "Experts.xml"); XPathNavigator Navigator; XPathNodeIterator Nodes; /* On crée un navigateur */ Navigator = XPathDocu.CreateNavigator(); /* On crée ici l'expression XPath de recherche d'expert à partir de l'id */ //string ExpXPath = "//Expert[(firstName='" + name + "' or lastName='" + name + "') and status != 'Deactivated']"; //To eleminate the case sensetive in XPath we use the methode translate(). string ExpXPath = ""; if (evenDeactivated) { ExpXPath = "//Expert"; } else { ExpXPath = "//Expert[status != 'Deactivated']"; } /* On lance la recherche */ Nodes = Navigator.Select(Navigator.Compile(ExpXPath)); /* On vérifie si la recherche a été fructueuse */ if (Nodes.Count != 0) { while (Nodes.MoveNext()) // NOTE: Necéssaire pour se placer sur le noeud recherché { Manager.Expert expert = new Manager.Expert(); /* Encodage des données dans la classe Expert */ expert.setId(Convert.ToInt32(Nodes.Current.GetAttribute("id", ""))); /* Pas besoin de chercher cette donnée vu que c'est notre * critère de recherche, on peut donc directement * l'encoder. */ expert.setLogin(Nodes.Current.GetAttribute("login", "")); expert.setPassword(Nodes.Current.GetAttribute("password", "")); //System.Windows.Forms.MessageBox.Show(expert.getPassword(),"XMLExpert"); Nodes.Current.MoveToFirstChild(); /* On se déplace sur le premier noeud * enfant "Prenom" */ expert.setFirstName(Nodes.Current.Value); Nodes.Current.MoveToNext(); // On se déplace sur le noeud suivant "Nom" expert.setLastName(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setEmail(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setPhoneNumber(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setAddress(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setRole(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setSpecialty(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setStatus(Helper.StringToStatus(Nodes.Current.Value)); experts.Add(expert); } } } catch (Exception x) { //If there was a problem we re-instanciate the list so no element is sent. //It returns an empty list instead of null, then we make our test on list.count. experts = new List <Manager.Expert>(); } /* Renvoi de toutes les données dans une instance de la classe "Client" */ return(experts); }
/// <summary> /// Search an Expert using his firstname or lastname. /// </summary> /// <param name="name">The first/last name of the Expert.</param> /// <returns></returns> public static List <Manager.Expert> SearchByName(string name) { /* On déclare et on crée une instance des variables nécéssaires pour la recherche */ List <Manager.Expert> experts = new List <Manager.Expert>(); try { XPathDocument XPathDocu = new XPathDocument(path + "Experts.xml"); XPathNavigator Navigator; XPathNodeIterator Nodes; /* On crée un navigateur */ Navigator = XPathDocu.CreateNavigator(); /* On crée ici l'expression XPath de recherche d'expert à partir de l'id */ //string ExpXPath = "//Expert[(firstName='" + name + "' or lastName='" + name + "') and status != 'Deactivated']"; string ExpXPath = "//Expert[(starts-with(translate(firstName,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ'),'" + name.ToUpper() + "')" + "or starts-with(translate(lastName, 'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ'),'" + name.ToUpper() + "')" + ") and status != 'Deactivated']"; //string ExpXPath = "//Expert[(translate(firstName,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ')='" + name.ToUpper() + // "' or translate(lastName,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ')='" + name.ToUpper() + // "') and status != 'Deactivated']"; /* On lance la recherche */ Nodes = Navigator.Select(Navigator.Compile(ExpXPath)); /* On vérifie si la recherche a été fructueuse */ if (Nodes.Count != 0) { while (Nodes.MoveNext()) // NOTE: Necéssaire pour se placer sur le noeud recherché { Manager.Expert expert = new Manager.Expert(); /* Encodage des données dans la classe Expert */ expert.setId(Convert.ToInt32(Nodes.Current.GetAttribute("id", ""))); /* Pas besoin de chercher cette donnée vu que c'est notre * critère de recherche, on peut donc directement * l'encoder. */ expert.setLogin(Nodes.Current.GetAttribute("login", "")); expert.setPassword(Nodes.Current.GetAttribute("password", "")); Nodes.Current.MoveToFirstChild(); /* On se déplace sur le premier noeud * enfant "Prenom" */ expert.setFirstName(Nodes.Current.Value); Nodes.Current.MoveToNext(); // On se déplace sur le noeud suivant "Nom" expert.setLastName(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setEmail(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setPhoneNumber(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setAddress(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setRole(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setSpecialty(Nodes.Current.Value); Nodes.Current.MoveToNext(); expert.setStatus(Helper.StringToStatus(Nodes.Current.Value)); experts.Add(expert); } } } catch (Exception x) { //If there was a problem we re-instanciate the list so no element is sent. //It returns an empty list instead of null, then we make our test on list.count. experts = new List <Manager.Expert>(); } /* Renvoi de toutes les données dans une instance de la classe "Client" */ return(experts); }