Tasks.js
[gitlive] / Tasks.js
1
2 XObject = imports.XObject.XObject;
3 XMLHttpRequest = imports.XMLHttpRequest.XMLHttpRequest;
4 Netrc = imports.Netrc.Netrc;
5 Date = imports.Date.Date;
6 /**
7  *
8  * Tasks
9  *
10  *  Flow
11  *
12  *    Commit
13  *      => Tasks.notify(commit)
14  *
15  *
16  *
17  *
18  */
19
20 Tasks = {
21     
22     curTask : false,
23     commitRepo : false, // the DB version of repo info..
24     lastCommit : false,
25     
26     lastPrompt : false, // time when the system last prompted a confirmation that a task is being worked on.
27     
28     
29     notifyIdle : function()
30     {
31         
32     },
33     
34     notify : function(commit)
35     {
36         if (this.inQuery && this.inQuery > (new Date())) {
37             // ignore the notification.. we are currently checking what the current
38             // status is.
39             
40             // we need to handle a WTF situation where something below failed... so
41             
42             return; 
43         }
44         this.inQuery = (new Date()).add(Date.MINUTE, 5);
45         this.lastCommit = commit;
46         this.commitRepo = false;
47         this.curTask = false;
48         this.fetchTask();
49     },
50     
51     
52     
53     fetchTask: function()
54     {
55         // have we got the status in the last 15 mins..
56         // we should not need to get it again... - it's probably not changed.
57         if (this.curTask && !this.curTask.hasExpired()) {
58             this.fetchRepo();
59         }
60         _this = this;
61         // do the request to get the task..
62         var r = new XMLHttpRequest({
63             onreadystatechange : function() {
64                 print("Got result.");
65                 if (this.status != 4) {
66                     return;
67                 }
68                 
69                   
70                 var res = JSON.parse(this.responseText);
71                 
72                 //print(JSON.stringify(res,null,4))
73                 //print([ res.success , res.data.length ]);
74                 _this.curTask = (res.success && res.data.length) ? (new Task(res.data[0])) : false;
75                 print(JSON.stringify(_this.curTask,null,4));
76                 _this.fetchRepo();
77             }
78             
79         });
80         var netrc  = Netrc.forHost('git.roojs.com');
81         
82         r.open('GET',
83                "http://roojs.com/admin.php/Roo/cash_invoice_entry?_current_task=1"
84                ,true, netrc.login, netrc.password  );
85         //print("SEding request");        
86         r.send();
87         
88     },
89     
90     
91     fetchRepo: function()
92     {
93         
94         var repo = this.lastCommit.repo;
95         
96          _this = this;
97         var r = new XMLHttpRequest({
98             onreadystatechange : function() {
99                 print("Got result.");
100                 if (this.status != 4) {
101                     return;
102                 }
103                 
104                   
105                 var res = JSON.parse(this.responseText);
106                 
107                 print(JSON.stringify(res,null,4))
108                 //print([ res.success , res.data.length ]);
109                 _this.commitRepo = (res.success && res.data.length) ? res.data[0] : false;
110                 print(JSON.stringify(_this.commitRepo))
111                 _this.verifyCommit();
112             }
113             
114         });
115         var netrc  = Netrc.forHost('git.roojs.com');
116         
117         r.open('GET',
118                "http://roojs.com/admin.php/Roo/mtrack_repos?shortname=" + repo.name
119                ,true, netrc.login, netrc.password  );
120         //print("SEding request");        
121         r.send();
122         
123         
124     },
125     
126     
127     verifyCommit : function()
128     {
129         // using curTask + lastCommit decide what to do.
130         
131         //tests:::
132         this.verifyTaskTime();
133         this.verifyTaskProject();
134           
135         
136         this.inQuery = 0;
137         
138     },
139     
140     verifyTaskTime : function()
141     {
142         // check to see if current task is being planned for too long..
143         // you should only enter task, and allow it to span over an hour.
144         // if you do the whole day on a task, then it will need to verify with you every so often that you
145         // need to confirm that you are still working on it..
146         
147         /*
148           
149            Example:
150            
151             Start at 10am, marked working on it till 3pm.
152             
153             So:
154                 at 11am, the system will pop up a warning - are you still working on it?
155                 -> if yes pressed, then next warning will be at 11pm
156                 
157           
158          */
159         if (!lastPrompt) {
160             
161             this.promptForTask();
162             
163         }
164         
165         
166         
167         
168     }
169     
170     //---------- end verifying - now prompting..
171     
172     promptForTask : function()
173     {
174         /// fixme...
175     }
176     
177     
178     
179 };
180
181
182
183
184
185 Task = XObject.define(
186     function(cfg) {
187         // cal parent?
188         if (typeof(cfg) != 'object') {
189             print("CFG not oboject?");
190             return;
191         } 
192         XObject.extend(this,cfg);
193  
194         // fix up the values.
195         this.action_datetime = Date.parseDate(this.action_dt,'Y-m-d H:i:s');
196       // print("ACT DT: " + this.action_dt);
197         
198     },
199     Object,
200     {
201         /**
202          * This is similar to the cash_invoice_entry data..
203          * 
204          */
205         action_dt: '', //"2012-11-23 11:00:00"
206         description: '', //"QA on new site"
207         qtyvalue: 0, //"2.25"
208         
209         hasExpired : function()
210         {
211             
212             var exp = this.action_datetime.add(Date.HOUR, this.qtyvalue);
213             return (new Date()) > exp;  
214             
215         }
216     }
217 );
218
219
220
221
222
223
224
225
226
227
228 //-------------- testing
229 Gtk = imports.gi.Gtk;
230 Gtk.init(Seed.argv);
231 Tasks.notify( { repo : imports.Scm.Repo.Repo.get('gitlive') } );
232 Gtk.main();