include gnuplot graph from user with cn from ldap
[APKPM.git] / templates / user.html.ep
1 % layout 'angular';
2
3   <script>
4     function CRM($xhr) {
5       var self = this;
6    
7       this.fetch = function() {
8         self.clear();
9         self.url = '/g/' + self.function_name + '/' + self.args + '?callback=JSON_CALLBACK';
10         $xhr('JSON', self.url, function(code, response) {
11           self.code = code;
12           self.response = response;
13         });
14       };
15    
16       this.clear = function() {
17         self.url = null;
18         self.code = null;
19         self.response = null;
20         self.selected_username = null;
21         self.gnuplot_sql = null;
22         self.ldap = null;
23       };
24
25         this.columns = [
26                 'USERNAME',
27                 'BROJ',
28                 'USLUGA',
29                 'IP_MANAGEMENT',
30                 'IP_VOICE',
31                 'KOLOKACIJA',
32                 'OPT82'
33         ];
34
35       this.keys = function(h) {
36              if ( angular.isArray(h) ) h = h[0];
37              var keys = [];
38              for(i in h) if (h.hasOwnProperty(i))
39              {
40                keys.push(i);
41              }
42              return keys;
43       };
44
45         this.select = function(crm) {
46                 console.log( 'crm = ',crm );
47                 self.selected_username = crm.USERNAME;
48                 self.gnuplot_sql = null;
49                 $xhr('JSON'
50                         , '/g/LDAP_search/' + self.selected_username + '?callback=JSON_CALLBACK'
51                         , function(code, response) {
52                                 console.debug( code, response );
53                                 self.ldap = response;
54                                 self.gnuplot_sql = '/gnuplot?sql=select timestamp,snrtx,attntx,pwrtx,pwrrx,attnrx,snrrx from adsl where username = \'' + response[0].cn + '\'';
55                         }
56                 );
57         };
58
59     }
60
61     CRM.$inject = ['$xhr'];
62   </script>
63   <div ng:controller="CRM">
64     <input type="hidden" name="function_name" value="CRM_search"      size="20"/>
65     <label for="args">username:
66     <input type="text" name="args"     value="test" size="10"/>
67     </label>
68     <button ng:click="fetch()">fetch</button>
69     <button ng:click="clear()">clear</button>
70     <b ng:show="url && ! code">loading {{url}}</b>
71     <b ng:show="response">{{response.length}} results</b>
72
73 <div style="font-size: 80%; float: right" ng:show="response">
74 Add columns:
75 <ul>
76 <li ng:repeat="c in keys(response)" ng:show="columns.indexOf(c) < 0" ng:click="columns.push(c)">{{c}}
77 </ul>
78 </div>
79
80     <table ng:show="response">
81     <tr>
82         <th ng:repeat="c in columns" ng:click="columns.$remove(c)">{{c}}</th>
83     </tr>
84     <tr ng:repeat="u in response" ng:click="select(u)">
85         <td ng:repeat="c in columns" ng:show="! selected_username || selected_username == u.USERNAME">{{u[c]}}</td>
86     </tr>
87     </table>
88
89     <input type=button value="Show ALL results, not just {{selected_username}}" ng:click="selected_username=''" ng:show="selected_username">
90
91   <div ng:show="selected_username">
92
93     <tt>{{selected_username}}</tt>
94
95     <ul ng:show="ldap">
96     <li ng:repeat="c in keys(ldap)"><tt>{{c}}</tt> {{ldap[0][c]}}</li>
97     </ul>
98
99     <ng:include src="gnuplot_sql" ng:show="gnuplot_sql">
100
101   </div>
102
103     <input type=checkbox name=debug value=1>
104     <pre ng:show=debug>
105 url={{url}}
106 code={{code}}
107 response={{response}}
108 username={{username}}
109     </pre>
110   </div>