main.2.js 41 KB

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