main.1.js 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969
  1. var app = angular.module('itsmApp', ['itsm-dep']);
  2. var serverIp = "http://192.168.3.49";//"http://218.197.181.211";
  3. var reportIp= "http://192.168.3.50";
  4. var inspectIp= "http://192.168.3.69";
  5. var callIp= "http://192.168.3.49";
  6. // var serverIp = "http://218.197.181.211";//"http://218.197.181.211";
  7. // var reportIp= "http://218.197.181.212";
  8. // var inspectIp= "http://218.197.181.213";
  9. // var callIp= "http://218.197.181.213";
  10. app.run(['$rootScope', '$state', '$stateParams','$http','$cookieStore','Restangular',
  11. function ($rootScope, $state, $stateParams,$http,$cookieStore,Restangular) {
  12. // Attach Fastclick for eliminating the 300ms delay between a physical tap and the firing of a click event on mobile browsers
  13. FastClick.attach(document.body);
  14. // Set some reference to access them from any scope
  15. $rootScope.$state = $state;
  16. $rootScope.$stateParams = $stateParams;
  17. // GLOBAL APP SCOPE
  18. // set below basic information
  19. // $rootScope.audioiIp="http://218.197.181.213:8080"
  20. $rootScope.app = {
  21. name: '大势科技', // name of your project
  22. author: '大势运维管理平台', // author's name or company name
  23. description: '大势科技运维管理平台', // brief description
  24. version: '1.0', // current version
  25. year: ((new Date()).getFullYear()), // automatic current year (for copyright information)
  26. isMobile: (function () {// true if the browser is a mobile device
  27. var check = false;
  28. if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
  29. check = true;
  30. };
  31. return check;
  32. })(),
  33. isLogins: false,
  34. isLoginFixed: false,
  35. layout: {
  36. // isLoginFixed: true,
  37. isNavbarFixed: true, //true if you want to initialize the template with fixed header
  38. isSidebarFixed: true, // true if you want to initialize the template with fixed sidebar
  39. isSidebarClosed: false, // true if you want to initialize the template with closed sidebar
  40. isFooterFixed: true, // true if you want to initialize the template with fixed footer
  41. theme: 'theme-3', // indicate the theme chosen for your project
  42. logo: 'assets/images/logo.png' // relative path of the project logo
  43. }
  44. };
  45. // $http.defaults.headers.common["X-Auth-Token"] = $cookieStore.get('Auth-Token') || null;
  46. // $http.defaults.headers.common["X-Auth-Token"] = $cookieStore.get('Auth-Token') || null;
  47. Restangular.setFullRequestInterceptor(function (element, operation, what, url, headers, queryParams) {
  48. var token = $cookieStore.get('Auth-Token')||null;
  49. var isReportUri = url.indexOf('saiku')>0;
  50. if(token&&isReportUri){
  51. return {
  52. element: element,
  53. params: queryParams,
  54. headers: _.extend({}, headers, {'X-Auth-Token': $cookieStore.get('Auth-Token') || null})
  55. };
  56. }else{
  57. return {
  58. element: element,
  59. params: queryParams,
  60. headers: headers
  61. };
  62. }
  63. });
  64. Restangular.addResponseInterceptor(function(data, operation, what, url, response, deferred) {
  65. if(data){
  66. if(data.state=="433"){
  67. $state.go("login.signin");
  68. var Notification = window.Notification;
  69. Notification.requestPermission();
  70. var n = new Notification("登录退出",{
  71. body: "您的账号在其他地方登录,请确认后重新登录",
  72. icon: '../bower_components/HTML5-Desktop-Notifications/alert.ico',
  73. onclick: function onNotificationClicked() {
  74. console.log('Notification clicked.');
  75. }
  76. });
  77. }else{
  78. deferred.resolve(data)
  79. }
  80. }
  81. });
  82. // $rootScope.nickname ='lijin';
  83. // $rootScope.user = {
  84. // name: 'Peter',
  85. // job: 'ng-Dev',
  86. // picture: 'app/img/user/02.jpg'
  87. // };
  88. }]);
  89. // translate config
  90. app.config(['$translateProvider',
  91. function ($translateProvider) {
  92. // prefix and suffix information is required to specify a pattern
  93. // You can simply use the static-files loader with this pattern:
  94. $translateProvider.useStaticFilesLoader({
  95. prefix: 'assets/i18n/',
  96. suffix: '.json'
  97. });
  98. // Since you've now registered more then one translation table, angular-translate has to know which one to use.
  99. // This is where preferredLanguage(langKey) comes in.
  100. $translateProvider.preferredLanguage('zh');
  101. // Store the language in the local storage
  102. $translateProvider.useLocalStorage();
  103. }]);
  104. // Angular-Loading-Bar
  105. // configuration
  106. app.config(['cfpLoadingBarProvider',
  107. function (cfpLoadingBarProvider) {
  108. cfpLoadingBarProvider.includeBar = true;
  109. cfpLoadingBarProvider.includeSpinner = false;
  110. }]);
  111. /**
  112. *
  113. */
  114. app.config(['RestangularProvider', function(RestangularProvider){
  115. RestangularProvider.setBaseUrl('');
  116. }]);
  117. // app.factory('callRestangular', function(Restangular) {
  118. // return Restangular.withConfig(function(RestangularConfigurer) {
  119. // RestangularConfigurer.setBaseUrl(callIp+':8080/recording/');
  120. // });
  121. // });
  122. // app.factory('api_call', ['callRestangular', function(callRestangular){
  123. // var callService = callRestangular.all("recording");
  124. // return {
  125. // start: function(phone){
  126. // return callService.customPOST(rdata, 'start', {});
  127. // }
  128. // }
  129. // }])
  130. app.factory('textRestangular', function(Restangular) {
  131. return Restangular.withConfig(function(RestangularConfigurer) {
  132. RestangularConfigurer.setBaseUrl(inspectIp+':8088/DeskServer/');
  133. });
  134. });
  135. app.factory('api_text', ['textRestangular', function(textRestangular){
  136. var loginService = textRestangular.all("comm");
  137. var loginsins = textRestangular.all("tele/agent");
  138. return {
  139. start: function(phone){
  140. var rdata = "dom=0&epwd=&aid=1000&apwd=e10adc3949ba59abbe56e057f20f883e&adn="+phone;
  141. return loginService.customPOST(rdata, 'start', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  142. },
  143. exit: function(token){
  144. var rdata = "dom=0&token="+token;
  145. return loginService.customPOST(rdata, 'exit', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  146. },
  147. login: function(group,token){
  148. var rdata = "dom=0&token="+token+"&aid=1000&acd="+group+"&skill=-1&mon=false&silent=false";
  149. return loginsins.customPOST(rdata, 'login', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  150. },
  151. logout: function(token){
  152. var rdata = "dom=0&token="+token+"&aid=1000";
  153. return loginsins.customPOST(rdata, 'logout', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  154. },
  155. dialout: function(token,gid,teleno){
  156. var rdata = "dom=0&token="+token+"&teleno="+teleno+"&gid="+gid+"&uud=&async=true";
  157. return loginsins.customPOST(rdata, 'dialout', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  158. },
  159. callout: function(token,teleno){
  160. var rdata = "dom=0&token="+token+"&teleno="+teleno+"&uud=&async=true";
  161. return loginsins.customPOST(rdata, 'dialout', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  162. },
  163. setbusy: function(token){
  164. var rdata = "dom=0&token="+token;
  165. return loginsins.customPOST(rdata, 'setbusy', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  166. },
  167. setidle: function(token){
  168. var rdata = "dom=0&token="+token;
  169. return loginsins.customPOST(rdata, 'setidle', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  170. },
  171. inittrans: function(telephone,token){
  172. var rdata = "dom=0&token="+token+"&teleno="+telephone+"&uud=&async=true";
  173. return loginsins.customPOST(rdata, 'inittrans', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  174. },
  175. comptrans: function(telephone,token){
  176. var rdata = "dom=0&token="+token;
  177. return loginsins.customPOST(rdata, 'comptrans', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  178. },
  179. record: function(token){
  180. var rdata = "dom=0&token="+token+"&filename=/tmp/agent.wav&async=true&maxtime=10&termchar=&append=true";
  181. return loginsins.customPOST(rdata, 'record', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  182. },
  183. offhook: function(token){
  184. var rdata = "dom=0&token="+token;
  185. return loginsins.customPOST(rdata, 'offhook', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  186. },
  187. onhook: function(token){
  188. var rdata = "dom=0&token="+token;
  189. return loginsins.customPOST(rdata, 'onhook', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  190. },
  191. getcdrid: function(token){
  192. var rdata = "dom=0&token="+token;
  193. return loginsins.customPOST(rdata, 'getcdrid', {}, {'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'});
  194. }
  195. }
  196. }])
  197. app.factory('UserRestangular', function(Restangular) {
  198. return Restangular.withConfig(function(RestangularConfigurer) {
  199. RestangularConfigurer.setBaseUrl(serverIp+':9680/api/user/');
  200. });
  201. });
  202. app.factory('api_user', ['UserRestangular', function(UserRestangular){
  203. var basePath = "user/";
  204. return {
  205. };
  206. }]);
  207. app.factory('api_login', ['UserRestangular', function(UserRestangular){
  208. var loginService = UserRestangular.all("auth");
  209. return {
  210. login: function(username, password){
  211. return loginService.customPOST({'username':username,'password':password}, 'login',{});
  212. },
  213. // logout: function(sessionid,userid){
  214. // return loginService.customPOST(sessionid + '/' + userid);
  215. // },
  216. sso: function(nickname){
  217. return loginService.customGET('sso/' + nickname);
  218. },
  219. resetpwd: function(userid){
  220. return loginService.customGET('resetpwd/' + userid);
  221. },
  222. uppwd: function(data){
  223. return loginService.customPOST(data, 'uppwd',{});
  224. }
  225. }
  226. }])
  227. app.factory('api_user_data', ['UserRestangular', function(UserRestangular){
  228. var dataService = UserRestangular.all("data");
  229. return {
  230. validate:function(data){
  231. return dataService.customPOST(data,'validate/role', {});
  232. },
  233. importData: function(){
  234. return dataService.one('/importData');
  235. },
  236. fetchDataList: function(model, data){
  237. return dataService.customPOST(data,'fetchDataList/' + model, {});
  238. },
  239. fetchData : function(model, data){
  240. return dataService.customPOST(data, 'fetchData/' + model, {});
  241. },
  242. addData: function(model, data){
  243. return dataService.customPOST(data, 'addData/' + model, {});
  244. },
  245. updData: function(model, data){
  246. return dataService.customPOST(data, 'updData/' + model, {});
  247. },
  248. rmvData: function(model, data){
  249. return dataService.customPOST(data, 'rmvData/' + model, {});
  250. },
  251. downDataModel: function(type,month){
  252. return dataService.one('downDataModel/'+type+'/'+month);
  253. }
  254. };
  255. }]);
  256. // app.factory('DpmRestangular', function(Restangular) {
  257. // return Restangular.withConfig(function(RestangularConfigurer) {
  258. // RestangularConfigurer.setBaseUrl(serverIp+':9008/data/');
  259. // });
  260. // });
  261. // app.factory('api_bpm_dbca', ['DpmRestangular', function(DpmRestangular){
  262. // var bpm = DpmRestangular.all("bpm");
  263. // return {
  264. // impFileData: function(pdKey){
  265. // return bpm.customPOST( 'impFileData/' + pdKey);
  266. // },
  267. // };
  268. // }]);
  269. app.factory('BpmRestangular', function(Restangular) {
  270. return Restangular.withConfig(function(RestangularConfigurer) {
  271. // RestangularConfigurer.setBaseUrl("http://168.166.3.41"+':9008/api/');
  272. RestangularConfigurer.setBaseUrl(serverIp+':9680/api/bpm');
  273. });
  274. });
  275. app.factory('api_statistic', ['BpmRestangular', function(BpmRestangular){
  276. var statistic = BpmRestangular.all("statistic");
  277. return {
  278. query: function(data, rptId){
  279. return statistic.customPOST(data, 'unidimensional/'+rptId, {});
  280. },
  281. // exportData: function(reportView, uuid, reportfileName){
  282. // return reportService.one('query/rest/export/xls/?exportname='+reportfileName+'xls');
  283. // }
  284. unidimensionalExport: function(rptId){
  285. return statistic.one('unidimensionalExport/'+rptId);
  286. }
  287. }
  288. }]);
  289. app.factory('api_bpm', ['BpmRestangular', function(BpmRestangular){
  290. var process = BpmRestangular.all("process");
  291. return {
  292. deploy: function(data){
  293. return process.customPOST(data, 're/model/deploy', {});
  294. },
  295. list: function(){
  296. return process.customGET('re/model/list');
  297. },
  298. modelsource: function(pdId){
  299. return process.customGET('re/model/' + pdId + '/source');
  300. },
  301. savemodel: function(pdId,data){
  302. return process.customPOST(data, 're/model/' + pdId + '/save' , {});
  303. },
  304. removemodel: function(modelId){
  305. return process.customGET('re/model/' + modelId + '/remove');
  306. }
  307. };
  308. }]);
  309. app.factory('api_bpm_domain', ['BpmRestangular', function(BpmRestangular){
  310. var bpmService = BpmRestangular.all("bpm");
  311. return {
  312. fetchtask: function(pdKey,data){
  313. return bpmService.customPOST(data, 'fetchTask/' + pdKey, {});
  314. },
  315. start : function(pdKey,data){
  316. return bpmService.customPOST(data, 'start/' + pdKey, {});
  317. },
  318. flowTracing: function(processInstanceId, data){
  319. return bpmService.customPOST(data, 'flowTracing/' + processInstanceId, {});
  320. },
  321. complete: function(taskId, userId, data){
  322. return bpmService.customPOST(data, 'completeTask/' + taskId + '/' + userId, {});
  323. },
  324. completeUpgrade: function(data){
  325. return bpmService.customPOST(data, 'upgradeIncident', {});
  326. },
  327. save: function(taskId,data){
  328. return bpmService.customPOST(data, 'saveTaskVar/' + taskId, {});
  329. },
  330. claimtask: function(taskId, data){
  331. return bpmService.customPOST(data, 'claimTask/' + taskId, {});
  332. },
  333. expectedTime: function(taskId){
  334. return bpmService.customGET('expectedTime/' + taskId);
  335. },
  336. history: function(processId){
  337. return bpmService.customGET('history/' + processId);
  338. },
  339. upgrade: function(processInstanceId,taskId,data){
  340. return bpmService.customPOST(data, 'upgradeIncident/' + processInstanceId + '/' + taskId , {});
  341. },
  342. listAttachments: function(processId, data){
  343. return bpmService.customPOST(data, 'getAttachmentList/' + processId , {});
  344. },
  345. saveAttachments: function(processId,taskId,userId, data){
  346. return bpmService.one('saveAttachments/'+processId+'/'+taskId+'/'+userId);
  347. },
  348. download: function(attachmentId){
  349. return bpmService.one('getAttachmentContent/' + attachmentId);
  350. },
  351. // download: function(attachmentId){
  352. // return bpmService.customGET('getAttachmentContent/' + attachmentId,{},{'responseType':'arraybuffer'});
  353. // },
  354. attachmentsPreviewUrl: function(attachmentId){
  355. return bpmService.customGET('attachmentsPreviewUrl/' + attachmentId);
  356. },
  357. startformkey: function(pdKey){
  358. return bpmService.customGET('startformkey/' + pdKey);
  359. },
  360. taskformkey: function(taskId){
  361. return bpmService.customGET('taskformkey/' + taskId);
  362. },
  363. workernumber: function(type){
  364. return bpmService.customGET('restful/' + type);
  365. }
  366. };
  367. }]);
  368. app.factory('api_bpm_data', ['BpmRestangular', function(BpmRestangular){
  369. var dataService = BpmRestangular.all("data");
  370. var serviceCatalogue = BpmRestangular.all("ServiceCatalogue");
  371. return {
  372. impFileData: function(){
  373. return dataService.one('/impFileData/bpm_scheduleorder');
  374. },
  375. importData: function(){
  376. return dataService.one('/impFileData');
  377. },
  378. fetchDataList: function(model, data){
  379. return dataService.customPOST(data,'fetchDataList/'+model, {});
  380. },
  381. fetchData : function(model, dataId){
  382. return dataService.customGET('fetchData/' + model + '/' + dataId);
  383. },
  384. fetchServiceTasks : function(model, data){
  385. if(!model){
  386. model="ALL"
  387. }
  388. return serviceCatalogue.customPOST(data,'fetchServiceTasks/'+model,{});
  389. },
  390. addData: function(model, data){
  391. return dataService.customPOST(data, 'addData/' + model, {});
  392. },
  393. updData: function(model, data){
  394. return dataService.customPOST(data, 'updData/' + model, {});
  395. },
  396. rmvData: function(model, data){
  397. return dataService.customPOST(data, 'rmvData/' + model, {});
  398. },
  399. downDataModel: function(type,month){
  400. return dataService.one('downDataModel/'+type+'/'+month);
  401. }
  402. };
  403. }]);
  404. app.factory('api_bpm_schedule', ['BpmRestangular', function(BpmRestangular){
  405. var dataService = BpmRestangular.all("data");
  406. return {
  407. getScheduleClass: function(){
  408. var data={
  409. "idx":"0",
  410. "sum":"10"
  411. };
  412. return dataService.customPOST(data,'fetchDataList/scheduleclass', {});
  413. },
  414. fetchList: function(startTime, endTime,userId, queryKey){
  415. var scheduleOrder = {
  416. "scheduleorder":{
  417. "startTime" : startTime,
  418. "endTime" : endTime
  419. },
  420. "idx":"0",
  421. "sum":"1000"
  422. };
  423. if(userId){
  424. scheduleOrder['scheduleorder']['user'] = userId;
  425. }
  426. if(queryKey){
  427. scheduleOrder['scheduleorder']['description'] = queryKey;
  428. }
  429. return dataService.customPOST(scheduleOrder,'fetchDataList/scheduleorder', {});
  430. },
  431. fetchData : function(dataId){
  432. return dataService.customGET('fetchData/scheduleorder/' + dataId);
  433. },
  434. update : function(data){
  435. return dataService.customPOST(data,'updData/scheduleorder',{});
  436. },
  437. add: function(data){
  438. return dataService.customPOST(data, 'addData/scheduleorder', {});
  439. },
  440. remove: function(data){
  441. return dataService.customPOST(data, 'rmvData/scheduleorder', {});
  442. },
  443. fetchSchedule: function(userId, startTime, endTime){
  444. var scheduleData = {
  445. "schedulewatch":{
  446. "type":"1",
  447. "user":{
  448. "id": userId
  449. },
  450. "startTime":startTime,
  451. "endTime":endTime
  452. },
  453. "idx":"0",
  454. "sum":"100"
  455. };
  456. return dataService.customPOST(scheduleData, 'fetchDataList/schedulewatch', {});
  457. },
  458. queryRecieveSwitch: function(userId){
  459. var handleSwitch = {
  460. "schedulewatch":{
  461. "type":"3",
  462. "user":{
  463. "id":userId
  464. }
  465. },
  466. "idx":"0",
  467. "sum":"10"
  468. };
  469. return dataService.customPOST(handleSwitch, 'fetchDataList/schedulewatch', {});
  470. },
  471. queryHandleoutSwitch: function(userId){
  472. var handleSwitch = {
  473. "schedulewatch":{
  474. "type":"2",
  475. "user":{
  476. "id":userId
  477. }
  478. },
  479. "idx":"0",
  480. "sum":"10"
  481. };
  482. return dataService.customPOST(handleSwitch, 'fetchDataList/schedulewatch', {});
  483. },
  484. handleSchedule: function(data){
  485. return dataService.customPOST(data, 'updData/schedulewatch', {});
  486. },
  487. querySwitch: function(filterData){
  488. var switchData = {
  489. "scheduleorder":{
  490. "type":"4"
  491. },
  492. "idx":filterData.idx,
  493. "sum":filterData.sum
  494. };
  495. return dataService.customPOST(switchData, 'fetchDataList/scheduleorder', {});
  496. },
  497. query: function(filterData){
  498. var switchData = {
  499. "scheduleorder":filterData.scheduleorder,
  500. "idx":filterData.idx,
  501. "sum":filterData.sum
  502. };
  503. return dataService.customPOST(switchData, 'fetchDataList/scheduleorder', {});
  504. }
  505. };
  506. }]);
  507. app.factory('SysinfoRestangular', function(Restangular) {
  508. return Restangular.withConfig(function(RestangularConfigurer) {
  509. RestangularConfigurer.setBaseUrl(serverIp+':9680/api/sysinfo/');
  510. });
  511. });
  512. app.factory('api_sysinfo',['SysinfoRestangular', function(SysinfoRestangular){
  513. var dataService = SysinfoRestangular.all("data");
  514. return {
  515. fetchDataList: function(model,data){
  516. return dataService.customPOST(data, 'fetchDataList/' + model , {});
  517. },
  518. addData: function(model,data){
  519. return dataService.customPOST(data, 'addData/' + model, {});
  520. },
  521. getSerialnumber: function(type,model){
  522. return dataService.customGET('getSerialnumber/'+type + '/'+model);
  523. }
  524. };
  525. }]);
  526. app.factory('ConfigureRestangular', function(Restangular) {
  527. return Restangular.withConfig(function(RestangularConfigurer) {
  528. RestangularConfigurer.setBaseUrl(serverIp+':9680/api/config/');
  529. });
  530. });
  531. app.factory('api_configure_form',['ConfigureRestangular', function(ConfigureRestangular){
  532. var formService = ConfigureRestangular.all("form");
  533. return {
  534. renderForm: function(formKey,userId, processInstanceId){
  535. if(processInstanceId){
  536. return formService.customGET('renderForm/' + formKey + "/" + processInstanceId + "/" + userId);
  537. }else{
  538. return formService.customGET('renderForm/' + formKey + "/000000/" + userId);
  539. }
  540. },
  541. renderList : function(formKey){
  542. return formService.customGET('renderList/' + formKey);
  543. },
  544. renderTabForm: function(classify){
  545. return formService.customGET('renderTabForm/' + classify);
  546. }
  547. };
  548. }]);
  549. app.factory('api_configure_data',['ConfigureRestangular', function(ConfigureRestangular){
  550. var dataService = ConfigureRestangular.all("data");
  551. return {
  552. fetchDataList: function(model,data){
  553. return dataService.customPOST(data, 'fetchDataList/' + model , {});
  554. },
  555. fetchDataById: function(model,id){
  556. return dataService.customGET('fetchData/' + id +'/'+ model);
  557. },
  558. fetchData : function(model,data){
  559. return dataService.customPOST(data, 'fetchData/' + model, {});
  560. },
  561. addData: function(model,data){
  562. return dataService.customPOST(data, 'addData/' + model, {});
  563. },
  564. updData: function(model,data){
  565. return dataService.customPOST(data, 'updData/' + model, {});
  566. },
  567. downModels: function(type,id,name){
  568. return dataService.one('export/'+type+'/'+id+'/'+name);
  569. }
  570. };
  571. }]);
  572. app.factory('SolutionRestangular', function(Restangular) {
  573. return Restangular.withConfig(function(RestangularConfigurer) {
  574. //RestangularConfigurer.setBaseUrl('http://168.166.203.41:9000/services');
  575. RestangularConfigurer.setBaseUrl(serverIp+':9680/api/solution');
  576. });
  577. });
  578. app.factory('api_solution', ['SolutionRestangular', function(SolutionRestangular){
  579. var solutionService = SolutionRestangular.all("solution");
  580. var data = SolutionRestangular.all("solutionData");
  581. var history = SolutionRestangular.all("solutionHistory");
  582. var review = SolutionRestangular.all("solution_review");
  583. var typeservice = SolutionRestangular.all("solutionType");
  584. var groupservice = SolutionRestangular.all("solutionGroup");
  585. return {
  586. findSolutionByKeys: function(data){
  587. var key=data.key, status=data.status||0, pageIndex=data.pageIndex||0, pageSum=data.pageSum, treeIds=data.treeIds, userId=data.userId;
  588. if(angular.isUndefined(treeIds)){
  589. return solutionService.customGET('findSolutionByKeys/' + key + '/' + status + '/' + pageIndex + '/' + pageSum + '/' + userId);
  590. }else{
  591. return solutionService.customGET('findSolutionByKeys/' + key + '/' + status + '/' + pageIndex + '/' + pageSum + '/' + treeIds + '/' + userId);
  592. }
  593. },
  594. // searcher: function(data){
  595. // var queryBuilder=data.key, indexname=data.treeIds, type=data.userId;
  596. // return searchservice.customGET('searcher/' + queryBuilder + '/' + indexname + '/' + type );
  597. // },
  598. addSolution : function(){
  599. return solutionService.one('add');
  600. },
  601. addFile : function(data){
  602. return solutionService.customPOST(data, 'addSolution', {});
  603. },
  604. addModel : function(type,data){
  605. return solutionService.customPOST(data, 'addModel/'+type, {});
  606. },
  607. updModel : function(type,data){
  608. return solutionService.customPOST(data, 'updModel/'+type, {});
  609. },
  610. rmModels : function(id,data){
  611. return solutionService.customPOST(data, 'rmModels/'+id, {});
  612. },
  613. update: function(){
  614. return solutionService.one('update');
  615. },
  616. upload: function(){
  617. return solutionService.one('upload');
  618. },
  619. uploadResponseUri: function(){
  620. return solutionService.one('/');
  621. },
  622. addNotFile : function(data){
  623. return solutionService.customPOST(data, 'addNotFile', {});
  624. },
  625. updateNotFile : function(data){
  626. return solutionService.customPOST(data, 'updateNotFile', {});
  627. },
  628. updateSolution : function(data){
  629. return solutionService.customPOST(data, 'updateSolution', {});
  630. },
  631. searchSolutionByKey: function(key,id){
  632. return solutionService.customGET('searchSolutionByKey/' + key+'/'+id);
  633. },
  634. findSolutionById: function(id){
  635. return solutionService.customGET('check/' + id);
  636. },
  637. findSolutions: function(id){
  638. return solutionService.customGET('check2/' + id);
  639. },
  640. fetchDataList: function(model, data){
  641. return solutionService.customPOST(data,'fetchDataList/' + model, {});
  642. },
  643. findSolutionDataByDateById: function(ndate,sid){
  644. return data.customGET('findSolutionDataByDateById/' + ndate + '/' + sid);
  645. },
  646. findSolutionTypeActions: function(userId){
  647. return typeservice.customGET('findSolutionTypeActions/' + userId);
  648. },
  649. findSolutionTypesUser: function(data){
  650. return typeservice.customPOST(data,'findSolutionTypesUser' ,{});
  651. },
  652. addTypeUserAll: function(data){
  653. return typeservice.customPOST(data,'addTypeUserAll' ,{});
  654. },
  655. hotRanking: function(num){
  656. return solutionService.customGET('hotRanking/' + num );
  657. },
  658. scoreRanking: function(num){
  659. return solutionService.customGET('scoreRanking/' + num );
  660. },
  661. fetchBBSSolutions: function(pageIndex, pageSum, sequence, userId){
  662. return solutionService.customGET('communicationSolutions/' + pageIndex + '/' + pageSum +'/'+ sequence + '/' + userId);
  663. },
  664. queryBBSSolutions: function(pageIndex, pageSum, sequence, userId, key){
  665. return solutionService.customGET('communicationSolutions/' + pageIndex + '/' + pageSum +'/'+ sequence + '/' + userId + '/' + key);
  666. },
  667. updateSolutionStatus: function(data){
  668. return solutionService.customPOST(data, 'updateSolutionStatus',{});
  669. },
  670. getSolutionNumber: function(){
  671. return solutionService.customGET('getSolutionNumber');
  672. },
  673. addSolutionType: function(data){
  674. return typeservice.customPOST(data ,'add', {});
  675. },
  676. updateSolutionType: function(data){
  677. return typeservice.customPOST(data ,'update', {});
  678. },
  679. removeSolutionType: function(id){
  680. return typeservice.customGET('delete/'+id);
  681. },
  682. getSolutionType: function(id){
  683. return typeservice.customGET('' + id);
  684. },
  685. getTree: function(typeId, groupId, flag){
  686. return typeservice.customGET('getTree/'+typeId+'/'+groupId+'/' + flag);
  687. },
  688. checkCommentScoreByUserIds:function(userId, id){
  689. return review.customGET('findCommentScore/'+userId + '/' + id);
  690. },
  691. addSolutionReview:function(data){
  692. return solutionService.customPOST(data,'addScore',{});
  693. },
  694. findSolutionReviewById:function(userid,id,pageIndex,pageSum){
  695. return solutionService.customGET('findSolutionReviewByType/' +userid+'/' +id+'/' +pageIndex+'/' +pageSum);
  696. },
  697. saveAllUserAuth:function(solutionId, flag){
  698. return solutionService.customGET('saveAllUserTrees/' + solutionId + '/' + flag);
  699. },
  700. updatermvSolutionType: function(typeId, groupId, userIds, flag){
  701. return typeservice.customGET('delOrUpdateTrees/' + typeId + '/' + groupId + '/'+userIds+ '/'+flag);
  702. },
  703. findSolutionGroup:function(id){
  704. return groupservice.customGET('findSolutionGroup/'+id);
  705. },
  706. saveSolutionGroup: function(id,data){
  707. return groupservice.customPOST(data,'saveSolutionGroup/'+id);
  708. },
  709. // getSolutionDowpath: function(id){
  710. // return solutionService.one('download/'+id);
  711. // }
  712. getSolutionDowpath: function(attachmentId){
  713. return solutionService.one('download/' + attachmentId+'/file');
  714. }
  715. // getSolutionDowpath: function(attachmentId){
  716. // return solutionService.customGET('download/' + attachmentId);
  717. // }
  718. };
  719. }]);
  720. app.factory('CMDBRestangular', function(Restangular) {
  721. return Restangular.withConfig(function(RestangularConfigurer) {
  722. RestangularConfigurer.setBaseUrl(serverIp+':9680/api/cmdb/cmdb/');
  723. });
  724. });
  725. app.factory('api_cmdb',['CMDBRestangular', function(CMDBRestangular){
  726. var ciService = CMDBRestangular.all("ci");
  727. var uuidService = CMDBRestangular.all("uuid");
  728. var edgeService = CMDBRestangular.all("edge");
  729. var traversal = CMDBRestangular.all("traversal");
  730. var downloadService = CMDBRestangular.all("download");
  731. var exportService = CMDBRestangular.all("export");
  732. var importService = CMDBRestangular.all("import");
  733. var exportModelService = CMDBRestangular.all("exportModel");
  734. var importDataService = CMDBRestangular.all("importData");
  735. var exportDataService = CMDBRestangular.all("exportData");
  736. var searchService = CMDBRestangular.all("search");
  737. function serializeData( data ) {
  738. // If this is not an object, defer to native stringification.
  739. if ( ! angular.isObject( data ) ) {
  740. return( ( data == null ) ? "" : data.toString() );
  741. }
  742. var buffer = [];
  743. // Serialize each key in the object.
  744. for ( var name in data ) {
  745. if ( ! data.hasOwnProperty( name ) ) {
  746. continue;
  747. }
  748. var value = data[ name ];
  749. buffer.push(
  750. encodeURIComponent( name ) + "=" + encodeURIComponent( ( value == null ) ? "" : value )
  751. );
  752. }
  753. // Serialize the buffer and clean it up for transportation.
  754. var source = buffer.join( "&" ).replace( /%20/g, "+" );
  755. return( source );
  756. }
  757. return {
  758. create: function(data){
  759. return ciService.customPOST(data,'', {});
  760. },
  761. importData: function(){
  762. return importDataService.one('/nodes');
  763. },
  764. put: function(data, id){
  765. return ciService.customPUT(data, id, {});
  766. },
  767. remove: function(id){
  768. return ciService.customDELETE(id);
  769. },
  770. removeByUUId: function(uuid){
  771. return ciService.customDELETE('uuid/' + id, {},{'Content-Type': 'application/json'});
  772. },
  773. removeRefById: function(id){
  774. return ciService.customDELETE(id + '/ref');
  775. },
  776. find: function(id){
  777. return ciService.customGET(id);
  778. },
  779. searchkey: function(type,key,idx,sum){
  780. return searchService.customGET(type + '/' + key + '/' + idx + '/' + sum);
  781. },
  782. findByUUId: function(uuid){
  783. return ciService.customGET('?uuid=' + uuid);
  784. },
  785. query: function(data){
  786. return ciService.customGET('query', data);
  787. },
  788. findRefById: function(id){
  789. return ciService.customGET(id + '/refs');
  790. },
  791. finduuid: function(type,model){
  792. return uuidService.customGET(type + '/'+model);
  793. },
  794. types: function(){
  795. return CMDBRestangular.customGET('types');
  796. },
  797. createRef: function(data){
  798. return edgeService.customPOST(data,'', {});
  799. },
  800. putRef: function(data, id){
  801. return edgeService.customPUT(data,'' + id, {});
  802. },
  803. removeRef: function(id){
  804. return edgeService.customDELETE(id,{},{'Content-Type': 'application/json'});
  805. },
  806. traversal: function(uuid){
  807. return traversal.customGET(uuid);
  808. },
  809. traversalRel: function(uuid, relation){
  810. return traversal.customGET(uuid + '/' + relation + '/' + 'none');
  811. },
  812. export: function(label){
  813. return exportService.customGET('nodes/' + label);
  814. },
  815. import: function(){
  816. return importService.one('/nodes');
  817. },
  818. download: function(label){
  819. return downloadService.one('/label');
  820. },
  821. exportData: function(type,model){
  822. return exportDataService.one(model+'/'+type);
  823. },
  824. downModels: function(type,model){
  825. return exportModelService.one(model+'/'+type);
  826. }
  827. };
  828. }]);
  829. app.factory('MonitorRestangular', function(Restangular) {
  830. return Restangular.withConfig(function(RestangularConfigurer) {
  831. RestangularConfigurer.setBaseUrl(serverIp+':9004/services');
  832. });
  833. });
  834. app.factory('api_monitor', ['MonitorRestangular', function(MonitorRestangular){
  835. //http://127.0.0.1:9004/services/ftpFile/monitor/bankTip/
  836. var process = MonitorRestangular.all("ftpFile/monitor");
  837. return {
  838. bankTip: function(id){
  839. return process.customGET('bankTip/'+id);
  840. },
  841. list: function(){
  842. return process.customGET( 'list/1000' );
  843. },
  844. devList: function(id){
  845. return process.customGET('devList/'+id);
  846. },
  847. cpuList: function(){
  848. return process.customGET('cpuList/10');
  849. },
  850. memList: function(){
  851. return process.customGET('memList/10');
  852. },
  853. storageList: function(){
  854. return process.customGET('storageList/10');
  855. },
  856. transData: function(){
  857. return process.customGET('transData/5');
  858. },
  859. banklist: function(){
  860. return process.customGET('banklist');
  861. },
  862. app: function(id){
  863. return process.customGET('app/'+id);
  864. },
  865. beita: function(id){
  866. return process.customGET('beita/'+id);
  867. },
  868. gongji: function(id){
  869. return process.customGET('gongji/'+id);
  870. }
  871. };
  872. }]);
  873. app.factory('ReportRestangular', function(Restangular) {
  874. return Restangular.withConfig(function(RestangularConfigurer) {
  875. //RestangularConfigurer.setBaseUrl('http://127.0.0.1:9005/api/cmdb/');
  876. RestangularConfigurer.setBaseUrl(reportIp+':8080/saiku/rest');
  877. // RestangularConfigurer.setBaseUrl(serverIp+':8092/saiku/rest');
  878. //saiku/rest/saiku/api/query/execute/
  879. });
  880. });
  881. app.factory('api_report', ['ReportRestangular','Restangular', function(MonitorRestangular, Restangular){
  882. var reportService = MonitorRestangular.all("saiku/api");
  883. var authService = MonitorRestangular.one("saiku/session");
  884. return {
  885. getLicenseKey: function(){
  886. return Restangular.one('assets/').customGET('api/reportToken.js');
  887. },
  888. // auth: function(){
  889. // return authService.customPOST('username=admin&password=admin&language=zh'
  890. // ,'', {}, {'Content-Type': 'application/x-www-form-urlencoded'});
  891. // },
  892. // session: function(){
  893. // return authService.customGET('');
  894. // },
  895. list: function(){
  896. return reportService.customGET('repository?type=saiku');
  897. /**
  898. /saiku/api/repository
  899. path: /homes/home:admin/itsm_reports
  900. */
  901. },
  902. getMdx: function(path, uuid){
  903. var rdata = 'file='+path+'&formatter=flattened&language=zh';
  904. return reportService.customPOST(rdata,'query/'+uuid, {}, {'Content-Type': 'application/x-www-form-urlencoded'});
  905. },
  906. execute: function(data){
  907. return reportService.customPOST(data, 'query/execute', {}, {'Accept': 'application/json, text/javascript, */*'});
  908. },
  909. exportData: function(reportView, uuid, reportfileName){
  910. return reportService.one('query/rest/export/xls/?exportname='+reportfileName+'xls');
  911. }
  912. };
  913. }]);