main.js 49 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288
  1. // var app = angular.module('app', ['ionic', 'restangular', 'oc.lazyLoad']);
  2. var app = angular.module('app', ['ui.router', 'ui.select', 'restangular', 'angularFileUpload', 'ngSanitize']);
  3. //var serverIp = "http://192.168.3.49";
  4. //var reportIp = "http://192.168.3.50";
  5. //var inspectIp = "http://192.168.3.69";
  6. //var callIp = "http://192.168.3.49";
  7. var serverIp = "http://itsm.whut.edu.cn";
  8. var reportIp = "http://itsm.whut.edu.cn";
  9. var inspectIp = "http://itsm.whut.edu.cn";
  10. var callIp = "http://itsm.whut.edu.cn";
  11. // app.constant('ADDRESS', {
  12. // serverIp: "http://192.168.3.19",
  13. // serverIpPort: ":8080",
  14. // api: "/service/api"
  15. // });
  16. // app.constant('ADDRESS', {
  17. // serverIp: "http://192.168.3.49",
  18. // serverIpPort: ":9680",
  19. // api: "/api"
  20. // });
  21. // app.constant('ADDRESS', {
  22. // serverIp: "http://192.168.3.52",
  23. // serverIpPort: ":9680",
  24. // api: "/api"
  25. // });
  26. // app.constant('ADDRESS', {
  27. // serverIp: "http://115.156.150.70",
  28. // serverIpPort: ":8080",
  29. // api: "/service/api"
  30. // });
  31. app.constant('ADDRESS', {
  32. // serverIp: "http://itservice.hust.edu.cn",
  33. serverIp: "http://itsm.whut.edu.cn",
  34. serverIpPort: ":80",
  35. api: "/service"
  36. });
  37. app.config(['$httpProvider', '$stateProvider', '$urlRouterProvider', 'ADDRESS',
  38. function ($httpProvider, $stateProvider, $urlRouterProvider, address) {
  39. // setup an abstract state for the tabs directive
  40. $stateProvider.state('tab', {
  41. url: '/tab',
  42. abstract: true,
  43. cache: true,
  44. templateUrl: 'assets/views/mainView.html',
  45. controller: 'mainCtrl'
  46. })
  47. .state('tab.dashboard', {
  48. url: '/dashboard',
  49. templateUrl: 'assets/views/dashboard.html',
  50. cache: true,
  51. controller: 'dashboardCtrl'
  52. })
  53. .state('tab.requesterIndex', {
  54. url: '/requesterIndex',
  55. templateUrl: 'assets/views/requesterIndex.html',
  56. cache: true,
  57. controller: 'requesterIndexCtrl'
  58. })
  59. .state('tab.requesterList', {
  60. url: '/requesterList',
  61. cache: true,
  62. templateUrl: 'assets/views/requesterList.html',
  63. controller: 'requesterListCtrl'
  64. })
  65. .state('tab.requesterDetail', {
  66. url: '/requesterDetail/{data}',
  67. templateUrl: 'assets/views/requesterDetail.html',
  68. controller: 'requesterDetailCtrl'
  69. })
  70. .state('tab.knowledgeList', {
  71. url: '/knowledgeList',
  72. cache: true,
  73. templateUrl: 'assets/views/knowledgeList.html',
  74. controller: 'knowledgeListCtrl'
  75. })
  76. .state('tab.noticeList', {
  77. url: '/noticeList',
  78. cache: true,
  79. templateUrl: 'assets/views/noticeList.html',
  80. controller: 'noticeListCtrl'
  81. })
  82. .state('tab.noticeDetail', {
  83. url: '/noticeDetail/{data}',
  84. cache: true,
  85. templateUrl: 'assets/views/noticeDetail.html',
  86. controller: 'noticeDetailCtrl'
  87. })
  88. $urlRouterProvider.otherwise('/tab/dashboard');
  89. }
  90. ]);
  91. app.config(function ($httpProvider) {
  92. $httpProvider.interceptors.push('sessionInjector');
  93. });
  94. app.run(['$rootScope', function ($rootScope) {
  95. $rootScope.serverIp = serverIp;
  96. }]);
  97. //拦截器
  98. //$httpProvider.interceptors 不能注入$http和引用了$http的服务,否则会报依赖注入错误。
  99. app.factory('sessionInjector', ['$rootScope', '$q', 'ADDRESS', function ($rootScope, $q, address) {
  100. //factory 的两种写法
  101. //第一种写法
  102. var sessionInjector = {
  103. //成功拦截器,发送请求道后台之前执行
  104. 'request': function (request) {
  105. if (sessionStorage.sessionLogin) {
  106. var sessionLogin = JSON.parse(sessionStorage.sessionLogin);
  107. if (sessionLogin.token && sessionLogin.token != '') {
  108. request.headers['access-token'] = sessionLogin.token;
  109. }
  110. }
  111. return request;
  112. },
  113. //成功拦截器,从后台过来的响应之后执行
  114. 'response': function (response) {
  115. // if (response.config.headers["access-token"] && response.config.headers["access-token"] != '') {
  116. // sessionStorage.sessionLogin.token = response.config.headers["access-token"];
  117. // }
  118. if (response.headers('access-token')) {
  119. // var aa = response.headers('access-token');
  120. // console.log(aa);
  121. // var tempSession = JSON.parse(sessionStorage.sessionLogin);
  122. var tempSession = {};
  123. if (sessionStorage.sessionLogin) {
  124. tempSession = JSON.parse(sessionStorage.sessionLogin);
  125. }
  126. tempSession.token = response.headers('access-token');
  127. sessionStorage.sessionLogin = JSON.stringify(tempSession);
  128. }
  129. if (response.data.state == "433") {
  130. sessionStorage.clear();
  131. location.href = address.serverIp;
  132. // window.location.href = 'https://pass.hust.edu.cn/cas/login?service=http%3A%2F%2Fitservice.hust.edu.cn%2F';
  133. }
  134. return response;
  135. },
  136. //失败拦截器,请求发送失败或者被拦截器拒绝
  137. 'requestError': function (requestError) {
  138. var data = requestError.data;
  139. return $q.reject(requestError);
  140. },
  141. //失败拦截器,后台调用失败
  142. 'responseError': function (responseError) {
  143. return $q.reject(responseError);
  144. }
  145. };
  146. return sessionInjector
  147. //第二种写法
  148. // return {
  149. // request: function(config) {
  150. // if (!SessionService.isAnonymus) {
  151. // config.headers['x-session-token'] = SessionService.token;
  152. // }
  153. // return config;
  154. // }
  155. // };
  156. }]);
  157. app.config(['RestangularProvider', function (RestangularProvider) {
  158. RestangularProvider.setBaseUrl('');
  159. }]);
  160. app.factory('textRestangular', function (Restangular) {
  161. return Restangular.withConfig(function (RestangularConfigurer) {
  162. RestangularConfigurer.setBaseUrl(inspectIp + ':8088/DeskServer/');
  163. });
  164. });
  165. app.factory('api_text', ['textRestangular', function (textRestangular) {
  166. var loginService = textRestangular.all("comm");
  167. var loginsins = textRestangular.all("tele/agent");
  168. return {
  169. start: function (phone) {
  170. var rdata = "dom=0&epwd=&aid=1000&apwd=e10adc3949ba59abbe56e057f20f883e&adn=" + phone;
  171. return loginService.customPOST(rdata, 'start', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  172. },
  173. exit: function (token) {
  174. var rdata = "dom=0&token=" + token;
  175. return loginService.customPOST(rdata, 'exit', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  176. },
  177. login: function (group, token) {
  178. var rdata = "dom=0&token=" + token + "&aid=1000&acd=" + group + "&skill=-1&mon=false&silent=false";
  179. return loginsins.customPOST(rdata, 'login', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  180. },
  181. logout: function (token) {
  182. var rdata = "dom=0&token=" + token + "&aid=1000";
  183. return loginsins.customPOST(rdata, 'logout', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  184. },
  185. dialout: function (token, gid, teleno) {
  186. var rdata = "dom=0&token=" + token + "&teleno=" + teleno + "&gid=" + gid + "&uud=&async=true";
  187. return loginsins.customPOST(rdata, 'dialout', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  188. },
  189. callout: function (token, teleno) {
  190. var rdata = "dom=0&token=" + token + "&teleno=" + teleno + "&uud=&async=true";
  191. return loginsins.customPOST(rdata, 'dialout', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  192. },
  193. setbusy: function (token) {
  194. var rdata = "dom=0&token=" + token;
  195. return loginsins.customPOST(rdata, 'setbusy', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  196. },
  197. setidle: function (token) {
  198. var rdata = "dom=0&token=" + token;
  199. return loginsins.customPOST(rdata, 'setidle', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  200. },
  201. inittrans: function (telephone, token) {
  202. var rdata = "dom=0&token=" + token + "&teleno=" + telephone + "&uud=&async=true";
  203. return loginsins.customPOST(rdata, 'inittrans', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  204. },
  205. comptrans: function (telephone, token) {
  206. var rdata = "dom=0&token=" + token;
  207. return loginsins.customPOST(rdata, 'comptrans', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  208. },
  209. record: function (token) {
  210. var rdata = "dom=0&token=" + token + "&filename=/tmp/agent.wav&async=true&maxtime=10&termchar=&append=true";
  211. return loginsins.customPOST(rdata, 'record', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  212. },
  213. offhook: function (token) {
  214. var rdata = "dom=0&token=" + token;
  215. return loginsins.customPOST(rdata, 'offhook', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  216. },
  217. onhook: function (token) {
  218. var rdata = "dom=0&token=" + token;
  219. return loginsins.customPOST(rdata, 'onhook', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  220. },
  221. getcdrid: function (token) {
  222. var rdata = "dom=0&token=" + token;
  223. return loginsins.customPOST(rdata, 'getcdrid', {}, { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' });
  224. }
  225. }
  226. }])
  227. app.factory('logRestangular', ['Restangular', 'ADDRESS', function (Restangular, address) {
  228. return Restangular.withConfig(function (RestangularConfigurer) {
  229. RestangularConfigurer.setBaseUrl(address.serverIp + address.serverIpPort + address.api);
  230. });
  231. }]);
  232. app.factory('api_logout', ['logRestangular', function (logRestangular) {
  233. var outService = logRestangular.all("logout");
  234. return {
  235. logout: function () {
  236. return outService.customDELETE();
  237. },
  238. }
  239. }])
  240. app.factory('UserRestangular', ['Restangular', 'ADDRESS', function (Restangular, address) {
  241. return Restangular.withConfig(function (RestangularConfigurer) {
  242. // RestangularConfigurer.setBaseUrl(serverIp + ':9680/api/user/');
  243. RestangularConfigurer.setBaseUrl(address.serverIp + address.serverIpPort + address.api + '/user/');
  244. });
  245. }]);
  246. app.factory('api_user', ['UserRestangular', function (UserRestangular) {
  247. var basePath = "user/";
  248. return {
  249. };
  250. }]);
  251. app.factory('api_login', ['UserRestangular', function (UserRestangular) {
  252. var loginService = UserRestangular.all("auth");
  253. var outService = UserRestangular.all("logout");
  254. return {
  255. login: function (username, password) {
  256. return loginService.customPOST({ 'username': username, 'password': password }, 'login', {});
  257. },
  258. logout: function () {
  259. return outService.customDELETE();
  260. },
  261. // logout: function(sessionid,userid){
  262. // return loginService.customPOST(sessionid + '/' + userid);
  263. // },
  264. sso: function (nickname) {
  265. return loginService.customGET('sso/' + nickname);
  266. },
  267. resetpwd: function (userid) {
  268. return loginService.customGET('resetpwd/' + userid);
  269. },
  270. uppwd: function (data) {
  271. return loginService.customPOST(data, 'uppwd', {});
  272. }
  273. }
  274. }])
  275. app.factory('api_user_data', ['UserRestangular', function (UserRestangular) {
  276. var dataService = UserRestangular.all("data");
  277. return {
  278. validate: function (data) {
  279. return dataService.customPOST(data, 'validate/role', {});
  280. },
  281. importData: function () {
  282. return dataService.one('/importData');
  283. },
  284. fetchDataList: function (model, data) {
  285. return dataService.customPOST(data, 'fetchDataList/' + model, {});
  286. },
  287. fetchData: function (model, data) {
  288. return dataService.customPOST(data, 'fetchData/' + model, {});
  289. },
  290. addData: function (model, data) {
  291. return dataService.customPOST(data, 'addData/' + model, {});
  292. },
  293. updData: function (model, data) {
  294. return dataService.customPOST(data, 'updData/' + model, {});
  295. },
  296. rmvData: function (model, data) {
  297. return dataService.customPOST(data, 'rmvData/' + model, {});
  298. },
  299. downDataModel: function (type, month) {
  300. return dataService.one('downDataModel/' + type + '/' + month);
  301. }
  302. };
  303. }]);
  304. // app.factory('DpmRestangular', function(Restangular) {
  305. // return Restangular.withConfig(function(RestangularConfigurer) {
  306. // RestangularConfigurer.setBaseUrl(serverIp+':9008/data/');
  307. // });
  308. // });
  309. // app.factory('api_bpm_dbca', ['DpmRestangular', function(DpmRestangular){
  310. // var bpm = DpmRestangular.all("bpm");
  311. // return {
  312. // impFileData: function(pdKey){
  313. // return bpm.customPOST( 'impFileData/' + pdKey);
  314. // },
  315. // };
  316. // }]);
  317. // app.factory('BpmRestangular', function(Restangular) {
  318. // return Restangular.withConfig(function(RestangularConfigurer) {
  319. // // RestangularConfigurer.setBaseUrl("http://168.166.3.41"+':9008/api/');
  320. // // RestangularConfigurer.setBaseUrl(serverIp + ':9680/api/bpm');
  321. // RestangularConfigurer.setBaseUrl(serverIp + ':8080/service/api/bpm');
  322. // // RestangularConfigurer.setBaseUrl(serverIp + ':8080/wechat/bpm');
  323. // // RestangularConfigurer.setBaseUrl(serverIp + '/wechat/bpm');
  324. // });
  325. // });
  326. app.factory('BpmRestangular', ['Restangular', 'ADDRESS', function (Restangular, address) {
  327. return Restangular.withConfig(function (RestangularConfigurer) {
  328. // RestangularConfigurer.setBaseUrl("http://168.166.3.41"+':9008/api/');
  329. // RestangularConfigurer.setBaseUrl(serverIp + ':9680/api/bpm');
  330. // RestangularConfigurer.setBaseUrl(serverIp + ':8080/service/api/bpm');
  331. RestangularConfigurer.setBaseUrl(address.serverIp + address.serverIpPort + address.api + '/bpm');
  332. // RestangularConfigurer.setBaseUrl(serverIp + ':8080/wechat/bpm');
  333. // RestangularConfigurer.setBaseUrl(serverIp + '/wechat/bpm');
  334. });
  335. }]);
  336. app.factory('CommonRestangular', ['Restangular', 'ADDRESS', function (Restangular, address) {
  337. return Restangular.withConfig(function (RestangularConfigurer) {
  338. // RestangularConfigurer.setBaseUrl("http://168.166.3.41"+':9008/api/');
  339. // RestangularConfigurer.setBaseUrl(serverIp + ':9680/api/bpm');
  340. // RestangularConfigurer.setBaseUrl(serverIp + ':8080/wechat/bpm');
  341. RestangularConfigurer.setBaseUrl(address.serverIp + address.serverIpPort + address.api + '/common');
  342. });
  343. }]);
  344. app.factory('WeChatRestangular', function (Restangular) {
  345. return Restangular.withConfig(function (RestangularConfigurer) {
  346. // RestangularConfigurer.setBaseUrl("http://168.166.3.41"+':9008/api/');
  347. // RestangularConfigurer.setBaseUrl("http://192.168.3.49" + ':9680/api/bpm');
  348. // RestangularConfigurer.setBaseUrl(serverIp + '/wechat/bpm');
  349. // RestangularConfigurer.setBaseUrl(serverIp + ':8080/wechat/bpm');
  350. RestangularConfigurer.setBaseUrl(serverIp + '/wechat/common');
  351. });
  352. });
  353. app.factory('WeChatApply', ['Restangular', 'ADDRESS', function (Restangular, address) {
  354. return Restangular.withConfig(function (RestangularConfigurer) {
  355. // RestangularConfigurer.setBaseUrl("http://168.166.3.41"+':9008/api/');
  356. // RestangularConfigurer.setBaseUrl("http://192.168.3.49" + ':9680/api/bpm');
  357. // RestangularConfigurer.setBaseUrl(serverIp + '/wechat/bpm');
  358. // RestangularConfigurer.setBaseUrl(serverIp + ':8080/wechat/bpm');
  359. // RestangularConfigurer.setBaseUrl(serverIp + '/wechat/apply');
  360. RestangularConfigurer.setBaseUrl(address.serverIp + address.serverIpPort + address.api + '/apply');
  361. });
  362. }]);
  363. app.factory('api_statistic', ['BpmRestangular', function (BpmRestangular) {
  364. var statistic = BpmRestangular.all("statistic");
  365. return {
  366. query: function (data, rptId) {
  367. return statistic.customPOST(data, 'unidimensional/' + rptId, {});
  368. },
  369. // exportData: function(reportView, uuid, reportfileName){
  370. // return reportService.one('query/rest/export/xls/?exportname='+reportfileName+'xls');
  371. // }
  372. unidimensionalExport: function (rptId) {
  373. return statistic.one('unidimensionalExport/' + rptId);
  374. }
  375. }
  376. }]);
  377. app.factory('api_bpm', ['BpmRestangular', function (BpmRestangular) {
  378. var process = BpmRestangular.all("process");
  379. return {
  380. deploy: function (data) {
  381. return process.customPOST(data, 're/model/deploy', {});
  382. },
  383. list: function () {
  384. return process.customGET('re/model/list');
  385. },
  386. modelsource: function (pdId) {
  387. return process.customGET('re/model/' + pdId + '/source');
  388. },
  389. savemodel: function (pdId, data) {
  390. return process.customPOST(data, 're/model/' + pdId + '/save', {});
  391. },
  392. removemodel: function (modelId) {
  393. return process.customGET('re/model/' + modelId + '/remove');
  394. }
  395. };
  396. }]);
  397. app.factory('WechatRestangularSeimin', ['Restangular', 'ADDRESS', function(Restangular, address) {
  398. return Restangular.withConfig(function(RestangularConfigurer) {
  399. // RestangularConfigurer.setBaseUrl(address.serverIp + address.serverIpPort + address.api + '/common/');
  400. RestangularConfigurer.setBaseUrl(address.serverIp + address.serverIpPort + '/service' + '/common/');
  401. });
  402. }]);
  403. app.factory('api_wechatfile', ['WechatRestangularSeimin', function(WechatRestangularSeimin) {
  404. var dataService = WechatRestangularSeimin.all("common");
  405. return {
  406. listAttachments: function(type, model) {
  407. return dataService.customGET('listAttachment/' + type + "/" + model, {});
  408. // return dataService.one('listAttachment/' + type + "/" + model);
  409. },
  410. downloadAttachment: function(model) {
  411. return dataService.one('downloadAttachment/' + model, {});
  412. },
  413. getDictionary: function(data) {
  414. return dataService.customPOST(data, 'getDictionary', {});
  415. }
  416. };
  417. }]);
  418. app.factory('api_bpm_domain', ['BpmRestangular', 'CommonRestangular', 'WeChatRestangular', 'WeChatApply', function (BpmRestangular, CommonRestangular, WeChatRestangular, WeChatApply) {
  419. var bpmService = BpmRestangular.all("bpm");
  420. var commonService = CommonRestangular.all("common");
  421. var weChatService = WeChatRestangular.all("bpm");
  422. var weChatApply = WeChatApply.all("bpm");
  423. // var bpmService = BpmRestangular.all("common");
  424. return {
  425. fetchtask: function (pdKey, data) {
  426. return bpmService.customPOST(data, 'fetchTask/' + pdKey, {});
  427. },
  428. weChatFetchServiceTasks: function (pdKey, data) {
  429. return weChatApply.customPOST(data, 'fetchServiceTasks/' + pdKey, {});
  430. },
  431. start: function (pdKey, data) {
  432. return bpmService.customPOST(data, 'start/' + pdKey, {});
  433. },
  434. weChatApplyStart: function (pdKey, data) {
  435. return weChatApply.customPOST(data, 'addWxIncident', {});
  436. },
  437. flowTracing: function (processInstanceId, data) {
  438. return bpmService.customPOST(data, 'flowTracing/' + processInstanceId, {});
  439. },
  440. complete: function (taskId, userId, data) {
  441. return bpmService.customPOST(data, 'completeTask/' + taskId + '/' + userId, {});
  442. },
  443. completeUpgrade: function (data) {
  444. return bpmService.customPOST(data, 'upgradeIncident', {});
  445. },
  446. save: function (taskId, data) {
  447. return bpmService.customPOST(data, 'saveTaskVar/' + taskId, {});
  448. },
  449. weChatApplySave: function (taskId, data) {
  450. return weChatApply.customPOST(data, 'addWxIncidentDegree/' + taskId, {});
  451. },
  452. claimtask: function (taskId, data) {
  453. return bpmService.customPOST(data, 'claimTask/' + taskId, {});
  454. },
  455. expectedTime: function (taskId) {
  456. return bpmService.customGET('expectedTime/' + taskId);
  457. },
  458. history: function (processId) {
  459. return bpmService.customGET('history/' + processId);
  460. },
  461. upgrade: function (processInstanceId, taskId, data) {
  462. return bpmService.customPOST(data, 'upgradeIncident/' + processInstanceId + '/' + taskId, {});
  463. },
  464. listAttachments: function (processId, data) {
  465. return bpmService.customPOST(data, 'getAttachmentList/' + processId, {});
  466. },
  467. // saveAttachments: function(processId, taskId, userId, data) {
  468. // return bpmService.one('saveAttachments/' + processId + '/' + taskId + '/' + userId);
  469. // },
  470. saveAttachments: function (processId, taskId, userId, data) {
  471. return weChatService.one('saveAttachments/' + processId + '/' + taskId + '/' + userId);
  472. },
  473. uploadAttachment: function (processId, taskId, userId, data) {
  474. return commonService.one('uploadAttachment/' + 'wechatRequesterIncident/' + processId);
  475. },
  476. download: function (attachmentId) {
  477. return bpmService.one('getAttachmentContent/' + attachmentId);
  478. },
  479. // download: function(attachmentId){
  480. // return bpmService.customGET('getAttachmentContent/' + attachmentId,{},{'responseType':'arraybuffer'});
  481. // },
  482. attachmentsPreviewUrl: function (attachmentId) {
  483. return bpmService.customGET('attachmentsPreviewUrl/' + attachmentId);
  484. },
  485. startformkey: function (pdKey) {
  486. return bpmService.customGET('startformkey/' + pdKey);
  487. },
  488. taskformkey: function (taskId) {
  489. return bpmService.customGET('taskformkey/' + taskId);
  490. },
  491. workernumber: function (type) {
  492. return bpmService.customGET('restful/' + type);
  493. }
  494. };
  495. }]);
  496. app.factory('api_bpm_data', ['BpmRestangular', function (BpmRestangular) {
  497. var dataService = BpmRestangular.all("data");
  498. var serviceCatalogue = BpmRestangular.all("ServiceCatalogue");
  499. var inspectionProcessActual = BpmRestangular.all("InspectionProcessActual");
  500. return {
  501. impFileData: function () {
  502. return dataService.one('/impFileData/bpm_scheduleorder');
  503. },
  504. importData: function () {
  505. return dataService.one('/impFileData');
  506. },
  507. fetchDataList: function (model, data) {
  508. return dataService.customPOST(data, 'fetchDataList/' + model, {});
  509. },
  510. fetchData: function (model, dataId) {
  511. return dataService.customGET('fetchData/' + model + '/' + dataId);
  512. },
  513. fetchServiceTasks: function (model, data) {
  514. if (!model) {
  515. model = "ALL"
  516. }
  517. return serviceCatalogue.customPOST(data, 'fetchServiceTasks/' + model, {});
  518. },
  519. fetchInspectServiceTasks: function (model, data) {
  520. if (!model) {
  521. model = "ALL"
  522. }
  523. return inspectionProcessActual.customPOST(data, 'fetchServiceTasks/' + model, {});
  524. },
  525. addData: function (model, data) {
  526. return dataService.customPOST(data, 'addData/' + model, {});
  527. },
  528. updData: function (model, data) {
  529. return dataService.customPOST(data, 'updData/' + model, {});
  530. },
  531. rmvData: function (model, data) {
  532. return dataService.customPOST(data, 'rmvData/' + model, {});
  533. },
  534. downDataModel: function (type, month) {
  535. return dataService.one('downDataModel/' + type + '/' + month);
  536. }
  537. };
  538. }]);
  539. app.factory('api_bpm_schedule', ['BpmRestangular', function (BpmRestangular) {
  540. var dataService = BpmRestangular.all("data");
  541. return {
  542. getScheduleClass: function () {
  543. var data = {
  544. "idx": "0",
  545. "sum": "10"
  546. };
  547. return dataService.customPOST(data, 'fetchDataList/scheduleclass', {});
  548. },
  549. fetchList: function (startTime, endTime, userId, queryKey) {
  550. var scheduleOrder = {
  551. "scheduleorder": {
  552. "startTime": startTime,
  553. "endTime": endTime
  554. },
  555. "idx": "0",
  556. "sum": "1000"
  557. };
  558. if (userId) {
  559. scheduleOrder['scheduleorder']['user'] = userId;
  560. }
  561. if (queryKey) {
  562. scheduleOrder['scheduleorder']['description'] = queryKey;
  563. }
  564. return dataService.customPOST(scheduleOrder, 'fetchDataList/scheduleorder', {});
  565. },
  566. fetchData: function (dataId) {
  567. return dataService.customGET('fetchData/scheduleorder/' + dataId);
  568. },
  569. update: function (data) {
  570. return dataService.customPOST(data, 'updData/scheduleorder', {});
  571. },
  572. add: function (data) {
  573. return dataService.customPOST(data, 'addData/scheduleorder', {});
  574. },
  575. remove: function (data) {
  576. return dataService.customPOST(data, 'rmvData/scheduleorder', {});
  577. },
  578. fetchSchedule: function (userId, startTime, endTime) {
  579. var scheduleData = {
  580. "schedulewatch": {
  581. "type": "1",
  582. "user": {
  583. "id": userId
  584. },
  585. "startTime": startTime,
  586. "endTime": endTime
  587. },
  588. "idx": "0",
  589. "sum": "100"
  590. };
  591. return dataService.customPOST(scheduleData, 'fetchDataList/schedulewatch', {});
  592. },
  593. queryRecieveSwitch: function (userId) {
  594. var handleSwitch = {
  595. "schedulewatch": {
  596. "type": "3",
  597. "user": {
  598. "id": userId
  599. }
  600. },
  601. "idx": "0",
  602. "sum": "10"
  603. };
  604. return dataService.customPOST(handleSwitch, 'fetchDataList/schedulewatch', {});
  605. },
  606. queryHandleoutSwitch: function (userId) {
  607. var handleSwitch = {
  608. "schedulewatch": {
  609. "type": "2",
  610. "user": {
  611. "id": userId
  612. }
  613. },
  614. "idx": "0",
  615. "sum": "10"
  616. };
  617. return dataService.customPOST(handleSwitch, 'fetchDataList/schedulewatch', {});
  618. },
  619. handleSchedule: function (data) {
  620. return dataService.customPOST(data, 'updData/schedulewatch', {});
  621. },
  622. querySwitch: function (filterData) {
  623. var switchData = {
  624. "scheduleorder": {
  625. "type": "4"
  626. },
  627. "idx": filterData.idx,
  628. "sum": filterData.sum
  629. };
  630. return dataService.customPOST(switchData, 'fetchDataList/scheduleorder', {});
  631. },
  632. query: function (filterData) {
  633. var switchData = {
  634. "scheduleorder": filterData.scheduleorder,
  635. "idx": filterData.idx,
  636. "sum": filterData.sum
  637. };
  638. return dataService.customPOST(switchData, 'fetchDataList/scheduleorder', {});
  639. }
  640. };
  641. }]);
  642. app.factory('SysinfoRestangular', function (Restangular) {
  643. return Restangular.withConfig(function (RestangularConfigurer) {
  644. RestangularConfigurer.setBaseUrl(serverIp + ':9680/api/sysinfo/');
  645. });
  646. });
  647. app.factory('api_sysinfo', ['SysinfoRestangular', function (SysinfoRestangular) {
  648. var dataService = SysinfoRestangular.all("data");
  649. return {
  650. fetchDataList: function (model, data) {
  651. return dataService.customPOST(data, 'fetchDataList/' + model, {});
  652. },
  653. addData: function (model, data) {
  654. return dataService.customPOST(data, 'addData/' + model, {});
  655. },
  656. getSerialnumber: function (type, model) {
  657. return dataService.customGET('getSerialnumber/' + type + '/' + model);
  658. }
  659. };
  660. }]);
  661. app.factory('ConfigureRestangular', ['Restangular', 'ADDRESS', function (Restangular, address) {
  662. return Restangular.withConfig(function (RestangularConfigurer) {
  663. // RestangularConfigurer.setBaseUrl(serverIp + ':9680/api/config/');
  664. // RestangularConfigurer.setBaseUrl(serverIp + '/wechat/config/');
  665. RestangularConfigurer.setBaseUrl(address.serverIp + address.serverIpPort + address.api + '/config/');
  666. });
  667. }]);
  668. app.factory('api_configure_form', ['ConfigureRestangular', function (ConfigureRestangular) {
  669. var formService = ConfigureRestangular.all("form");
  670. return {
  671. renderForm: function (formKey, userId, processInstanceId) {
  672. if (formKey) {
  673. formKey = formKey + '_weChat'
  674. }
  675. if (processInstanceId) {
  676. return formService.customGET('renderForm/' + formKey + "/" + processInstanceId + "/" + userId);
  677. } else {
  678. return formService.customGET('renderForm/' + formKey + "/000000/" + userId);
  679. }
  680. },
  681. renderList: function (formKey) {
  682. return formService.customGET('renderList/' + formKey);
  683. },
  684. renderTabForm: function (classify) {
  685. return formService.customGET('renderTabForm/' + classify);
  686. }
  687. };
  688. }]);
  689. app.factory('api_configure_data', ['ConfigureRestangular', function (ConfigureRestangular) {
  690. var dataService = ConfigureRestangular.all("data");
  691. return {
  692. fetchDataList: function (model, data) {
  693. return dataService.customPOST(data, 'fetchDataList/' + model, {});
  694. },
  695. fetchDataById: function (model, id) {
  696. return dataService.customGET('fetchData/' + id + '/' + model);
  697. },
  698. fetchData: function (model, data) {
  699. return dataService.customPOST(data, 'fetchData/' + model, {});
  700. },
  701. addData: function (model, data) {
  702. return dataService.customPOST(data, 'addData/' + model, {});
  703. },
  704. updData: function (model, data) {
  705. return dataService.customPOST(data, 'updData/' + model, {});
  706. },
  707. downModels: function (type, id, name) {
  708. return dataService.one('export/' + type + '/' + id + '/' + name);
  709. }
  710. };
  711. }]);
  712. app.factory('SolutionRestangular', ['Restangular', 'ADDRESS', function (Restangular, address) {
  713. return Restangular.withConfig(function (RestangularConfigurer) {
  714. //RestangularConfigurer.setBaseUrl('http://168.166.203.41:9000/services');
  715. RestangularConfigurer.setBaseUrl(address.serverIp + address.serverIpPort + address.api);
  716. });
  717. }]);
  718. app.factory('api_solution', ['SolutionRestangular', function (SolutionRestangular) {
  719. var solutionService = SolutionRestangular.all("solution");
  720. var data = SolutionRestangular.all("solutionData");
  721. var history = SolutionRestangular.all("solutionHistory");
  722. var review = SolutionRestangular.all("solution_review");
  723. var typeservice = SolutionRestangular.all("solutionType");
  724. var groupservice = SolutionRestangular.all("solutionGroup");
  725. return {
  726. findSolutionByKeys: function (data) {
  727. var key = data.key,
  728. status = data.status || 0,
  729. pageIndex = data.pageIndex || 0,
  730. pageSum = data.pageSum,
  731. treeIds = data.treeIds,
  732. userId = data.userId;
  733. if (angular.isUndefined(treeIds)) {
  734. return solutionService.customGET('findSolutionByKeys/' + key + '/' + status + '/' + pageIndex + '/' + pageSum + '/' + userId);
  735. } else {
  736. return solutionService.customGET('findSolutionByKeys/' + key + '/' + status + '/' + pageIndex + '/' + pageSum + '/' + treeIds + '/' + userId);
  737. }
  738. },
  739. // searcher: function(data){
  740. // var queryBuilder=data.key, indexname=data.treeIds, type=data.userId;
  741. // return searchservice.customGET('searcher/' + queryBuilder + '/' + indexname + '/' + type );
  742. // },
  743. addSolution: function () {
  744. return solutionService.one('add');
  745. },
  746. addFile: function (data) {
  747. return solutionService.customPOST(data, 'addSolution', {});
  748. },
  749. addModel: function (type, data) {
  750. return solutionService.customPOST(data, 'addModel/' + type, {});
  751. },
  752. updModel: function (type, data) {
  753. return solutionService.customPOST(data, 'updModel/' + type, {});
  754. },
  755. rmModels: function (id, data) {
  756. return solutionService.customPOST(data, 'rmModels/' + id, {});
  757. },
  758. update: function () {
  759. return solutionService.one('update');
  760. },
  761. upload: function () {
  762. return solutionService.one('upload');
  763. },
  764. uploadResponseUri: function () {
  765. return solutionService.one('/');
  766. },
  767. addNotFile: function (data) {
  768. return solutionService.customPOST(data, 'addNotFile', {});
  769. },
  770. updateNotFile: function (data) {
  771. return solutionService.customPOST(data, 'updateNotFile', {});
  772. },
  773. updateSolution: function (data) {
  774. return solutionService.customPOST(data, 'updateSolution', {});
  775. },
  776. searchSolutionByKey: function (key, id) {
  777. return solutionService.customGET('searchSolutionByKey/' + key + '/' + id);
  778. },
  779. findSolutionById: function (id) {
  780. return solutionService.customGET('check/' + id);
  781. },
  782. findSolutions: function (id) {
  783. return solutionService.customGET('check2/' + id);
  784. },
  785. fetchDataList: function (model, data) {
  786. return solutionService.customPOST(data, 'fetchDataList/' + model, {});
  787. },
  788. findSolutionDataByDateById: function (ndate, sid) {
  789. return data.customGET('findSolutionDataByDateById/' + ndate + '/' + sid);
  790. },
  791. findSolutionTypeActions: function (userId) {
  792. return typeservice.customGET('findSolutionTypeActions/' + userId);
  793. },
  794. findSolutionTypesUser: function (data) {
  795. return typeservice.customPOST(data, 'findSolutionTypesUser', {});
  796. },
  797. addTypeUserAll: function (data) {
  798. return typeservice.customPOST(data, 'addTypeUserAll', {});
  799. },
  800. hotRanking: function (num) {
  801. return solutionService.customGET('hotRanking/' + num);
  802. },
  803. scoreRanking: function (num) {
  804. return solutionService.customGET('scoreRanking/' + num);
  805. },
  806. fetchBBSSolutions: function (pageIndex, pageSum, sequence, userId) {
  807. return solutionService.customGET('communicationSolutions/' + pageIndex + '/' + pageSum + '/' + sequence + '/' + userId);
  808. },
  809. queryBBSSolutions: function (pageIndex, pageSum, sequence, userId, key) {
  810. return solutionService.customGET('communicationSolutions/' + pageIndex + '/' + pageSum + '/' + sequence + '/' + userId + '/' + key);
  811. },
  812. updateSolutionStatus: function (data) {
  813. return solutionService.customPOST(data, 'updateSolutionStatus', {});
  814. },
  815. getSolutionNumber: function () {
  816. return solutionService.customGET('getSolutionNumber');
  817. },
  818. addSolutionType: function (data) {
  819. return typeservice.customPOST(data, 'add', {});
  820. },
  821. updateSolutionType: function (data) {
  822. return typeservice.customPOST(data, 'update', {});
  823. },
  824. removeSolutionType: function (id) {
  825. return typeservice.customGET('delete/' + id);
  826. },
  827. getSolutionType: function (id) {
  828. return typeservice.customGET('' + id);
  829. },
  830. getTree: function (typeId, groupId, flag) {
  831. return typeservice.customGET('getTree/' + typeId + '/' + groupId + '/' + flag);
  832. },
  833. checkCommentScoreByUserIds: function (userId, id) {
  834. return review.customGET('findCommentScore/' + userId + '/' + id);
  835. },
  836. addSolutionReview: function (data) {
  837. return solutionService.customPOST(data, 'addScore', {});
  838. },
  839. findSolutionReviewById: function (userid, id, pageIndex, pageSum) {
  840. return solutionService.customGET('findSolutionReviewByType/' + userid + '/' + id + '/' + pageIndex + '/' + pageSum);
  841. },
  842. saveAllUserAuth: function (solutionId, flag) {
  843. return solutionService.customGET('saveAllUserTrees/' + solutionId + '/' + flag);
  844. },
  845. updatermvSolutionType: function (typeId, groupId, userIds, flag) {
  846. return typeservice.customGET('delOrUpdateTrees/' + typeId + '/' + groupId + '/' + userIds + '/' + flag);
  847. },
  848. findSolutionGroup: function (id) {
  849. return groupservice.customGET('findSolutionGroup/' + id);
  850. },
  851. saveSolutionGroup: function (id, data) {
  852. return groupservice.customPOST(data, 'saveSolutionGroup/' + id);
  853. },
  854. // getSolutionDowpath: function(id){
  855. // return solutionService.one('download/'+id);
  856. // }
  857. getSolutionDowpath: function (attachmentId) {
  858. return solutionService.one('download/' + attachmentId + '/file');
  859. }
  860. // getSolutionDowpath: function(attachmentId){
  861. // return solutionService.customGET('download/' + attachmentId);
  862. // }
  863. };
  864. }]);
  865. app.factory('CMDBRestangular', function (Restangular) {
  866. return Restangular.withConfig(function (RestangularConfigurer) {
  867. RestangularConfigurer.setBaseUrl(serverIp + ':9680/api/cmdb/cmdb/');
  868. });
  869. });
  870. app.factory('api_cmdb', ['CMDBRestangular', function (CMDBRestangular) {
  871. var ciService = CMDBRestangular.all("ci");
  872. var uuidService = CMDBRestangular.all("uuid");
  873. var edgeService = CMDBRestangular.all("edge");
  874. var traversal = CMDBRestangular.all("traversal");
  875. var downloadService = CMDBRestangular.all("download");
  876. var exportService = CMDBRestangular.all("export");
  877. var importService = CMDBRestangular.all("import");
  878. var exportModelService = CMDBRestangular.all("exportModel");
  879. var importDataService = CMDBRestangular.all("importData");
  880. var exportDataService = CMDBRestangular.all("exportData");
  881. var searchService = CMDBRestangular.all("search");
  882. function serializeData(data) {
  883. // If this is not an object, defer to native stringification.
  884. if (!angular.isObject(data)) {
  885. return ((data == null) ? "" : data.toString());
  886. }
  887. var buffer = [];
  888. // Serialize each key in the object.
  889. for (var name in data) {
  890. if (!data.hasOwnProperty(name)) {
  891. continue;
  892. }
  893. var value = data[name];
  894. buffer.push(
  895. encodeURIComponent(name) + "=" + encodeURIComponent((value == null) ? "" : value)
  896. );
  897. }
  898. // Serialize the buffer and clean it up for transportation.
  899. var source = buffer.join("&").replace(/%20/g, "+");
  900. return (source);
  901. }
  902. return {
  903. create: function (data) {
  904. return ciService.customPOST(data, '', {});
  905. },
  906. importData: function () {
  907. return importDataService.one('/nodes');
  908. },
  909. put: function (data, id) {
  910. return ciService.customPUT(data, id, {});
  911. },
  912. remove: function (id) {
  913. return ciService.customDELETE(id);
  914. },
  915. removeByUUId: function (uuid) {
  916. return ciService.customDELETE('uuid/' + id, {}, { 'Content-Type': 'application/json' });
  917. },
  918. removeRefById: function (id) {
  919. return ciService.customDELETE(id + '/ref');
  920. },
  921. find: function (id) {
  922. return ciService.customGET(id);
  923. },
  924. searchkey: function (type, key, idx, sum) {
  925. return searchService.customGET(type + '/' + key + '/' + idx + '/' + sum);
  926. },
  927. findByUUId: function (uuid) {
  928. return ciService.customGET('?uuid=' + uuid);
  929. },
  930. query: function (data) {
  931. return ciService.customGET('query', data);
  932. },
  933. findRefById: function (id) {
  934. return ciService.customGET(id + '/refs');
  935. },
  936. finduuid: function (type, model) {
  937. return uuidService.customGET(type + '/' + model);
  938. },
  939. types: function () {
  940. return CMDBRestangular.customGET('types');
  941. },
  942. createRef: function (data) {
  943. return edgeService.customPOST(data, '', {});
  944. },
  945. putRef: function (data, id) {
  946. return edgeService.customPUT(data, '' + id, {});
  947. },
  948. removeRef: function (id) {
  949. return edgeService.customDELETE(id, {}, { 'Content-Type': 'application/json' });
  950. },
  951. traversal: function (uuid) {
  952. return traversal.customGET(uuid);
  953. },
  954. traversalRel: function (uuid, relation) {
  955. return traversal.customGET(uuid + '/' + relation + '/' + 'none');
  956. },
  957. export: function (label) {
  958. return exportService.customGET('nodes/' + label);
  959. },
  960. import: function () {
  961. return importService.one('/nodes');
  962. },
  963. download: function (label) {
  964. return downloadService.one('/label');
  965. },
  966. exportData: function (type, model) {
  967. return exportDataService.one(model + '/' + type);
  968. },
  969. downModels: function (type, model) {
  970. return exportModelService.one(model + '/' + type);
  971. }
  972. };
  973. }]);
  974. app.factory('MonitorRestangular', function (Restangular) {
  975. return Restangular.withConfig(function (RestangularConfigurer) {
  976. RestangularConfigurer.setBaseUrl(serverIp + ':9004/services');
  977. });
  978. });
  979. app.factory('api_monitor', ['MonitorRestangular', function (MonitorRestangular) {
  980. //http://127.0.0.1:9004/services/ftpFile/monitor/bankTip/
  981. var process = MonitorRestangular.all("ftpFile/monitor");
  982. return {
  983. bankTip: function (id) {
  984. return process.customGET('bankTip/' + id);
  985. },
  986. list: function () {
  987. return process.customGET('list/1000');
  988. },
  989. devList: function (id) {
  990. return process.customGET('devList/' + id);
  991. },
  992. cpuList: function () {
  993. return process.customGET('cpuList/10');
  994. },
  995. memList: function () {
  996. return process.customGET('memList/10');
  997. },
  998. storageList: function () {
  999. return process.customGET('storageList/10');
  1000. },
  1001. transData: function () {
  1002. return process.customGET('transData/5');
  1003. },
  1004. banklist: function () {
  1005. return process.customGET('banklist');
  1006. },
  1007. app: function (id) {
  1008. return process.customGET('app/' + id);
  1009. },
  1010. beita: function (id) {
  1011. return process.customGET('beita/' + id);
  1012. },
  1013. gongji: function (id) {
  1014. return process.customGET('gongji/' + id);
  1015. }
  1016. };
  1017. }]);
  1018. app.factory('ReportRestangular', function (Restangular) {
  1019. return Restangular.withConfig(function (RestangularConfigurer) {
  1020. //RestangularConfigurer.setBaseUrl('http://127.0.0.1:9005/api/cmdb/');
  1021. RestangularConfigurer.setBaseUrl(reportIp + ':8080/saiku/rest');
  1022. // RestangularConfigurer.setBaseUrl(serverIp+':8092/saiku/rest');
  1023. //saiku/rest/saiku/api/query/execute/
  1024. });
  1025. });
  1026. app.factory('api_report', ['ReportRestangular', 'Restangular', function (MonitorRestangular, Restangular) {
  1027. var reportService = MonitorRestangular.all("saiku/api");
  1028. var authService = MonitorRestangular.one("saiku/session");
  1029. return {
  1030. getLicenseKey: function () {
  1031. return Restangular.one('assets/').customGET('api/reportToken.js');
  1032. },
  1033. // auth: function(){
  1034. // return authService.customPOST('username=admin&password=admin&language=zh'
  1035. // ,'', {}, {'Content-Type': 'application/x-www-form-urlencoded'});
  1036. // },
  1037. // session: function(){
  1038. // return authService.customGET('');
  1039. // },
  1040. list: function () {
  1041. return reportService.customGET('repository?type=saiku');
  1042. /**
  1043. /saiku/api/repository
  1044. path: /homes/home:admin/itsm_reports
  1045. */
  1046. },
  1047. getMdx: function (path, uuid) {
  1048. var rdata = 'file=' + path + '&formatter=flattened&language=zh';
  1049. return reportService.customPOST(rdata, 'query/' + uuid, {}, { 'Content-Type': 'application/x-www-form-urlencoded' });
  1050. },
  1051. execute: function (data) {
  1052. return reportService.customPOST(data, 'query/execute', {}, { 'Accept': 'application/json, text/javascript, */*' });
  1053. },
  1054. exportData: function (reportView, uuid, reportfileName) {
  1055. return reportService.one('query/rest/export/xls/?exportname=' + reportfileName + 'xls');
  1056. }
  1057. };
  1058. }]);
  1059. //图片展示canvas
  1060. app.directive('ngThumb', ['$window', function ($window) {
  1061. var helper = {
  1062. support: !!($window.FileReader && $window.CanvasRenderingContext2D),
  1063. isFile: function (item) {
  1064. return angular.isObject(item) && item instanceof $window.File;
  1065. },
  1066. isImage: function (file) {
  1067. var type = '|' + file.type.slice(file.type.lastIndexOf('/') + 1) + '|';
  1068. return '|jpg|png|jpeg|bmp|gif|'.indexOf(type) !== -1;
  1069. }
  1070. };
  1071. return {
  1072. restrict: 'A',
  1073. template: '<canvas/>',
  1074. link: function (scope, element, attributes) {
  1075. if (!helper.support) return;
  1076. var params = scope.$eval(attributes.ngThumb);
  1077. if (!helper.isFile(params.file)) return;
  1078. if (!helper.isImage(params.file)) return;
  1079. var canvas = element.find('canvas');
  1080. var reader = new FileReader();
  1081. reader.onload = onLoadFile;
  1082. reader.readAsDataURL(params.file);
  1083. function onLoadFile(event) {
  1084. var img = new Image();
  1085. img.onload = onLoadImage;
  1086. img.src = event.target.result;
  1087. }
  1088. function onLoadImage() {
  1089. var width = params.width || this.width / this.height * params.height;
  1090. var height = params.height || this.height / this.width * params.width;
  1091. canvas.attr({ width: width, height: height });
  1092. canvas[0].getContext('2d').drawImage(this, 0, 0, width, height);
  1093. }
  1094. }
  1095. };
  1096. }]);
  1097. //全局弹框
  1098. app.directive('alertBar', [function () {
  1099. return {
  1100. restrict: 'EA',
  1101. templateUrl: 'assets/views/directives/tpl/alertBar.html',
  1102. scope: {
  1103. message: "=",
  1104. type: "=",
  1105. title: "="
  1106. },
  1107. link: function (scope, element, attrs) {
  1108. scope.hideAlert = function () {
  1109. scope.message = null;
  1110. scope.type = null;
  1111. scope.title = null;
  1112. };
  1113. }
  1114. };
  1115. }]);
  1116. app.factory('TipService', ['$timeout', function ($timeout) {
  1117. return {
  1118. message: null,
  1119. type: null,
  1120. title: null,
  1121. setMessage: function (title, msg, type) {
  1122. this.message = msg;
  1123. this.type = type;
  1124. this.title = title;
  1125. //提示框显示最多3秒消失
  1126. var _self = this;
  1127. // $timeout(function() {
  1128. // _self.clear();
  1129. // }, 3000);
  1130. },
  1131. clear: function () {
  1132. this.message = null;
  1133. this.type = null;
  1134. }
  1135. };
  1136. }]);
  1137. //angular 锚点功能
  1138. app.factory('anchorScroll', function () {
  1139. function toView(element, top, height) {
  1140. var winHeight = $(window).height();
  1141. element = $(element);
  1142. height = height > 0 ? height : winHeight / 10;
  1143. $('html, body').animate({
  1144. scrollTop: top ? (element.offset().top - height) : (element.offset().top + element.outerHeight() + height - winHeight)
  1145. }, {
  1146. duration: 200,
  1147. easing: 'linear',
  1148. complete: function () {
  1149. if (!inView(element)) {
  1150. element[0].scrollIntoView(!!top);
  1151. }
  1152. }
  1153. });
  1154. }
  1155. function inView(element) {
  1156. element = $(element);
  1157. var win = $(window),
  1158. winHeight = win.height(),
  1159. eleTop = element.offset().top,
  1160. eleHeight = element.outerHeight(),
  1161. viewTop = win.scrollTop(),
  1162. viewBottom = viewTop + winHeight;
  1163. function isInView(middle) {
  1164. return middle > viewTop && middle < viewBottom;
  1165. }
  1166. if (isInView(eleTop + (eleHeight > winHeight ? winHeight : eleHeight) / 2)) {
  1167. return true;
  1168. } else if (eleHeight > winHeight) {
  1169. return isInView(eleTop + eleHeight - winHeight / 2);
  1170. } else {
  1171. return false;
  1172. }
  1173. }
  1174. return {
  1175. toView: toView,
  1176. inView: inView
  1177. };
  1178. })
  1179. //过滤时间
  1180. app.filter('filterTime', function () {
  1181. return function (text) {
  1182. var time = text.split(" ");
  1183. return time[0];
  1184. }
  1185. });