gtkhotkey-0.2.1-patched.tgz
[gitlive] / Tasks.js
index 8bf7480..6eb7893 100644 (file)
--- a/Tasks.js
+++ b/Tasks.js
@@ -23,6 +23,14 @@ Tasks = {
     commitRepo : false, // the DB version of repo info..
     lastCommit : false,
     
+    nextPrompt : false, // time when the system last prompted a confirmation that a task is being worked on.
+    
+    
+    notifyIdle : function()
+    {
+        
+    },
+    
     notify : function(commit)
     {
         if (this.inQuery && this.inQuery > (new Date())) {
@@ -35,10 +43,13 @@ Tasks = {
         }
         this.inQuery = (new Date()).add(Date.MINUTE, 5);
         this.lastCommit = commit;
+        this.commitRepo = false;
+        this.curTask = false;
         this.fetchTask();
-        
-        
     },
+    
+    
+    
     fetchTask: function()
     {
         // have we got the status in the last 15 mins..
@@ -61,7 +72,8 @@ Tasks = {
                 //print(JSON.stringify(res,null,4))
                 //print([ res.success , res.data.length ]);
                 _this.curTask = (res.success && res.data.length) ? (new Task(res.data[0])) : false;
-                print(JSON.stringify(_this.curTask,null,4));
+                
+                print("Current task:" + JSON.stringify(_this.curTask,null,4));
                 _this.fetchRepo();
             }
             
@@ -71,25 +83,73 @@ Tasks = {
         r.open('GET',
                "http://roojs.com/admin.php/Roo/cash_invoice_entry?_current_task=1"
                ,true, netrc.login, netrc.password  );
-        //print("SEding request");        
+         print("Getting current task: "  +  "http://roojs.com/admin.php/Roo/cash_invoice_entry?_current_task=1");        
         r.send();
         
     },
     
-    verifyCommit : function()
+    
+   
+    list: function(repo, callback)
     {
-        // using curTask + lastCommit decide what to do.
-        
-        
-        
+        // have we got the status in the last 15 mins..
+        // we should not need to get it again... - it's probably not changed.
+         
+         
+        this.query({repo_shortname : repo.name }, callback);
+    },
+                
+         
+    query : function(params , callback)
+    {
+         
+        _this = this;
+        // do the request to get the task..
+        var r = new XMLHttpRequest({
+            onreadystatechange : function() {
+                print("Got result.");
+                if (this.status != 4) {
+                    return;
+                }
+                
+                  
+                var res = JSON.parse(this.responseText);
+                
+                //print(JSON.stringify(res,null,4))
+                //print([ res.success , res.data.length ]);
+                if (!res.success || !res.data.length)  {
+                    print("NO tasks returned");
+                    callback([]);
+                    return;
+                }
+                
+                //print("Current task:" + JSON.stringify(_this.curTask,null,4));
+                callback(res.data);
+            }
+            
+        });
+        var netrc  = Netrc.forHost('git.roojs.com');
         
+          
         
-        this.inQuery = 0;
+        r.open('GET',
+               "http://roojs.com/admin.php/Roo/mtrack_ticket?" + r.urlEncode(params)
+               ,true, netrc.login, netrc.password  );
+         print("Getting current task: "  +
+               
+               "http://roojs.com/admin.php/Roo/mtrack_ticket?" + r.urlEncode(params));        
+        r.send();
         
     },
     
-    fetchRepo: function(repo)
+    
+    
+    
+    fetchRepo: function()
     {
+        
+        var repo = this.lastCommit.repo;
+        
          _this = this;
         var r = new XMLHttpRequest({
             onreadystatechange : function() {
@@ -101,10 +161,10 @@ Tasks = {
                   
                 var res = JSON.parse(this.responseText);
                 
-                //print(JSON.stringify(res,null,4))
+                print(JSON.stringify(res,null,4))
                 //print([ res.success , res.data.length ]);
-                _this.commitRepo = (res.success && res.data.length) ? currRepores.data[0] : false;
-                print(JSON.stringify(_this.commit))
+                _this.commitRepo = (res.success && res.data.length) ? res.data[0] : false;
+                print(JSON.stringify(_this.commitRepo))
                 _this.verifyCommit();
             }
             
@@ -112,18 +172,196 @@ Tasks = {
         var netrc  = Netrc.forHost('git.roojs.com');
         
         r.open('GET',
-               "http://roojs.com/admin.php/Roo/mtrack_repo?name=" + repo.name
+               "http://roojs.com/admin.php/Roo/mtrack_repos?shortname=" + repo.name
                ,true, netrc.login, netrc.password  );
         //print("SEding request");        
         r.send();
         
         
-    }
+    },
+    
+        //---------- end fetching - now verifying..
+
+    
+    
+    verifyCommit : function()
+    {
+        // using curTask + lastCommit decide what to do.
+        this.inQuery = 0;
+        //tests:::
+       
+        // check to see if current task is being planned for too long..
+        // you should only enter task, and allow it to span over an hour.
+        // if you do the whole day on a task, then it will need to verify with you every so often that you
+        // need to confirm that you are still working on it..
+        
+        /*
+          
+           Example:
+           
+            Start at 10am, marked working on it till 3pm.
+            
+            So:
+                at 11am, the system will pop up a warning - are you still working on it?
+                -> if yes pressed, then next warning will be at 11pm
+                
+          
+         */
+        
+        if (!this.currTask) {
+             this.promptForTask();
+            return;
+        }
+        
+         if (!this.currTask.project_id) {
+            this.promptForTask();
+            return;
+        }
+        
+        // are we working on the same project!!!!
+        if (this.currTask.project_id != this.commitRepo.project_id) {
+            this.promptForTask();
+            return;
+        }
+  
+        // has the ticket been closed...
+        
+        var is_project=  this.curTask.project_id_code[0] != '*' ;
+        // is there a ticket?
+        if (is_project && !this.currTask.ticket_id) {
+            this.promptForTask();
+            return;
+        }
+        if (is_project && this.currTask.ticket_status) {
+            //TODO - if status is closed.. then we need to prompt..
+            
+            
+        }
+        
+        
+        // we now working on same project..
+        
+        
+        var now = new Date();
+        
+        print(JSON.stringify(this.curTask));
+        
+        var endoftask = this.curTask.action_datetime.add(Date.HOUR, this.curTask.qtyvalue);
+        print("END OF TASK: " + endoftask);
+        
+        var max_stretch = now.add(Date.HOUR, 1);
+         print("Max stretch: " + max_stretch);
+        if (endoftask > max_stretch) {
+            this.fixEndCurrTask(); //
+            
+        }
+        // still needs to be verified..
+       
+        
+        
+        
+
+        
+        if (!this.nextPrompt && this.curTask) {
+            //var use_start = this.curTask.action_datetime < now ? now : 
+            // if we have a task, then the next verification should be 1 hour after it started.
+            // even if we have only just seen it.. so we could already need verification.
+            this.nextPrompt = this.curTask.action_datetime; // the start time recorded in the database.
+        }
+        
+        
+        if (!this.nextPrompt || (this.nextPrompt < (new Date()))) {
+            
+            this.promptForTask();
+            return;
+            
+        }
+        
+        // ok verified basic time...
+        //let's check to see if project matches..'
+        
+        
+        
+        
+    },
+    
+    
+    
     
+    //---------- end verifying - now prompting..
     
     
+    fixEndCurrTask: function()
+    {
+        // set the end time of the current task to be now + 1 hours at most...
+        var now = new Date();
+        var eot = now.add(Date.HOUR, 1);
+        // now round it down to nearest 15 minutes..
+        var min = Math.round((eot.format('i')*1) / 15) * 15;
+        var reot = Date.parseDate(eot.format('Y-m-d H:') + (min ? min : '00') + ':00', 'Y-m-d H:i:s');
+        
+        print("REAL END TIME" + reot.format('Y-m-d H:i:s'))
+        print("Current start time" + this.curTask.action_datetime.format('Y-m-d H:i:s'))
+        
+        // how long between start and reot...
+        var hours = (reot - this.curTask.action_datetime) / (60*60 * 1000 );
+        var rounded =  Math.round(hours * 4) / 4.0;
+        print("Rounded : "  + rounded);
+        //return;
+        this.updateTask({ qtyvalue : rounded });
+        this.curTask.qtyvalue = rounded;
+        
+    },
     
+    promptForTask : function()
+    {
+        /// fixme...
+        this.nextPrompt = (new Date()).add(Date.MINUTE, 60);
+        
+        
+    },
     
+    updateTask: function(setv)
+    {
+        var args = {};
+        XObject.extend(args,setv);
+        args.id = _this.curTask.id;
+        
+        
+        //print(JSON.stringify(args));
+        //return;
+    
+    
+         _this = this;
+         // do the request to get the task..
+        var r = new XMLHttpRequest({
+            onreadystatechange : function() {
+                print("Got result.");
+                if (this.status != 4) {
+                    return;
+                }
+                
+                 print( this.responseText)
+                 
+                var res = JSON.parse(this.responseText);
+                
+                print(JSON.stringify(res,null,4))
+                //print([ res.success , res.data.length ]);
+            }
+            
+        });
+        var netrc  = Netrc.forHost('git.roojs.com');
+        
+        r.open('POST',
+               "http://roojs.com/admin.php/Roo/cash_invoice_entry?_current_task=1"
+               ,true, netrc.login, netrc.password  );
+        //print("SEding request");        
+        r.send(args);
+        
+        
+        
+        
+    }
     
 };
 
@@ -175,7 +413,9 @@ Task = XObject.define(
 
 
 //-------------- testing
+/*
 Gtk = imports.gi.Gtk;
 Gtk.init(Seed.argv);
-Tasks.notify(1);
-Gtk.main();
\ No newline at end of file
+Tasks.notify( { repo : imports.Scm.Repo.Repo.get('gitlive') } );
+Gtk.main();
+*/
\ No newline at end of file