Merge pull request #6421 from lcdservices/CRM-16968
[civicrm-core.git] / ang / crmCxn / ManageCtrl.js
1 (function(angular, $, _) {
2
3 angular.module('crmCxn').controller('CrmCxnManageCtrl', function CrmCxnManageCtrl($scope, apiCalls, crmApi, crmUiAlert, crmBlocker, crmStatus, $timeout, dialogService, crmCxnCheckAddr) {
4 var ts = $scope.ts = CRM.ts(null);
5 if (apiCalls.appMetas.is_error) {
6 $scope.appMetas = [];
7 CRM.alert(apiCalls.appMetas.error_message, ts('Application List Unavailable'), 'error');
8 }
9 else {
10 $scope.appMetas = apiCalls.appMetas.values;
11 }
12 $scope.cxns = apiCalls.cxns.values;
13 $scope.alerts = _.where(apiCalls.sysCheck.values, {name: 'checkCxnOverrides'});
14
15 crmCxnCheckAddr(apiCalls.cfg.values.siteCallbackUrl).then(function(response) {
16 if (response.valid) return;
17 crmUiAlert({
18 type: 'warning',
19 title: ts('Internet Access Required'),
20 templateUrl: '~/crmCxn/Connectivity.html',
21 scope: $scope.$new(),
22 options: {expires: false}
23 });
24 });
25
26 $scope.filter = {};
27 var block = $scope.block = crmBlocker();
28
29 _.each($scope.alerts, function(alert){
30 crmUiAlert({text: alert.message, title: alert.title, type: 'error'});
31 });
32
33 // Convert array [x] to x|null|error
34 function asOne(result, msg) {
35 switch (result.length) {
36 case 0:
37 return null;
38 case 1:
39 return result[0];
40 default:
41 throw msg;
42 }
43 }
44
45 $scope.findCxnByAppId = function(appId) {
46 var result = _.where($scope.cxns, {
47 app_guid: appId
48 });
49 return asOne(result, "Error: Too many connections for appId: " + appId);
50 };
51
52 $scope.findAppByAppId = function(appId) {
53 var result = _.where($scope.appMetas, {
54 appId: appId
55 });
56 return asOne(result, "Error: Too many apps for appId: " + appId);
57 };
58
59 $scope.hasAvailApps = function() {
60 // This should usu return after the 1st or 2nd item, but in testing with small# apps, we may exhaust the list.
61 for (var i = 0; i< $scope.appMetas.length; i++) {
62 if (!$scope.findCxnByAppId($scope.appMetas[i].appId)) {
63 return true;
64 }
65 }
66 return false;
67 };
68
69 $scope.refreshCxns = function() {
70 crmApi('Cxn', 'get', {sequential: 1}).then(function(result) {
71 $timeout(function(){
72 $scope.cxns = result.values;
73 });
74 });
75 };
76
77 $scope.register = function(appMeta) {
78 var reg = crmApi('Cxn', 'register', {app_guid: appMeta.appId}).then($scope.refreshCxns);
79 return block(crmStatus({start: ts('Connecting...'), success: ts('Connected')}, reg));
80 };
81
82 $scope.reregister = function(appMeta) {
83 var reg = crmApi('Cxn', 'register', {app_guid: appMeta.appId}).then($scope.refreshCxns);
84 return block(crmStatus({start: ts('Reconnecting...'), success: ts('Reconnected')}, reg));
85 };
86
87 $scope.unregister = function(appMeta) {
88 var reg = crmApi('Cxn', 'unregister', {app_guid: appMeta.appId, debug: 1}).then($scope.refreshCxns);
89 return block(crmStatus({start: ts('Disconnecting...'), success: ts('Disconnected')}, reg));
90 };
91
92 $scope.toggleCxn = function toggleCxn(cxn) {
93 var reg = crmApi('Cxn', 'create', {id: cxn.id, is_active: !cxn.is_active, debug: 1}).then(function(){
94 cxn.is_active = !cxn.is_active;
95 });
96 return block(crmStatus({start: ts('Saving...'), success: ts('Saved')}, reg));
97 };
98
99 $scope.openLink = function openLink(appMeta, page, options) {
100 var promise = crmApi('Cxn', 'getlink', {app_guid: appMeta.appId, page: page}).then(function(result) {
101 var mode = result.values.mode ? result.values.mode : 'popup';
102 switch (result.values.mode) {
103 case 'iframe':
104 var passThrus = ['height', 'width']; // Options influenced by remote server.
105 options = angular.extend(_.pick(result.values, passThrus), options);
106 $scope.openIframe(result.values.url, options);
107 break;
108 case 'popup':
109 CRM.alert(ts('The page "%1" will open in a popup. If it does not appear automatically, check your browser for notifications.', {1: options.title}), '', 'info');
110 window.open(result.values.url, 'cxnSettings', 'resizable,scrollbars,status');
111 break;
112 case 'redirect':
113 window.location = result.values.url;
114 break;
115 default:
116 CRM.alert(ts('Cannot open link. Unrecognized mode.'), '', 'error');
117 }
118 });
119 return block(crmStatus({start: ts('Opening...'), success: ''}, promise));
120 };
121
122 // @param Object options -- see dialogService.open
123 $scope.openIframe = function openIframe(url, options) {
124 var model = {
125 url: url
126 };
127 options = CRM.utils.adjustDialogDefaults(angular.extend(
128 {
129 autoOpen: false,
130 height: 'auto',
131 width: '40%',
132 title: ts('External Link')
133 },
134 options
135 ));
136 return dialogService.open('cxnLinkDialog', '~/crmCxn/LinkDialogCtrl.html', model, options)
137 .then(function(item) {
138 mailing.msg_template_id = item.id;
139 return item;
140 });
141 };
142 });
143
144 })(angular, CRM.$, CRM._);