Changed MergeBranch.bjsMergeBranch.vala
[gitlive] / RooTicket.vala
index d675621..3d85401 100644 (file)
@@ -1,4 +1,4 @@
-/**
+/** 
 
 code to fetch ticket info...
 
@@ -13,10 +13,27 @@ public class RooRepo : Object
        public string project_id;
        public string description;
        public string shortname;
+       
+
+}
 
+public class RooOption : Object 
+{
+       
+       public string id; // not really important that they are numbers..
+       public string name;     
+       public string display_name;
+       public RooOption (string id, string name, string display_name)
+       {
+               this.id = id;
+               this.name = name;
+               this.display_name = name;
+       }
 
 }
 
+
 public class RooProject  : Object 
 {
        public string  id; // not really important that they are numbers..
@@ -33,13 +50,14 @@ static RooTicket  _RooTicket;
 
 public class RooTicket : Object
 {
-       public enum NotMe {
-               TRUE,
-               FALSE
+       
+        public enum Who {
+               ANYBODY,
+               ME
        }
-       public enum Closed {
-               TRUE,
-               FALSE
+       public enum Status {
+               ALL,
+               ACTIVE
        }
        
    //const string baseurl = "https://roojs.com/admin.php/Ro/mtrack_ticket"; 
@@ -58,6 +76,14 @@ public class RooTicket : Object
        public Gee.ArrayList<RooTicket> tickets; // only available for singletonn.
        public Gee.ArrayList<RooProject> projects; // only available for singletonn.    
        public Gee.ArrayList<RooRepo> repos; // only available for singletonn.          
+       
+       public Gee.ArrayList<RooOption> milestones;
+       public Gee.ArrayList<RooOption> priorities;
+       public Gee.ArrayList<RooOption> serverities;
+       public Gee.ArrayList<RooOption> classifications;
+       public Gee.ArrayList<RooOption> developers;
+                
+       
        public string username = ""; // only available for singletonn.
        public string password = ""; // only available for singletonn.
 
@@ -89,6 +115,20 @@ public class RooTicket : Object
        
        }
 
+       public Gee.ArrayList<RooOption> readJsonArray(Json.Array a)
+       {
+               var ret = new Gee.ArrayList<RooOption>();
+               for(var i = 0; i < a.get_length(); i++) {
+                       var t = a.get_object_element(i);
+                       ret.add(new RooOption(
+                               t.get_string_member("id"),
+                               t.get_string_member("name"),                            
+                               t.get_string_member("display_name")
+                       ));
+               }
+               return ret;
+                        
+       }
 
        public RooTicket addTicket(Json.Object t)
        {
@@ -231,24 +271,18 @@ public class RooTicket : Object
                   }
        }
 
-       public void loadTickets(string project_id, NotMe not_me, Closed closed)
+       public void loadTickets(string project_id, Who who, Status status)
        {
                RooTicket.singleton().tickets = new Gee.ArrayList<RooTicket>();
         
                
                var table = new GLib.HashTable<string, string>(str_hash, str_equal);
-               if (not_me  == NotMe.FALSE) {
-                       table.insert("query[viewtype]","me");
-               } else {
-               
-               }               
-               if (closed  == Closed.TRUE) {
-                       table.insert("query[viewtype]","me");
-               } else {
+
+               table.insert("_developer", who.to_string().down().substring(15));
                
-               }
+               table.insert("query[viewtype]", status.to_string().down().substring(18));
 
-               table.insert("limit","999");
+               table.insert("limit","200");
                table.insert("sort","summary");
                table.insert("dir","ASC");
                
@@ -279,9 +313,9 @@ public class RooTicket : Object
                        parser.load_from_data (data, -1);
 
                        var response = parser.get_root().get_object();
-                       var status = response.get_boolean_member("success");
+                       var success = response.get_boolean_member("success");
                
-                       if(!status){
+                       if(!success){
                                GLib.error(response.get_string_member("errorMsg"));
                                return;
                        }
@@ -310,7 +344,7 @@ public class RooTicket : Object
                var table = new GLib.HashTable<string, string>(str_hash, str_equal);
         
                table.insert("query[project_filter]","P,N,U");
-               table.insert("limit","999");
+               table.insert("limit","200");
                table.insert("sort","name");
                table.insert("dir","ASC");
 
@@ -365,7 +399,7 @@ public class RooTicket : Object
                var table = new GLib.HashTable<string, string>(str_hash, str_equal);
         
 
-               table.insert("limit","999");
+               table.insert("limit","200");
                table.insert("sort","shortname");
                table.insert("dir","ASC");
 
@@ -412,7 +446,73 @@ public class RooTicket : Object
                }
                
        }
-       
+       public void loadProjectOptions(string pid)
+       {
+               var rt = RooTicket.singleton();
+               rt.milestones = new Gee.ArrayList<RooOption>();
+               rt.priorities =  new Gee.ArrayList<RooOption>();
+               rt.serverities =  new Gee.ArrayList<RooOption>();
+               rt.classifications  =  new Gee.ArrayList<RooOption>();
+               rt.developers =  new Gee.ArrayList<RooOption>();
+               if (pid == "") {
+                       return;
+               }
+               
+
+
+               var table = new GLib.HashTable<string, string>(str_hash, str_equal);
+        
+               table.insert("_options_for",pid);
+
+               var params = Soup.Form.encode_hash(table);
+               
+               var url = "%s/%s?%s" . printf(roourl, "mtrack_ticket", params);
+               
+               GLib.debug("request %s", url);
+               
+               var session = new Soup.Session ();
+               session.timeout = 0;
+               var message = new Soup.Message ("GET", url);
+               
+               
+               RooTicket.setAuth(message);
+               
+               session.send_message (message);
+               
+               var data = (string) message.response_body.flatten().data;
+               //GLib.debug("got %s", data);
+               try {
+                       var parser = new Json.Parser ();
+                       parser.load_from_data (data, -1);
+
+                       var response = parser.get_root().get_object();
+                       var status = response.get_boolean_member("success");
+               
+                       if(!status){
+                               GLib.error(response.get_string_member("errorMsg"));
+                               return;
+                       }
+                       var rd = response.get_object_member ("data");
+                       
+                       rt.milestones = this.readJsonArray( rd.get_array_member("milestone"));
+                       rt.priorities = this.readJsonArray( rd.get_array_member("priority"));
+                       rt.serverities = this.readJsonArray( rd.get_array_member("severity"));
+                       rt.classifications  = this.readJsonArray( rd.get_array_member("classification"));
+                       rt.developers = this.readJsonArray( rd.get_array_member("developer"));
+                       
+                       
+                       
+                       // got a valid result...
+                        
+               
+               } catch (Error e) {
+                       GLib.error(e.message);
+                       return;
+               }
+               
+       }
        
        public  static void setAuth(Soup.Message message) 
        {
@@ -490,7 +590,64 @@ public class RooTicket : Object
                }
 
    }
+       public string createTicket(     
+                       string project_id,
+                       string milestone_id,
+                       string priority_id,
+                       string classification_id,
+                       string developer_id,
+                       string summary,
+                       string description
+               ) 
+       {
+                
+               var table = new GLib.HashTable<string, string>(str_hash, str_equal);
+                
+               table.insert("project_id", project_id);
+               table.insert("milestone_id", milestone_id);
+               table.insert("priority_id", priority_id);
+               table.insert("classification_id", classification_id);
+               table.insert("developer_id", developer_id);
+               table.insert("summary", summary);
+               table.insert("description", description);
+                
+               var params = Soup.Form.encode_hash(table);              
+
+               GLib.debug("request POST %s / %s", roourl, id);
 
+               var session = new Soup.Session ();
+               session.timeout = 0;
+               var message = new Soup.Message ("POST", roourl + "/mtrack_ticket");
+               RooTicket.setAuth(message);
+
+               message.set_request ("application/x-www-form-urlencoded", Soup.MemoryUse.STATIC, params.data);
+               session.send_message (message);
+
+
+               var data = (string) message.response_body.flatten().data;
+               GLib.debug("got %s", data);
+               try {
+                          var parser = new Json.Parser ();
+                          parser.load_from_data (data, -1);
+
+                          var response = parser.get_root().get_object();
+                          var status = response.get_boolean_member("success");
+
+                          if(!status){
+                                          GLib.error(response.get_string_member("errorMsg"));
+                                          return "" ;
+                          }
+                               var rd = response.get_object_member ("data");
+                               return rd.get_string_member("id");
+                          
+                               
+
+               } catch (Error e) {
+                          GLib.error(e.message);
+                          return "";
+               }
+   
+       }
        
 }