baseApp .controller('aboutCtrl', function($scope){ }) ; baseApp .controller('registerCtrl', function($scope, $location, $http, $timeout){ $scope.setMainViewAlign('middle'); $scope.oData = []; $scope.oData.sEmail = ($scope.oIncomingData.sEmail != '' ? $scope.oIncomingData.sEmail : ''); $scope.oData.sPassword = ($scope.oIncomingData.sPassword != '' ? $scope.oIncomingData.sPassword : ''); $scope.oData.sName = null; $scope.oData.sDateOfBirth = null; $scope.documentReady(function(){ $scope.registrationForm.sEmail.$setValidity('bEmailAvailable',$scope.bEmailAvailable); $scope.registrationForm.sName.$setValidity('bNameAvailable',$scope.bNameAvailable); $scope.checkEmail(); $scope.checkName(); }); $scope.mCheckEmailPromise = null; $scope.mCheckNamePromise = null; $scope.bCheckingEmail = false; $scope.bCheckingName = false; $scope.bEmailAvailable = false; $scope.bNameAvailable = false; $scope.sLastEmail = ''; $scope.sLastName = ''; $scope.bViewingPassword = false; $scope.bPasswordCopied = false; $scope.setNameFromEmail = function(){ if($scope.oData.sEmail){ $scope.oData.sName = $scope.oData.sEmail.substring(0, $scope.oData.sEmail.indexOf('@')); } }; $scope.setNameFromEmail(); $scope.checkEmail = function(){ if(!$scope.bCheckingEmail && $scope.oData.sEmail != ''){ if($scope.mCheckEmailPromise != null) $timeout.cancel($scope.mCheckEmailPromise); $scope.mCheckEmailPromise = $timeout(function(){ if($scope.sLastEmail == $scope.oData.sEmail){ $scope.bCheckingEmail = true; $scope.bEmailAvailable = false; $scope.registrationForm.sEmail.$setValidity('bEmailAvailable',$scope.bEmailAvailable); $http .post('/worker/check_email.php', {'email':$scope.oData.sEmail}) .success(function(resp){ if(resp.status == 'OK'){ $timeout(function(){ $scope.bCheckingEmail = false; $scope.bEmailAvailable = (resp.found ? false : true); $scope.registrationForm.sEmail.$setValidity('bEmailAvailable',$scope.bEmailAvailable); if(!$scope.oData.sName){ $scope.setNameFromEmail(); $scope.checkName(); } },250); }else{ console.error('CHECK EMAIL ERROR',resp); $scope.bCheckingEmail = false; } }) .error(function(err){ console.error('CHECK EMAIL ERROR',err); $scope.bCheckingEmail = false; }) ; } }, 750); $scope.sLastEmail = $scope.oData.sEmail; } }; $scope.toggleViewingPassword = function(){ $scope.bViewingPassword = !$scope.bViewingPassword; $('#sPassword').prop({'type':($scope.bViewingPassword ? 'text' : 'password')}); }; $scope.generatePassword = function(minimumScore = 3){ $scope.startSpinner('Generating password..'); $scope.oData.sPassword = ''; $http .post('/worker/generate_password.php', {}) .success(function(resp){ $scope.stopSpinner(); if(resp.status == 'OK'){ if($scope.scorePassword(resp.password) < minimumScore){ $scope.generatePassword(minimumScore); }else{ $scope.oData.sPassword = resp.password; } } }) .error(function(err){ $scope.stopSpinner(); }) ; }; $scope.copyPassword = function(){ if($scope.oData.sPassword){ $scope.ctrlC($scope.oData.sPassword); $scope.bPasswordCopied = false; $timeout(function(){ $scope.bPasswordCopied = true; $timeout(function(){ $scope.bPasswordCopied = false; },5000); },250); } }; $scope.handleKeydown = function(e){ if(e.keyCode == 13) $scope.register(); }; $scope.validateDateOfBirth = function(){ if($scope.oData.sDateOfBirth){ var dob = Date.parse($scope.oData.sDateOfBirth); if(isNaN(dob)){ $scope.oData.sDateOfBirth = ''; }else{ var oDOB = new Date(dob); $scope.oData.sDateOfBirth = moment(dob).format('YYYY-MM-DD'); } } }; $scope.checkName = function(){ $scope.bNameAvailable = false; $scope.registrationForm.sName.$setValidity('bNameAvailable',true); /* flag false so timeout delay plays nice */ if(!$scope.bCheckingName && $scope.oData.sName){ if($scope.mCheckNamePromise != null) $timeout.cancel($scope.mCheckNamePromise); $scope.mCheckNamePromise = $timeout(function(){ if($scope.sLastName == $scope.oData.sName){ $scope.bCheckingName = true; $scope.bNameAvailable = false; $scope.registrationForm.sName.$setValidity('bNameAvailable',$scope.bNameAvailable); $http .post('/worker/check_name.php', {'name':$scope.oData.sName}) .success(function(resp){ if(resp.status == 'OK'){ $timeout(function(){ $scope.bCheckingName = false; $scope.bNameAvailable = (resp.found ? false : true); $scope.registrationForm.sName.$setValidity('bNameAvailable',$scope.bNameAvailable); },250); }else{ console.error('CHECK NAME ERROR',resp); $scope.bCheckingName = false; } }) .error(function(err){ console.error('CHECK Name ERROR',err); $scope.bCheckingName = false; }) ; } }, 750); $scope.sLastName = $scope.oData.sName; } }; $scope.checkNameStatus = function(){ if($scope.bCheckingName) return 'checking'; if($scope.bNameAvailable) return 'available'; if(!$scope.bNameAvailable) return 'unavailable'; }; $scope.bFormIsValid = function(){ return !($scope.bSpinnerOn || !$scope.registrationForm.$valid || !$scope.bEmailAvailable || $scope.bCheckingEmail); }; $scope.register = function(){ if($scope.bFormIsValid()){ if($scope.scorePassword($scope.oData.sPassword) < 2 && !confirm('On a scale of 0-4, your password scores a '+$scope.scorePassword($scope.oData.sPassword)+'. Are you sure you want to use this password?')){ return; } $scope._register($scope.oData); } }; }) ; baseApp .controller('registrationSuccessfulCtrl', function($scope,$location){ $location.path('/login').search({'reroute':'registration_successful'}); }) ; baseApp .controller('loginCtrl', function($scope, $location){ $scope.setMainViewAlign('middle'); $scope.oData = {}; $scope.oData.sEmail = ($scope.cookie ? $scope.cookie.email : ''); $scope.oData.sPassword = ''; $scope.oData.bRememberEmail = $scope.cookie.bRememberEmail; $scope.oData.bStayLoggedIn = $scope.cookie.bStayLoggedIn; $scope.handleRememberEmail = function(){ if(!$scope.oData.bRememberEmail){ $scope.oData.bStayLoggedIn = false; } } }) ; baseApp .controller('logoutCtrl', function($scope,$location){ $location.path('/login').search({'reroute':'logout'}); }) ; baseApp .controller('forgotPasswordCtrl', function($scope, $http){ $scope.setMainViewAlign('middle'); $scope.oData = {}; $scope.oData.sEmail = ($scope.oIncomingData.sEmail != '' ? $scope.oIncomingData.sEmail : ''); $scope.resetPassword = function(){ var request = { 'email' : $scope.oData.sEmail }; $scope.startSpinner('Requesting password reset..'); $http .post('/worker/request_password_reset.php', request) .success(function(resp){ $scope.stopSpinner(); if(resp.status == 'OK'){ alert('Request Received'); }else{ console.log('resp',resp); alert('ERROR'); } }) .error(function(err){ $scope.stopSpinner(); console.log('err',err); }) ; }; }) ; baseApp .controller('resetPasswordCtrl', function($scope, $location, $http, $timeout){ $scope.setMainViewAlign('middle'); $scope.oData = []; $scope.oData.sCode = $location.search().code; $scope.oData.sNewPassword = ''; $scope.oData.sConfirmNewPassword = ''; $scope.bResetPasswordCodeValidated = null; $scope.bPasswordReset = null; $scope.startSpinner('Validating code..'); $http .post('/worker/validate_reset_password_code.php', {'code':$scope.oData.sCode}) .success(function(resp){ $scope.stopSpinner(); if(resp.status == 'OK'){ $scope.bResetPasswordCodeValidated = true; }else{ $scope.bResetPasswordCodeValidated = false; } }) .error(function(err){ $scope.stopSpinner(); $scope.bResetPasswordCodeValidated = false; }) ; $scope.toggleViewingPassword = function(){ $scope.viewing_password = !$scope.viewing_password; $('#sNewPassword').prop({'type':($scope.viewing_password ? 'text' : 'password')}); }; $scope.resetPassword = function(){ $scope.startSpinner('Resetting password..'); var oRequest = { 'code' : $scope.oData.sCode, 'new_password' : $scope.oData.sNewPassword, 'confirm_new_password' : $scope.oData.sConfirmNewPassword }; $http .post('/worker/reset_password.php', oRequest) .success(function(resp){ $scope.stopSpinner(); if(resp.status == 'OK'){ $scope.bPasswordReset = true; }else{ $scope.bResetPasswordCodeValidated = false; } }) .error(function(resp){ $scope.stopSpinner(); $scope.bResetPasswordCodeValidated = false; }) ; }; $scope.password_copied = false; $scope.generatePassword = function(minimumScore = 3){ $scope.startSpinner('Generating password..'); $scope.oData.sNewPassword = ''; $http .post('/worker/generate_password.php', {}) .success(function(resp){ $scope.stopSpinner(); if(resp.status == 'OK'){ if($scope.scorePassword(resp.password) < minimumScore){ $scope.generatePassword(minimumScore); }else{ $scope.oData.sNewPassword = resp.password; $scope.oData.sConfirmNewPassword = resp.password; } } }) .error(function(err){ $scope.stopSpinner(); }) ; }; $scope.copyPassword = function(){ if($scope.oData.sNewPassword){ $scope.ctrlC($scope.oData.sNewPassword); $scope.password_copied = false; $timeout(function(){ $scope.password_copied = true; $timeout(function(){ $scope.password_copied = false; },5000); },250); } }; $scope.goToForgotPassword = function(){ $location.search({}); /* get rid of code= */ $scope.goTo('/forgot_password'); }; $scope.goToLogin = function(){ $location.search({}); /* get rid of code= */ $scope.goTo('/login'); }; }) ; baseApp .controller('homeCtrl', function($scope,$location){ $location.path('/login').search({}); }) ; baseApp .controller('settingsCtrl', function($scope,$location){ $location.path('/login').search({'reroute':'settings'}); }) ; baseApp .controller('contentCtrl', function($scope,$location){ $location.path('/login').search({'reroute':'content'}); }) ; baseApp .controller('tagsCtrl', function($scope,$location){ $location.path('/login').search({'reroute':'tags'}); }) ; baseApp .controller('postCtrl', function($scope,$location){ $location.path('/login').search({'reroute':'post'}); }) ; baseApp .controller('hahaSpeakCtrl', function($scope, $http, $timeout){ $scope.setMainViewAlign('top'); $scope.setTitle('[HAHA Speak]'); $scope.aVersions = [{'value':'0.1a','label':'0.1a (easy)'},{'value':'0.2a','label':'0.2a (difficult)'},{'value':'0.3a','label':'0.3a (impossible)'}]; $scope.sVersion = $scope.aVersions[0].value; $scope.sDefaultVersion = $scope.aVersions[0].value; $scope.aTypes = [{'value':'texttohaha','label':'Text to HAHA'},{'value':'hahatotext','label':'HAHA to Text'}]; $scope.sType = $scope.aTypes[0].value; $scope.sText = ''; $scope.sHaha = ''; $scope.handleChange = function(){ switch($scope.sType){ case 'texttohaha' : if($scope.sText != ''){ $scope.sHaha = ''; } break; case 'hahatotext' : if($scope.sHaha != ''){ $scope.sText = ''; /* $scope.sHaha = $scope.sHaha.replaceAll('h','H'); */ /* $scope.sHaha = $scope.sHaha.replaceAll('a','A'); */ } break; } }; $scope.translate = function(){ var url = ''; var params = {'type':$scope.sType,'version':$scope.sVersion}; switch($scope.sType){ case 'texttohaha' : url = '/worker/convert_text_to_haha.php'; params['text'] = $scope.sText; break; case 'hahatotext' : url = '/worker/convert_haha_to_text.php'; params['haha'] = $scope.sHaha; break; default: return; break; } switch($scope.sVersion){ case '0.3a' : params['encryption_key'] = $scope.sEncryptionKey; break; } $scope.startSpinner('Translating..'); $http .post(url,params) .success(function(resp){ $scope.stopSpinner(); if(resp.status == 'OK'){ switch($scope.sType){ case 'texttohaha' : $scope.sHaha = resp.haha; break; case 'hahatotext' : $scope.sText = resp.text; break; } } }) .error(function(err){ $scope.stopSpinner(); }) ; }; $scope.reset = function(){ $scope.sType = 'texttohaha'; $scope.sVersion = $scope.sDefaultVersion; $scope.sText = ''; $scope.sHaha = ''; }; $scope.bTextCopied = false; $scope.copyText = function(){ $scope.ctrlC($scope.sText); $scope.bTextCopied = false; $timeout(function(){ $scope.bTextCopied = true; },250); }; $scope.bHahaCopied = false; $scope.copyHaha = function(){ $scope.ctrlC($scope.sHaha); $scope.bHahaCopied = false; $timeout(function(){ $scope.bHahaCopied = true; },250); }; }) ; baseApp .controller('wordleCtrl', function($scope, $http){ $scope.setMainViewAlign('top'); $scope.setTitle('[Wordle][BATCH, QUERY, WINDS]'); $scope.iWordleLength = '5'; $scope.aWordleSuggestions = []; $scope.aValidLetters = []; $scope.aValidLettersRow1 = []; $scope.aValidLettersRow2 = []; $scope.aValidLettersRow3 = []; $scope.resetValidLettersRows = function(){ $scope.aValidLettersRow1 = [ {'value' : 'Q', 'used' : false, 'unused' : false}, {'value' : 'W', 'used' : false, 'unused' : false}, {'value' : 'E', 'used' : false, 'unused' : false}, {'value' : 'R', 'used' : false, 'unused' : false}, {'value' : 'T', 'used' : false, 'unused' : false}, {'value' : 'Y', 'used' : false, 'unused' : false}, {'value' : 'U', 'used' : false, 'unused' : false}, {'value' : 'I', 'used' : false, 'unused' : false}, {'value' : 'O', 'used' : false, 'unused' : false}, {'value' : 'P', 'used' : false, 'unused' : false} ]; $scope.aValidLettersRow2 = [ {'value' : 'A', 'used' : false, 'unused' : false}, {'value' : 'S', 'used' : false, 'unused' : false}, {'value' : 'D', 'used' : false, 'unused' : false}, {'value' : 'F', 'used' : false, 'unused' : false}, {'value' : 'G', 'used' : false, 'unused' : false}, {'value' : 'H', 'used' : false, 'unused' : false}, {'value' : 'J', 'used' : false, 'unused' : false}, {'value' : 'K', 'used' : false, 'unused' : false}, {'value' : 'L', 'used' : false, 'unused' : false} ]; $scope.aValidLettersRow3 = [ {'value' : 'Z', 'used' : false, 'unused' : false}, {'value' : 'X', 'used' : false, 'unused' : false}, {'value' : 'C', 'used' : false, 'unused' : false}, {'value' : 'V', 'used' : false, 'unused' : false}, {'value' : 'B', 'used' : false, 'unused' : false}, {'value' : 'N', 'used' : false, 'unused' : false}, {'value' : 'M', 'used' : false, 'unused' : false} ]; }; $scope.resetValidLettersRows(); $scope.constructValidLettersFromRows = function(){ $scope.aValidLetters = []; for(i in $scope.aValidLettersRow1) $scope.aValidLetters.push($scope.aValidLettersRow1[i]); for(i in $scope.aValidLettersRow2) $scope.aValidLetters.push($scope.aValidLettersRow2[i]); for(i in $scope.aValidLettersRow3) $scope.aValidLetters.push($scope.aValidLettersRow3[i]); }; $scope.constructValidLettersFromRows(); $scope.handleWordleLetterInput = function($index){ for(var i = 0; i < parseInt($scope.iWordleLength); i++){ if($index == i){ if(!/^[a-zA-Z]*$/.test($scope.aWordleLetters[i].value)){ $scope.aWordleLetters[i].value = ''; }else{ $scope.aWordleLetters[i].value = $scope.aWordleLetters[i].value.toUpperCase(); $scope.setValidLetter($scope.aWordleLetters[i].value, 'used'); } } } }; $scope.setValidLetter = function(letter, flag){ for(iKey in $scope.aValidLetters){ if($scope.aValidLetters[iKey].value == letter){ switch(flag){ case 'unknown' : $scope.aValidLetters[iKey].used = false; $scope.aValidLetters[iKey].unused = false; break; case 'used' : $scope.aValidLetters[iKey].used = true; $scope.aValidLetters[iKey].unused = false; break; case 'unused' : $scope.aValidLetters[iKey].used = false; $scope.aValidLetters[iKey].unused = true; break; } } } }; $scope.toggleValidLetter = function(letter){ for(iKey in $scope.aValidLetters){ if($scope.aValidLetters[iKey].value == letter){ if(!$scope.aValidLetters[iKey].used && !$scope.aValidLetters[iKey].unused){ $scope.aValidLetters[iKey].unused = true; }else if($scope.aValidLetters[iKey].unused){ $scope.aValidLetters[iKey].used = true; $scope.aValidLetters[iKey].unused = false; }else{ $scope.aValidLetters[iKey].used = false; $scope.aValidLetters[iKey].unused = false; } } } $scope.constructValidLettersFromRows(); }; $scope.setWordleLength = function(){ $scope.aWordleLetters = []; for(var i = 0; i < parseInt($scope.iWordleLength); i++){ $scope.aWordleLetters.push({'value' : ''}); } $scope.resetValidLettersRows(); $scope.constructValidLettersFromRows(); $scope.aWordleSuggestions = []; }; $scope.setWordleLength(); $scope.getWordleSuggestions = function(){ $scope.startSpinner('Getting word suggestions..'); $scope.wordle_suggestions = []; $http .post('/worker/wordle_suggestions.php', { 'wordle_length' : $scope.iWordleLength, 'wordle_letters' : $scope.aWordleLetters, 'valid_letters' : $scope.aValidLetters }) .success(function(resp){ $scope.stopSpinner(); if(resp.status == 'OK'){ $scope.aWordleSuggestions = resp.wordle_suggestions; } }) .error(function(err){ $scope.stopSpinner(); }) ; }; }) ; baseApp .controller('whoisCtrl', function($scope,$location){ $location.path('/login').search({'reroute':'whois'}); }) ; baseApp .controller('moderateCtrl', function($scope,$location){ $location.path('/login').search({'reroute':'moderate'}); }) ; baseApp .controller('usersCtrl', function($scope,$location){ $location.path('/login').search({'reroute':'users'}); }) ; baseApp .controller('geolocationCtrl', function($scope, $timeout, $window){ $scope.user_latitude = 'Unknown'; $scope.user_longitude = 'Unknown'; $scope.startSpinner('Obtaining geolocation..'); if(navigator.geolocation){ function positionSuccess(pos){ $scope.stopSpinner(); $scope.user_latitude = pos.coords.latitude; $scope.user_longitude = pos.coords.longitude; function watchSuccess(pos){ $scope.user_latitude = pos.coords.latitude; $scope.user_longitude = pos.coords.longitude; /* navigator.geolocation.clearWatch(watchId); */ }; function watchError(err){ console.error(`ERROR(${err.code}): ${err.message}`); }; var watchOptions = { 'enableHighAccuracy' : true }; var watchId = navigator.geolocation.watchPosition(watchSuccess, watchError, watchOptions); }; function positionError(err){ $scope.stopSpinner(); console.warn(`ERROR(${err.code}): ${err.message}`); }; var positionOptions = { 'enableHighAccuracy' : true }; navigator.geolocation.getCurrentPosition(positionSuccess, positionError, positionOptions); }; $scope.openGoogleMaps = function(){ if($scope.user_latitude != 'Unknown' && $scope.user_longitude != 'Unknown'){ $window.open('https://maps.google.com?q='+$scope.user_latitude+','+$scope.user_longitude, '_google_maps'); }; }; }) ;