f232206ff4884180d9876ba8bb9a4e275607a0e3
[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 = {};
122                 self.cpe_limit = 1;
123         };
124
125         self.message = {};
126
127         self.$watch('selected_username', function() {
128                 if ( self.selected_username == null ) self.clear_LDAP();
129         });
130
131         self.clear();
132         self.$watch('cpe_limit', function() {
133                 $log.info( '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
181 table {
182         border-collapse:collapse;
183 }
184
185 th {
186         border-bottom: 2px solid gray;
187 }
188
189 th, td {
190         border-left: 1em solid white;
191         border-right: 1em solid white;
192 }
193
194 .zebra {
195         background: #eee;
196 }
197
198 #message {
199         padding: 3px;
200         background: #ff8;
201
202         margin-left: 1em;
203         position: fixed;
204 }
205
206 .panel_right {
207         z-index: 10;
208         position: absolute;
209         right: 0;
210         background: #ffc;
211         padding: 3px;
212 }
213
214 .panel_right ul {
215         padding: 0;
216 }
217
218 .panel_right ul > li {
219         list-style-type: none;
220 }
221
222 .panel_right > label {
223         float: right;
224 }
225
226 li > tt {
227         font-weight: bold;
228 }
229
230 </style>
231
232   <div ng:controller="user">
233
234    <form ng:submit="CRM_search()">
235     <label for="args">username:
236     <input type="text" name="search_username" placeholder="test" size="10" autofocus ng:required />
237     </label>
238     <input type="submit" value="search in CRM">
239     <input type="reset"  ng:click="clear()" value="clear">
240
241     <span id="message" ng:show="message.$size()" ng:click="message={}" title="click to close">
242       <div ng:repeat="(category,status) in message" ng:show="status"><b>{{category}}</b> {{status}}</div>
243     </span>
244
245    </form>
246
247
248 <div class="panel_right" ng:show="CRM">
249  <label>
250   Add columns
251   <input type=checkbox name=show_columns>
252  </label>
253  <ul ng:show="show_columns">
254   <li ng:repeat="c in keys(CRM)" ng:show="columns.indexOf(c) < 0" ng:click="columns.push(c)">{{c}}
255  </ul>
256 </div>
257
258     <table ng:show="CRM">
259     <tr>
260         <th ng:repeat="c in columns" ng:click="columns.$remove(c)">{{c}}</th>
261     </tr>
262     <tr ng:repeat="u in CRM" ng:click="LDAP_search(u.USERNAME)" ng:class-even="'zebra'">
263         <td ng:repeat="c in columns" ng:show="! selected_username || selected_username == u.USERNAME">{{u[c]}}</td>
264     </tr>
265     </table>
266
267     <input type=button value="Show ALL results, not just {{selected_username}}" ng:click="selected_username=''" ng:show="selected_username">
268
269   <div ng:show="selected_username">
270
271     <h2><tt>{{selected_username}}</tt> LDAP entry</h2>
272
273     <ul ng:show="LDAP">
274      <li ng:repeat="c in keys(LDAP)"><tt>{{c}}</tt> {{LDAP[0][c]}}</li>
275     </ul>
276
277    <div class="panel_right" ng:show="cpe.table">
278     <label>
279      Graph columns
280      <input type=checkbox name=show_gnuplot_cols>
281     </label>
282     <ul ng:show="show_gnuplot_cols">
283      <input type=button ng:click="gnuplot_draw(gnuplot.cols)" value="Redraw graph">
284      <li ng:repeat="(k,v) in cpe.table.rows[0][cpe.table.hash_col]">
285         <label>
286         <input type="checkbox" name="gnuplot_cols" ng:format="include:k:gnuplot.cols" ng:change="$log.debug(gnuplot_cols)">
287         {{k}} <tt>{{v}}</tt>
288         </label>
289      </li>
290      <input type=button ng:click="gnuplot_draw(gnuplot.cols)" value="Redraw graph">
291     </ul>
292    </div>
293
294     <ng:include src="gnuplot.img" ng:show="gnuplot.img" onload="message.gnuplot = null" ></ng:include>
295
296     <h2 ng:show="cpe.table_name">{{cpe.table_name}} {{username}}</h2>
297
298     <table ng:show="cpe.table">
299      <tr>
300       <th ng:repeat="c in cpe.table.columns">{{c}}</th>
301      </tr>
302      <tr ng:repeat="r in cpe.table.rows" ng:class-even="'zebra'">
303       <td ng:repeat="v in r">{{v}}</td>
304      </tr>
305      <tr>
306       <td colspan="{{cpe.table.columns.length}}">
307       limit:
308         <label>1<input name="cpe_limit" type="radio" value=1></label>
309         &middot; &middot; &middot;
310         <label>5<input name="cpe_limit" type="radio" value=5></label>
311         &middot; &middot; &middot;
312         <label>10<input name="cpe_limit" type="radio" value=10></label>
313       </td>
314     </tr>
315     </table>
316
317   </div>
318
319     <input type=checkbox name=debug value=1>
320     <pre ng:show=debug>
321 CRM={{CRM}}
322 LDAP={{LDAP}}
323 cpe={{cpe}}
324 gnuplot={{gnuplot}}
325     </pre>
326   </div>
327  </body>
328 </html>