| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- define([
- 'angular',
- 'config',
- ],
- function (angular, config) {
- 'use strict';
- var module = angular.module('grafana.controllers');
- module.controller('LoginCtrl', function($scope, backendSrv, contextSrv) {
- $scope.formModel = {
- user: '',
- email: '',
- password: '',
- };
- contextSrv.setSideMenuState(false);
- $scope.googleAuthEnabled = config.googleAuthEnabled;
- $scope.githubAuthEnabled = config.githubAuthEnabled;
- $scope.disableUserSignUp = config.disableUserSignUp;
- $scope.loginMode = true;
- $scope.submitBtnClass = 'btn-inverse';
- $scope.submitBtnText = 'Log in';
- $scope.strengthClass = '';
- $scope.init = function() {
- $scope.$watch("loginMode", $scope.loginModeChanged);
- $scope.passwordChanged();
- };
- // build info view model
- $scope.buildInfo = {
- version: config.buildInfo.version,
- commit: config.buildInfo.commit,
- buildstamp: new Date(config.buildInfo.buildstamp * 1000)
- };
- $scope.submit = function() {
- if ($scope.loginMode) {
- $scope.login();
- } else {
- $scope.signUp();
- }
- };
- $scope.loginModeChanged = function(newValue) {
- $scope.submitBtnText = newValue ? 'Log in' : 'Sign up';
- };
- $scope.passwordChanged = function(newValue) {
- if (!newValue) {
- $scope.strengthText = "";
- $scope.strengthClass = "hidden";
- return;
- }
- if (newValue.length < 4) {
- $scope.strengthText = "strength: weak sauce.";
- $scope.strengthClass = "password-strength-bad";
- return;
- }
- if (newValue.length <= 6) {
- $scope.strengthText = "strength: you can do better.";
- $scope.strengthClass = "password-strength-ok";
- return;
- }
- $scope.strengthText = "strength: strong like a bull.";
- $scope.strengthClass = "password-strength-good";
- };
- $scope.signUp = function() {
- if (!$scope.loginForm.$valid) {
- return;
- }
- backendSrv.post('/api/user/signup', $scope.formModel).then(function() {
- window.location.href = config.appSubUrl + '/';
- });
- };
- $scope.login = function() {
- delete $scope.loginError;
- if (!$scope.loginForm.$valid) {
- return;
- }
- backendSrv.post('/login', $scope.formModel).then(function(result) {
- if (result.redirectUrl) {
- window.location.href = result.redirectUrl;
- } else {
- window.location.href = config.appSubUrl + '/';
- }
- });
- };
- $scope.init();
- });
- });
|