summaryrefslogtreecommitdiffstats
path: root/docs/submodules/availability
AgeCommit message (Expand)AuthorFilesLines
2018-07-06Update git submodulesAric Gardner1-0/+0
2018-03-23Update git submodulesfuqiao1-0/+0
2018-03-23Update git submodulesfuqiao1-0/+0
2018-03-23Update git submodulesQiao Fu1-0/+0
2018-03-15Update git submodulesfuqiao1-0/+0
2017-10-26Update git submodulesrpaik1-0/+0
2017-09-14Update git submodulesfuqiao1-0/+0
2017-09-14Update git submodulesQiao Fu1-0/+0
2017-05-19Update git submodulesQiao Fu1-0/+0
2017-05-02Update git submodulesRay Paik1-0/+0
2017-03-30Update git submodulesfuqiao1-0/+0
2017-03-30Update git submodulesfuqiao1-0/+0
2017-03-30Update git submodulesfuqiao1-0/+0
2017-03-30Update git submodulesgwaines1-0/+0
2017-03-23Updating HEAD's of submodulesShubhamRathi1-0/+0
2017-03-15Updating submodules & add openretrieverShubhamRathi1-0/+0
2017-01-11Add submodules and .gitmoduleShubhamRathi1-0/+0
ht .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
'use strict';

angular.module('yardStickGui2App')
    .controller('ImageController', ['$scope', '$state', '$stateParams', 'mainFactory', 'Upload', 'toaster', '$location', '$interval',
        function($scope, $state, $stateParams, mainFactory, Upload, toaster, $location, $interval) {


            init();
            $scope.showloading = false;
            $scope.ifshowStatus = 0;

            function init() {


                $scope.uuid = $stateParams.uuid;
                $scope.uploadImage = uploadImage;
                getItemIdDetail();
                getImageListSimple();
            }

            function getItemIdDetail() {
                mainFactory.ItemDetail().get({
                    'envId': $stateParams.uuid
                }).$promise.then(function(response) {
                    if (response.status == 1) {
                        $scope.baseElementInfo = response.result.environment;


                    } else {
                        toaster.pop({
                            type: 'error',
                            title: 'fail',
                            body: response.error_msg,
                            timeout: 3000
                        });
                    }
                }, function(error) {
                    toaster.pop({
                        type: 'error',
                        title: 'fail',
                        body: 'unknow error',
                        timeout: 3000
                    });
                })
            }

            function getImageListSimple() {

                mainFactory.ImageList().get({}).$promise.then(function(response) {
                    if (response.status == 1) {
                        $scope.imageListData = response.result.images;
                        // $scope.imageStatus = response.result.status;

                    } else {
                        toaster.pop({
                            type: 'error',
                            title: 'get data failed',
                            body: 'please retry',
                            timeout: 3000
                        });
                    }
                }, function(error) {
                    toaster.pop({
                        type: 'error',
                        title: 'get data failed',
                        body: 'please retry',
                        timeout: 3000
                    });
                })
            }


            function getImageList() {
                if ($scope.intervalImgae != undefined) {
                    $interval.cancel($scope.intervalImgae);
                }
                mainFactory.ImageList().get({}).$promise.then(function(response) {
                    if (response.status == 1) {
                        $scope.imageListData = response.result.images;
                        $scope.imageStatus = response.result.status;

                        if ($scope.imageStatus == 0) {
                            $scope.intervalImgae = $interval(function() {
                                getImageList();
                            }, 5000);
                        } else if ($scope.intervalImgae != undefined) {
                            $interval.cancel($scope.intervalImgae);
                        }

                    } else {
                        toaster.pop({
                            type: 'error',
                            title: 'get data failed',
                            body: 'please retry',
                            timeout: 3000
                        });
                    }
                }, function(error) {
                    toaster.pop({
                        type: 'error',
                        title: 'get data failed',
                        body: 'please retry',
                        timeout: 3000
                    });
                })
            }

            function uploadImage() {
                $scope.imageStatus = 0;
                $interval.cancel($scope.intervalImgae);
                $scope.ifshowStatus = 1;
                $scope.showloading = true;
                mainFactory.uploadImage().post({
                    'action': 'load_image',
                    'args': {
                        'environment_id': $scope.uuid

                    }
                }).$promise.then(function(response) {
                    $scope.showloading = false;
                    if (response.status == 1) {
                        toaster.pop({
                            type: 'success',
                            title: 'create success',
                            body: 'you can go next step',
                            timeout: 3000
                        });
                        setTimeout(function() {
                            getImageList();
                        }, 10000);

                    } else {
                        toaster.pop({
                            type: 'error',
                            title: 'failed',
                            body: 'something wrong',
                            timeout: 3000
                        });

                    }
                }, function(error) {
                    toaster.pop({
                        type: 'error',
                        title: 'failed',
                        body: 'something wrong',
                        timeout: 3000
                    });
                })
            }

            $scope.goBack = function goBack() {
                $state.go('app.projectList');
            }

            $scope.goNext = function goNext() {
                $scope.path = $location.path();
                $scope.uuid = $scope.path.split('/').pop();
                $state.go('app.podUpload', { uuid: $scope.uuid });
            }





        }
    ]);