remove obsolete css
[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
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
227 </style>
228
229   <div ng:controller="user">
230
231    <form ng:submit="CRM_search()">
232     <label for="args">username:
233     <input type="text" name="search_username" placeholder="test" size="10" ng:required />
234     </label>
235     <input type="submit" value="search in CRM">
236     <input type="reset"  ng:click="clear()" value="clear">
237
238     <span id="message" ng:show="message.$size()" ng:click="message={}" title="click to close">
239       <div ng:repeat="(category,status) in message" ng:show="status"><b>{{category}}</b> {{status}}</div>
240     </span>
241
242    </form>
243
244
245 <div class="panel_right" ng:show="CRM">
246  <label>
247   Add columns
248   <input type=checkbox name=show_columns>
249  </label>
250  <ul ng:show="show_columns">
251   <li ng:repeat="c in keys(CRM)" ng:show="columns.indexOf(c) < 0" ng:click="columns.push(c)">{{c}}
252  </ul>
253 </div>
254
255     <table ng:show="CRM">
256     <tr>
257         <th ng:repeat="c in columns" ng:click="columns.$remove(c)">{{c}}</th>
258     </tr>
259     <tr ng:repeat="u in CRM" ng:click="LDAP_search(u.USERNAME)" ng:class-even="'zebra'">
260         <td ng:repeat="c in columns" ng:show="! selected_username || selected_username == u.USERNAME">{{u[c]}}</td>
261     </tr>
262     </table>
263
264     <input type=button value="Show ALL results, not just {{selected_username}}" ng:click="selected_username=''" ng:show="selected_username">
265
266   <div ng:show="selected_username">
267
268     <h2><tt>{{selected_username}}</tt> LDAP entry</h2>
269
270     <ul ng:show="LDAP">
271      <li ng:repeat="c in keys(LDAP)">{{c}} <b>{{LDAP[0][c]}}</b></li>
272     </ul>
273
274    <div class="panel_right" ng:show="cpe.table">
275     <label>
276      Graph columns
277      <input type=checkbox name=show_gnuplot_cols>
278     </label>
279     <ul ng:show="show_gnuplot_cols">
280      <input type=button ng:click="gnuplot_draw(gnuplot.cols)" value="Redraw graph">
281      <li ng:repeat="(k,v) in cpe.table.rows[0][cpe.table.hash_col]">
282         <label>
283         <input type="checkbox" name="gnuplot_cols" ng:format="include:k:gnuplot.cols" ng:change="$log.debug(gnuplot_cols)">
284         {{k}} <tt>{{v}}</tt>
285         </label>
286      </li>
287      <input type=button ng:click="gnuplot_draw(gnuplot.cols)" value="Redraw graph">
288     </ul>
289    </div>
290
291     <ng:include src="gnuplot.img" ng:show="gnuplot.img" onload="message.gnuplot = null" ></ng:include>
292
293     <h2 ng:show="cpe.table_name">{{cpe.table_name}} {{username}}</h2>
294
295     <table ng:show="cpe.table">
296      <tr>
297       <th ng:repeat="c in cpe.table.columns">{{c}}</th>
298      </tr>
299      <tr ng:repeat="r in cpe.table.rows" ng:class-even="'zebra'">
300       <td ng:repeat="v in r">{{v}}</td>
301      </tr>
302      <tr>
303       <td colspan="{{cpe.table.columns.length}}">
304       limit:
305         <label>1<input name="cpe_limit" type="radio" value=1></label>
306         &middot; &middot; &middot;
307         <label>5<input name="cpe_limit" type="radio" value=5></label>
308         &middot; &middot; &middot;
309         <label>10<input name="cpe_limit" type="radio" value=10></label>
310       </td>
311     </tr>
312     </table>
313
314   </div>
315
316     <input type=checkbox name=debug value=1>
317     <pre ng:show=debug>
318 CRM={{CRM}}
319 LDAP={{LDAP}}
320 cpe={{cpe}}
321 gnuplot={{gnuplot}}
322     </pre>
323   </div>
324  </body>
325 </html>