Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • feature/migrate-cordova-13
  • feat/improve-network-scan
  • feat/force-migration-check
  • develop
  • feature/encrypted_comment
  • feature/android_api_19
  • gitlab_migration_1
  • rml8
  • v1.7.14
  • v1.7.13
  • v1.7.12
  • v1.7.11
  • v1.7.10
  • v1.7.9
  • v1.7.8
  • v1.7.7
  • v1.7.6
  • v1.7.5
  • v1.7.4
  • v1.7.3
  • v1.7.2
  • v1.7.1
  • v1.7.0
  • v1.7.0-rc2
  • v1.7.0-rc1
  • v1.6.12
  • v1.6.11
  • v1.6.10
29 results

app-controllers.js

Blame
  • app-controllers.js 15.82 KiB
    angular.module('cesium.app.controllers', ['cesium.platform', 'cesium.services'])
    
      .config(function($stateProvider, $urlRouterProvider) {
        'ngInject';
    
        $stateProvider
    
          .state('app', {
            url: "/app",
            abstract: true,
            templateUrl: "templates/menu.html",
            controller: 'AppCtrl',
            data: {
              large: false
            }
          })
    
          .state('app.home', {
            url: "/home?error",
            views: {
              'menuContent': {
                templateUrl: "templates/home/home.html",
                controller: 'HomeCtrl'
              }
            }
          })
    
          .state('app.lock', {
            cache: false,
            url: "/lock",
            views: {
              'menuContent': {
                templateUrl: "templates/common/view_passcode.html",
                controller: 'PassCodeCtrl'
              }
            }
          })
        ;
    
        // if none of the above states are matched, use this as the fallback
        $urlRouterProvider.otherwise('/app/home');
    
      })
    
      .controller('AppCtrl', AppController)
    
      .controller('HomeCtrl', HomeController)
    
      .controller('PluginExtensionPointCtrl', PluginExtensionPointController)
    
    
    
    ;
    
    /**
     * Useful controller that could be reuse in plugin, using $scope.extensionPoint for condition rendered in templates
     */
    function PluginExtensionPointController($scope, PluginService) {
      'ngInject';
      $scope.extensionPoint = PluginService.extensions.points.current.get();
    }
    
    /**
     * Abstract controller (inherited by other controllers)
     */
    function AppController($scope, $rootScope, $state, $ionicSideMenuDelegate, $q, $timeout,
                           $ionicHistory, $controller, $window, csPlatform, CryptoUtils,
                           UIUtils, BMA, csWallet, Device, Modals, csConfig, csHttp
    ) {
      'ngInject';
    
      $scope.search = {};
      $scope.login = csWallet.isLogin();
      $scope.auth = csWallet.isAuth();
      $scope.motion = UIUtils.motion.default;
    
      $scope.showHome = function() {
        $ionicHistory.nextViewOptions({
          historyRoot: true
        });
        return $state.go('app.home')
          .then(UIUtils.loading.hide);
      };
    
      // removeIf(no-device)
      ////////////////////////////////////////
      // Device only methods
      // (code removed when NO device)
      ////////////////////////////////////////
    
      function parseWIF_or_EWIF(data, options) {
        options = options || {};
        options.withSecret = angular.isDefined(options.withSecret) && options.withSecret || true;
        options.password = function() {
            UIUtils.loading.hide();
            return Modals.showPassword({
                title: 'ACCOUNT.SECURITY.KEYFILE.PASSWORD_POPUP.TITLE',
                subTitle: 'ACCOUNT.SECURITY.KEYFILE.PASSWORD_POPUP.HELP',
                error: options.error,
                scope: $scope
              })
              .then(function(password) {
                // Timeout is need to force popup to be hide
                return $timeout(function() {
                  if (password) UIUtils.loading.show();
                  return password;
                }, 150);
              });
          };
    
        UIUtils.loading.show();
    
        return csCrypto.keyfile.parseWIF_or_EWIF(data, options)
          .catch(function(err) {
            if (err && err == 'CANCELLED') return;
            if (err && err.ucode == csCrypto.errorCodes.BAD_PASSWORD) {
              // recursive call
              return parseWIF_or_EWIF(data, {withSecret: options.withSecret, error: 'ACCOUNT.SECURITY.KEYFILE.ERROR.BAD_PASSWORD'});
            }
            console.error("[app] Unable to parse as WIF or EWIF format: " + (err && err.message || err));
            throw err; // rethrow
          });
      }
    
    
      $scope.scanQrCodeAndGo = function() {
    
        if (!Device.barcode.enable) return;
    
        // Run scan cordova plugin, on device
        return Device.barcode.scan()
          .then(function(data) {
            if (!data) return;
    
            // Try to parse as an URI
            return BMA.uri.parse(data)
              .then(function(res){
                if (!res || res.pubkey) throw {message: 'ERROR.SCAN_UNKNOWN_FORMAT'};
                // If pubkey: open the identity
                return $state.go('app.wot_identity', {
                  pubkey: res.pubkey,
                  node: res.host ? res.host: null}
                );
              })
    
              // Not an URI: try WIF or EWIF format
              .catch(function(err) {
                console.debug("[app] Scan data is not an URI (get error: " + (err && err.message || err) + "). Trying to decode as a WIF or EWIF format...");
    
                // Try to read as WIF format
                return parseWIF_or_EWIF(data)
                  .then(function(keypair) {
                    if (!keypair || !keypair.signPk || !keypair.signSk) throw err; // rethrow the first error (e.g. Bad URI)
    
                    // User already logged
                    if (csWallet.isLogin()) {
                      // Open a temporary wallet
                      var wallet = csWallet.instance('WIF');
                      csWallet.children.add(wallet);
                      return wallet.login({
                        forceAuth: true,
                        minData: false,
                        authData: {
                          pubkey: CryptoUtils.base58.encode(keypair.signPk),
                          keypair: keypair
                        }
                      })
                      .then(function () {
                        // Transfer all wallet
                        return $state.go('app.new_transfer', {
                          all: true,
                          wallet: wallet.id
                        });
                      });
                    }
                    // TODO: Use a temporary wallet ?
                    // var wallet = csWallet.instance('WIF');
                    // return wallet.login(...)
    
                    return csWallet.login({
                        forceAuth: true,
                        minData: false,
                        authData: {
                          pubkey: CryptoUtils.base58.encode(keypair.signPk),
                          keypair: keypair
                        }
                      })
                      .then(function () {
                        // Transfer all wallet
                        return $state.go('app.new_transfer', {all: true});
                      });
    
                  })
                  // Unknown format (nor URI, nor WIF/EWIF)
                  .catch(UIUtils.onError('ERROR.SCAN_UNKNOWN_FORMAT'));
              });
          })
          .catch(UIUtils.onError('ERROR.SCAN_FAILED'));
      };
    
      ////////////////////////////////////////
      // End of device only methods
      ////////////////////////////////////////
      // endRemoveIf(no-device)
    
      ////////////////////////////////////////
      // Show Help tour
      ////////////////////////////////////////
    
      $scope.createHelptipScope = function(isTour, helpController) {
        if (!isTour && ($rootScope.tour || !$rootScope.settings.helptip.enable || UIUtils.screen.isSmall())) {
          return; // avoid other helptip to be launched (e.g. csWallet)
        }
        // Create a new scope for the tour controller
        var helptipScope = $scope.$new();
        $controller(helpController||'HelpTipCtrl', { '$scope': helptipScope});
        return helptipScope;
      };
    
      $scope.startHelpTour = function(helpController, skipClearCache) {
        $rootScope.tour = true; // to avoid other helptip to be launched (e.g. csWallet)
    
        // Clear cache history
        if (!skipClearCache) {
          $ionicHistory.clearHistory();
          return $ionicHistory.clearCache()
            .then(function() {
              $scope.startHelpTour(helpController, true/*continue*/);
            });
        }
    
        var helptipScope = $scope.createHelptipScope(true/*is tour*/, helpController);
        return helptipScope.startHelpTour()
          .then(function() {
            helptipScope.$destroy();
            delete $rootScope.tour;
          })
          .catch(function(err){
            delete $rootScope.tour;
          });
      };
    
      ////////////////////////////////////////
      // Login & wallet
      ////////////////////////////////////////
    
      $scope.isLogin = function() {
        return $scope.login;
      };
    
      // Load wallet data (after login)
      $scope.loadWalletData = function(options) {
        options = options || {};
        var wallet = options.wallet || csWallet;
        return wallet.loadData(options)
    
          .then(function(walletData) {
            // cancel login
            if (!walletData) throw 'CANCELLED';
            return walletData;
          });
      };
    
      // Login and load wallet
      $scope.loadWallet = function(options) {
    
        // Make sure the platform is ready
        if (!csPlatform.isStarted()) {
          return csPlatform.ready().then(function(){
            return $scope.loadWallet(options);
          });
        }
    
        options = options || {};
    
        var wallet = options.wallet || csWallet;
    
        // If need auth
        if (options.auth && !wallet.isAuth()) {
          return wallet.auth(options)
            .then(function (walletData) {
              if (walletData) return walletData;
              // failed to auth
              throw 'CANCELLED';
            });
        }
    
        // If need login
        else if (!wallet.isLogin()) {
          return wallet.login(options)
            .then(function (walletData) {
              if (walletData) return walletData;
              // failed to login
              throw 'CANCELLED';
            });
        }
    
        // Already login or auth
        else if (!wallet.isDataLoaded(options)) {
          return $scope.loadWalletData(options);
        }
        else {
          return $q.when(wallet.data);
        }
      };
    
      // Login and go to a state (or wallet if not)
      $scope.loginAndGo = function(state, options) {
        $scope.closeProfilePopover();
    
        state = state || 'app.view_wallet';
    
        if (!csWallet.isLogin()) {
    
          // Make sure to protect login modal, if HTTPS enable - fix #340
          if (csConfig.httpsMode && $window.location && $window.location.protocol !== 'https:') {
            var href = $window.location.href;
            var hashIndex = href.indexOf('#');
            var rootPath = (hashIndex != -1) ? href.substr(0, hashIndex) : href;
            rootPath = 'https' + rootPath.substr(4);
            href = rootPath + $state.href(state);
            if (csConfig.httpsModeDebug) {
              console.debug('[httpsMode] --- Should redirect to: ' + href);
              // continue
            }
            else {
              $window.location.href = href;
              return;
            }
    
          }
    
          return csWallet.login(options)
            .then(function(){
              return $state.go(state, options);
            })
            .then(UIUtils.loading.hide);
        }
        else {
          return $state.go(state, options);
        }
      };
    
      // Logout
      $scope.logout = function(options) {
        options = options || {};
        if (!options.force && $scope.profilePopover) {
          // Make the popover if really closed, to avoid UI refresh on popover buttons
          return $scope.profilePopover.hide()
            .then(function(){
              options.force = true;
              return $scope.logout(options);
            });
        }
        if (options.askConfirm) {
          return UIUtils.alert.confirm('CONFIRM.LOGOUT')
            .then(function(confirm) {
              if (confirm) {
                options.askConfirm=false;
                return $scope.logout(options);
              }
            });
        }
    
        UIUtils.loading.show();
        return csWallet.logout()
          .then(function() {
            // Close left menu if open
            if ($ionicSideMenuDelegate.isOpenLeft()) {
              $ionicSideMenuDelegate.toggleLeft();
            }
            $ionicHistory.clearHistory();
    
            return $ionicHistory.clearCache()
              .then(function() {
                return $scope.showHome();
              });
          })
          .catch(UIUtils.onError());
      };
    
      // Login and go to a state (or wallet if not)
      $scope.doAuth = function() {
        return $scope.loadWallet({auth: true})
          .then(function() {
            UIUtils.loading.hide();
          });
      };
    
      // If connected and same pubkey
      $scope.isUserPubkey = function(pubkey) {
        return csWallet.isUserPubkey(pubkey);
      };
    
      // add listener on wallet event
      csWallet.api.data.on.login($scope, function(walletData, deferred) {
        $scope.login = true;
        $rootScope.walletData = walletData || {};
        return deferred ? deferred.resolve() : $q.when();
      });
      csWallet.api.data.on.logout($scope, function() {
        $scope.login = false;
        $rootScope.walletData = {};
      });
      csWallet.api.data.on.auth($scope, function(data, deferred) {
        deferred = deferred || $q.defer();
        $scope.auth = true;
        deferred.resolve();
        return deferred.promise;
      });
      csWallet.api.data.on.unauth($scope, function() {
        $scope.auth = false;
      });
    
      ////////////////////////////////////////
      // Useful modals
      ////////////////////////////////////////
    
      // Open transfer modal
      $scope.showTransferModal = function(parameters) {
        return Modals.showTransfer(parameters);
      };
    
      $scope.showAboutModal = function() {
        return Modals.showAbout();
      };
    
      $scope.showJoinModal = function() {
        $scope.closeProfilePopover();
        return Modals.showJoin();
      };
    
      $scope.showSettings = function() {
        $scope.closeProfilePopover();
        return $state.go('app.settings');
      };
    
      $scope.showHelpModal = function(parameters) {
        return Modals.showHelp(parameters);
      };
    
    
      ////////////////////////////////////////
      // Useful popovers
      ////////////////////////////////////////
    
      $scope.showProfilePopover = function(event) {
        return UIUtils.popover.show(event, {
          templateUrl :'templates/common/popover_profile.html',
          scope: $scope,
          autoremove: true,
          afterShow: function(popover) {
            $scope.profilePopover = popover;
            $timeout(function() {
              UIUtils.ink({selector: '#profile-popover .ink, #profile-popover .ink-dark'});
            }, 100);
          }
        });
      };
    
      $scope.closeProfilePopover = function() {
        if ($scope.profilePopover && $scope.profilePopover.isShown()) {
          $timeout(function(){$scope.profilePopover.hide();});
        }
      };
      // Change peer info
      $scope.showPeerInfoPopover = function(event) {
        return UIUtils.popover.show(event, {
          templateUrl: 'templates/network/popover_peer_info.html',
          autoremove: true,
          scope: $scope.$new(true)
        });
      };
    
      ////////////////////////////////////////
      // Link managment (fix issue #)
      ////////////////////////////////////////
    
      $scope.openLink = function($event, uri, options) {
        options = options || {};
    
        // If unable to open, just copy value
        options.onError = function() {
          return UIUtils.popover.copy($event, uri);
        };
    
        $event.stopPropagation();
        return csHttp.uri.open(uri, options);
      };
    
      ////////////////////////////////////////
      // Layout Methods
      ////////////////////////////////////////
      $scope.showFab = function(id, timeout) {
        UIUtils.motion.toggleOn({selector: '#'+id + '.button-fab'}, timeout);
      };
    
      $scope.hideFab = function(id, timeout) {
        UIUtils.motion.toggleOff({selector: '#'+id + '.button-fab'}, timeout);
      };
    
      // Could be override by subclass
      $scope.doMotion = function(options) {
        return $scope.motion.show(options);
      };
    
    }
    
    
    function HomeController($scope, $state, $timeout, $ionicHistory, csPlatform, csCurrency) {
      'ngInject';
    
      $scope.loading = true;
    
      $scope.enter = function(e, state) {
        if (state && state.stateParams && state.stateParams.error) { // Query parameter
          $scope.error = state.stateParams.error;
          $scope.node = csCurrency.data.node;
          $scope.loading = false;
          $ionicHistory.nextViewOptions({
            disableAnimate: true,
            disableBack: true,
            historyRoot: true
          });
          $state.go('app.home', {error: undefined}, {
            reload: false,
            inherit: true,
            notify: false});
        }
        else {
          // Start platform
          csPlatform.ready()
            .then(function() {
              $scope.loading = false;
            })
            .catch(function(err) {
              $scope.node =  csCurrency.data.node;
              $scope.loading = false;
              $scope.error = err;
            });
        }
      };
      $scope.$on('$ionicView.enter', $scope.enter);
    
      $scope.reload = function() {
        $scope.loading = true;
        delete $scope.error;
    
        $timeout($scope.enter, 200);
      };
    
      /**
       * Catch click for quick fix
       * @param event
       */
      $scope.doQuickFix = function(event) {
        if (event == 'settings') {
          $ionicHistory.nextViewOptions({
            historyRoot: true
          });
          $state.go('app.settings');
        }
      };
    
      // For DEV ONLY
      /*$timeout(function() {
       $scope.loginAndGo();
       }, 500);*/
    }