Ignore:
Timestamp:
04/16/19 10:41:54 (5 years ago)
Author:
bln4
Message:

Fixed exceptions being thrown incorrectly in following situations:

Incorrect login
Existing account on account creation
ToggleBay action run but not logged in

Location:
trunk/src/org/expeditee/auth
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/auth/Actions.java

    r1314 r1316  
    111111         */
    112112        public static void ToggleBay() throws KeyStoreException, FileNotFoundException, NoSuchAlgorithmException, CertificateException, ClassNotFoundException, SQLException, IOException, ParseException {
     113                if (!AuthenticatorBrowser.isAuthenticated()) return;
    113114                if (!DisplayController.isMailMode()) {
    114115                        MailBay.ensureLink();
     
    160161                        Map<AuthenticationTag, String> userData = userdata.get();
    161162                       
    162                         // A profile already existing with 'username' means an account cannot be created with that username.
    163                         if (FrameIO.LoadProfile(userData.get(AuthenticationTag.Username)) != null) {
     163                        // A profile already existing with 'username' means an account cannot be created with that username.                   
     164                        if (FrameIO.getProfilesList().contains(userData.get(AuthenticationTag.Username))) {
    164165                                MessageBay.errorMessage(Constants.ERROR_PROFILE_NAME_PREEXISTS);
    165166                                return;
  • trunk/src/org/expeditee/auth/account/Authenticate.java

    r1314 r1316  
    5959                        personalKey = AuthenticatorBrowser.getInstance().getSecretKey(username, password);
    6060                } catch (Exception e) {
     61                        return AuthenticationResult.ErrorLoginUsernamePasswordCombo;
     62                }
     63               
     64                if (personalKey == null) {
    6165                        return AuthenticationResult.ErrorLoginUsernamePasswordCombo;
    6266                }
Note: See TracChangeset for help on using the changeset viewer.