d604fff9e29a467bd59111bc1d39e952a23e5798
[APKPM.git] / public / user.html
1 <!doctype html>
2 <html xmlns:ng="http://angularjs.org">
3  <script src="http://code.angularjs.org/angular-0.9.17.min.js" ng:autobind></script>
4  <body>
5   <script>
6     function user($xhr,$resource,$log) {
7         var self = this;
8    
9         self.r = {};
10
11         self.r.CRM_search = $resource('/g/CRM_search/:username', {username:'@search_username'});
12         self.CRM_search = function(username) {
13                 if ( ! username ) username = self.search_username;
14                 $log.info( 'CRM_search', username );
15                 self.clear();
16                 self.message.CRM = 'search for '+username;
17                 self.r.CRM_search.query({username: username}, function(CRM) {
18                         self.CRM = CRM;
19                         $log.info( 'CRM', CRM )
20                         if ( ! CRM.length ) {
21                                 self.message.CRM = 'no results';
22                                 return;
23                         }
24                         self.message.CRM = null;
25                         if ( CRM.length == 1 ) {
26                                 self.selected_username = CRM[0].USERNAME;
27                                 $log.info( 'auto-selected ', self.selected_username );
28                         }
29                 });
30         };
31
32         self.r.LDAP_search = $resource('/g/LDAP_search/:username', {username:'@selected_username'});
33         self.LDAP_search = function(username) {
34                 if ( self.selected_username == username ) {
35                         $log.error("LDAP_search - not changed", username);
36                         return;
37                 }
38
39                 if ( ! username ) username = self.selected_username;
40
41                 if ( ! username ) {
42                         self.message.LDAP = 'no username';
43                         return;
44                 }
45                 $log.info( 'LDAP_search', username );
46                 self.clear_LDAP();
47                 self.selected_username = username;
48                 self.message.LDAP = 'search '+username;
49                 self.r.LDAP_search.query({ username: username }, function(LDAP) {
50                         self.LDAP = LDAP;
51                         $log.info( 'LDAP', LDAP );
52                         if ( self.LDAP.length == 0 ) {
53                                 self.message.LDAP ='no results for '+username;
54                                 return;
55                         }
56                         self.cpe.parser = LDAP[0]._cpe_parser;
57                         self.cpe.table_name  = 'cpe_' + LDAP[0]._cpe_parser;
58                         self.username = LDAP[0].cn;
59                         self.message.LDAP = null;
60                         $log.info( 'cpe', self.cpe );
61                 });
62         };
63         self.$watch('selected_username', self.LDAP_search );
64
65         self.gnuplot_draw = function(h_cols) {
66                 $log.info( 'gnuplot_draw', h_cols );
67                 if (h_cols.length) {
68                         self.gnuplot.cols = h_cols;
69                 } else {
70                         $log.warn("no columns for gnuplot");
71                         return;
72                 }
73
74                 self.message.gnuplot = 'redrawing '+h_cols.join(' ');
75
76                 var cols = [ 'timestamp' ];
77                 for ( var i = 0; i < h_cols.length; i++ ) {
78                         cols.push( 'h->\'' + h_cols[i] + '\' as "' + h_cols[i] + '"' );
79                 }
80 console.debug( cols );
81                 self.gnuplot.sql = 'select ' + cols.join(',') + ' from cpe_' + self.cpe.parser + ' where username = \'' + self.username + '\' order by timestamp desc limit 100';
82
83                 $log.info( 'gnuplot', self.gnuplot );
84                 self.gnuplot.img = '/gnuplot?hide=1;with=points;sql=' + self.gnuplot.sql;
85
86         };
87
88         self.r.table = $resource('/table/:table');
89         self.table_update = function () {
90                 if ( ! self.username || ! self.cpe.table_name ) return;
91                 self.message.table = self.username + ' loading from ' + self.cpe.table_name;
92                 self.r.table.get({ username: self.username, table: self.cpe.table_name, limit: self.cpe.limit }, function(table) {
93                         $log.info( 'table', table );
94                         self.cpe.table = table;
95                         self.message.table = null;
96                         if ( table.rows.length == 0 ) {
97                                 self.message.table = 'no results for '+self.username;
98                                 return;
99                         }
100
101                         if ( h_cols = self.cpe_hash[self.cpe.parser] ) {
102                                 self.gnuplot_draw( h_cols );
103                         } else {
104                                 self.message.gnuplot = 'no graph for ' + self.cpe.parser;
105                         }
106                 });
107         };
108         self.$watch('username', self.table_update );
109  
110         this.clear = function() {
111                 $log.info('clear');
112                 self.CRM = null;
113                 this.clear_LDAP();
114         }
115
116         this.clear_LDAP = function() {
117                 $log.info('clear_LDAP');
118                 self.LDAP = null;
119                 self.selected_username = null;
120                 self.gnuplot = {};
121                 self.cpe = { limit: 1 };
122         };
123
124         self.message = {};
125
126         self.$watch('selected_username', function() {
127                 if ( self.selected_username == null ) self.clear_LDAP();
128         });
129
130         self.clear();
131         self.cpe_limit = self.cpe.limit;
132         self.$watch('cpe_limit', function() {
133                 $log.info( 'limit', self.cpe.limit = self.cpe_limit );
134                 self.table_update();
135         });
136
137         this.columns = [
138                 'USERNAME',
139                 'BROJ',
140                 'USLUGA',
141                 'IP_MANAGEMENT',
142                 'IP_VOICE',
143                 'KOLOKACIJA',
144                 'OPT82'
145         ];
146
147         this.cpe_hash = {
148                 'Davolink': [ 'Max_down', 'Max_up' ],
149                 'EasyGateway': [ 'upstreamCurrRate', 'upstreamMaxRate', 'upstreamNoiseMargin' ],
150         };
151
152       this.keys = function(h) {
153              if ( angular.isArray(h) ) h = h[0];
154              var keys = [];
155              for(i in h) if (h.hasOwnProperty(i))
156              {
157                keys.push(i);
158              }
159              return keys;
160       };
161
162     }
163
164     user.$inject = ['$xhr','$resource','$log'];
165
166 // http://jsfiddle.net/gronky/cLEck/
167 angular.formatter('include', {
168     parse: function(apply, value, list) {
169         angular.Array[apply ? 'add' : 'remove'](list, value);
170         return apply;
171     },
172     format: function(apply, value, list) {
173         return angular.Array.indexOf(list, value) != -1;
174     },
175 });
176
177   </script>
178
179 <style type="text/css">
180 #columns {
181         float: right;
182         position: fixed;
183         top: 0;
184         right: 0;
185         z-index: 10;
186         background: #eee;
187 }
188
189 #columns > span {
190         float: right;
191 }
192
193 /*
194 #columns ul {
195         display: none;
196 }
197
198 #columns:hover ul {
199         display: block;
200 }A
201 */
202
203 table {
204         border-collapse:collapse;
205 }
206
207 th {
208         border-bottom: 2px solid gray;
209 }
210
211 th, td {
212         border-left: 1em solid white;
213         border-right: 1em solid white;
214 }
215
216 .zebra {
217         background: #eee;
218 }
219
220 #message {
221         padding: 3px;
222         background: #ff8;
223
224         margin-left: 1em;
225         position: fixed;
226 }
227
228 .panel_right {
229         z-index: 10;
230         position: absolute;
231         right: 0;
232         background: #ffc;
233         padding: 3px;
234 }
235
236 .panel_right ul {
237         padding: 0;
238 }
239
240 .panel_right ul > li {
241         list-style-type: none;
242 }
243
244 .panel_right > label {
245         float: right;
246 }
247
248
249 </style>
250
251   <div ng:controller="user">
252
253    <form ng:submit="CRM_search()">
254     <label for="args">username:
255     <input type="text" name="search_username" placeholder="test" size="10" ng:required />
256     </label>
257     <input type="submit" value="search in CRM">
258     <input type="reset"  ng:click="clear()" value="clear">
259
260     <span id="message" ng:show="message.$size()" ng:click="message={}" title="click to close">
261       <div ng:repeat="(category,status) in message" ng:show="status"><b>{{category}}</b> {{status}}</div>
262     </span>
263
264    </form>
265
266
267 <div class="panel_right" ng:show="CRM">
268  <label>
269   Add columns
270   <input type=checkbox name=show_columns>
271  </label>
272  <ul ng:show="show_columns">
273   <li ng:repeat="c in keys(CRM)" ng:show="columns.indexOf(c) < 0" ng:click="columns.push(c)">{{c}}
274  </ul>
275 </div>
276
277     <table ng:show="CRM">
278     <tr>
279         <th ng:repeat="c in columns" ng:click="columns.$remove(c)">{{c}}</th>
280     </tr>
281     <tr ng:repeat="u in CRM" ng:click="LDAP_search(u.USERNAME)" ng:class-even="'zebra'">
282         <td ng:repeat="c in columns" ng:show="! selected_username || selected_username == u.USERNAME">{{u[c]}}</td>
283     </tr>
284     </table>
285
286     <input type=button value="Show ALL results, not just {{selected_username}}" ng:click="selected_username=''" ng:show="selected_username">
287
288   <div ng:show="selected_username">
289
290     <h2><tt>{{selected_username}}</tt> LDAP entry</h2>
291
292     <ul ng:show="LDAP">
293      <li ng:repeat="c in keys(LDAP)"><tt>{{c}}</tt> {{LDAP[0][c]}}</li>
294     </ul>
295
296    <div class="panel_right" ng:show="cpe.table">
297     <label>
298      Graph columns
299      <input type=checkbox name=show_gnuplot_cols>
300     </label>
301     <ul ng:show="show_gnuplot_cols">
302      <input type=button ng:click="gnuplot_draw(gnuplot.cols)" value="Redraw graph">
303      <li ng:repeat="(k,v) in cpe.table.rows[0][cpe.table.hash_col]">
304         <label>
305         <input type="checkbox" name="gnuplot_cols" ng:format="include:k:gnuplot.cols" ng:change="$log.debug(gnuplot_cols)">
306         {{k}} <tt>{{v}}</tt>
307         </label>
308      </li>
309      <input type=button ng:click="gnuplot_draw(gnuplot.cols)" value="Redraw graph">
310     </ul>
311    </div>
312
313     <ng:include src="gnuplot.img" ng:show="gnuplot.img" onload="message.gnuplot = null" ></ng:include>
314
315     <h2 ng:show="cpe.table_name">{{cpe.table_name}} {{username}}</h2>
316
317     <table ng:show="cpe.table">
318      <tr>
319       <th ng:repeat="c in cpe.table.columns">{{c}}</th>
320      </tr>
321      <tr ng:repeat="r in cpe.table.rows" ng:class-even="'zebra'">
322       <td ng:repeat="v in r">{{v}}</td>
323      </tr>
324      <tr>
325       <td colspan="{{cpe.table.columns.length}}">
326       limit:
327         <label>1<input name="cpe_limit" type="radio" value=1></label>
328         &middot; &middot; &middot;
329         <label>5<input name="cpe_limit" type="radio" value=5></label>
330         &middot; &middot; &middot;
331         <label>10<input name="cpe_limit" type="radio" value=10></label>
332       </td>
333     </tr>
334     </table>
335
336   </div>
337
338     <input type=checkbox name=debug value=1>
339     <pre ng:show=debug>
340 CRM={{CRM}}
341 LDAP={{LDAP}}
342 cpe={{cpe}}
343 gnuplot={{gnuplot}}
344     </pre>
345   </div>
346  </body>
347 </html>