Ticket.bjs
[gitlive] / RooTicket.vala
index a66a968..5d3c357 100644 (file)
@@ -21,11 +21,13 @@ 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)
+       public RooOption (string id, string name, string display_name)
        {
                this.id = id;
+               this.name = name;
                this.display_name = name;
        }
 
@@ -119,6 +121,7 @@ public class RooTicket : Object
                        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")
                        ));
                }
@@ -450,8 +453,18 @@ 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);
         
@@ -582,7 +595,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 "";
+               }
+   
+       }
        
 }