SyncConfigController.js 12.8 KB
Newer Older
L
lepdou 已提交
1
sync_item_module.controller("SyncItemController",
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
                            ['$scope', '$location', '$window', 'toastr', 'AppService', 'AppUtil', 'ConfigService',
                             function ($scope, $location, $window, toastr, AppService, AppUtil, ConfigService) {

                                 var params = AppUtil.parseParams($location.$$url);
                                 $scope.pageContext = {
                                     appId: params.appid,
                                     env: params.env,
                                     clusterName: params.clusterName,
                                     namespaceName: params.namespaceName
                                 };
                                 var sourceItems = [];

                                 $scope.syncBtnDisabled = false;
                                 $scope.viewItems = [];

                                 $scope.toggleItemsCheckedStatus = toggleItemsCheckedStatus;
                                 $scope.diff = diff;
                                 $scope.removeItem = removeItem;
                                 $scope.syncItems = syncItems;
                                 $scope.collectSelectedClusters = collectSelectedClusters;

                                 $scope.syncItemNextStep = syncItemNextStep;
                                 $scope.backToAppHomePage = backToAppHomePage;
                                 $scope.switchSelect = switchSelect;

                                 $scope.filter = filter;
                                 $scope.resetFilter = resetFilter;
                                 
                                 $scope.showText = showText;

                                 init();

                                 function init() {
                                     ////// load items //////
                                     ConfigService.find_items($scope.pageContext.appId, $scope.pageContext.env,
                                                              $scope.pageContext.clusterName,
                                                              $scope.pageContext.namespaceName,
                                                              "lastModifiedTime")
                                         .then(function (result) {

                                             sourceItems = [];
                                             result.forEach(function (item) {
                                                 if (item.key) {
                                                     item.checked = false;
                                                     sourceItems.push(item);
                                                 }
                                             });

                                             $scope.viewItems = sourceItems;
                                             $(".apollo-container").removeClass("hidden");
                                         }, function (result) {
                                             toastr.error(AppUtil.errorMsg(result), "加载配置出错");
                                         });
                                 }

                                 var itemAllSelected = false;

                                 function toggleItemsCheckedStatus() {
                                     itemAllSelected = !itemAllSelected;
                                     $scope.viewItems.forEach(function (item) {
                                         item.checked = itemAllSelected;
                                     })
                                 }

                                 var syncData = {
                                     syncToNamespaces: [],
                                     syncItems: []
                                 };

                                 function diff() {
                                     parseSyncSourceData();
                                     if (syncData.syncItems.length == 0) {
                                         toastr.warning("请选择需要同步的配置");
                                         return;
                                     }
                                     if (syncData.syncToNamespaces.length == 0) {
                                         toastr.warning("请选择集群");
                                         return;
                                     }
                                     $scope.hasDiff = false;
                                     ConfigService.diff($scope.pageContext.namespaceName, syncData).then(
                                         function (result) {

                                             $scope.clusterDiffs = result;

                                             $scope.clusterDiffs.forEach(function (clusterDiff) {
                                                 if (!$scope.hasDiff) {
                                                     $scope.hasDiff =
                                                         clusterDiff.diffs.createItems.length
                                                         + clusterDiff.diffs.updateItems.length
                                                         > 0;
                                                 }

                                                 if (clusterDiff.diffs.updateItems.length > 0) {
                                                     //赋予同步前的值
                                                     ConfigService.find_items(clusterDiff.namespace.appId,
                                                                              clusterDiff.namespace.env,
                                                                              clusterDiff.namespace.clusterName,
                                                                              clusterDiff.namespace.namespaceName)
                                                         .then(function (result) {
                                                             var oldItemMap = {};
                                                             result.forEach(function (item) {
                                                                 oldItemMap[item.key] = item.value;
                                                             });
                                                             clusterDiff.diffs.updateItems.forEach(function (item) {
                                                                 item.oldValue = oldItemMap[item.key];
                                                             })
                                                         });
                                                 }

                                             });
                                             $scope.syncItemNextStep(1);
                                         }, function (result) {
                                             toastr.error(AppUtil.errorMsg(result));
                                         });
                                 }

                                 function removeItem(diff, type, toRemoveItem) {
                                     var syncDataResult = [],
                                         diffSetResult = [],
                                         diffSet;
                                     if (type == 'create') {
                                         diffSet = diff.createItems;
                                     } else {
                                         diffSet = diff.updateItems;
                                     }
                                     diffSet.forEach(function (item) {
                                         if (item.key != toRemoveItem.key) {
                                             diffSetResult.push(item);
                                         }
                                     });
                                     if (type == 'create') {
                                         diff.createItems = diffSetResult;
                                     } else {
                                         diff.updateItems = diffSetResult;
                                     }

                                     syncData.syncItems.forEach(function (item) {
                                         if (item.key != toRemoveItem.key) {
                                             syncDataResult.push(item);
                                         }
                                     });
                                     syncData.syncItems = syncDataResult;
                                 }

                                 function syncItems() {
                                     $scope.syncBtnDisabled = true;
                                     ConfigService.sync_items($scope.pageContext.appId,
                                                              $scope.pageContext.namespaceName,
                                                              syncData).then(function (result) {
                                         $scope.syncItemStep += 1;
                                         $scope.syncSuccess = true;
                                         $scope.syncBtnDisabled = false;
                                     }, function (result) {
                                         $scope.syncSuccess = false;
                                         $scope.syncBtnDisabled = false;
                                         toastr.error(AppUtil.errorMsg(result));
                                     });
                                 }

                                 var selectedClusters = [];

                                 function collectSelectedClusters(data) {
                                     selectedClusters = data;
                                 }

                                 function parseSyncSourceData() {
                                     syncData = {
                                         syncToNamespaces: [],
                                         syncItems: []
                                     };
                                     var namespaceName = $scope.pageContext.namespaceName;
                                     selectedClusters.forEach(function (cluster) {
                                         if (cluster.checked) {
                                             cluster.clusterName = cluster.name;
                                             cluster.namespaceName = namespaceName;
                                             syncData.syncToNamespaces.push(cluster);
                                         }
                                     });

                                     $scope.viewItems.forEach(function (item) {
                                         if (item.checked) {
                                             syncData.syncItems.push(item);
                                         }
                                     });
                                     return syncData;
                                 }

                                 ////// flow control ///////

                                 $scope.syncItemStep = 1;
                                 function syncItemNextStep(offset) {
                                     $scope.syncItemStep += offset;
                                 }

                                 function backToAppHomePage() {
                                     $window.location.href = '/config.html?#appid=' + $scope.pageContext.appId;
                                 }

                                 function switchSelect(o) {
                                     o.checked = !o.checked;
                                 }

                                 function filter() {
                                     var beginTime = $scope.filterBeginTime;
                                     var endTime = $scope.filterEndTime;

                                     var result = [];
                                     sourceItems.forEach(function (item) {
                                         var updateTime = new Date(item.dataChangeLastModifiedTime);
                                         if ((!beginTime || updateTime > beginTime)
                                             && (!endTime || updateTime < endTime)) {
                                             result.push(item);
                                         }
                                     });

                                     $scope.viewItems = result;
                                 }

                                 function resetFilter() {
                                     $scope.filterBeginTime = null;
                                     $scope.filterEndTime = null;
                                     filter();
                                 }

                                 function showText(text) {
                                     $scope.text = text;
                                     AppUtil.showModal('#showTextModal');
                                 }


                             }]);
L
lepdou 已提交
234