Changeset 1316 for trunk


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
Files:
3 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                }
  • trunk/src/org/expeditee/gui/FrameIO.java

    r1303 r1316  
    376376                        List<String> directoriesToSearch = FolderSettings.FrameDirs.getAbsoluteDirs();
    377377                       
    378                         if (AuthenticatorBrowser.Authenticated) {
    379                                 // if we are running Expeditee Authenticated, consult user profile as location for framesets first
    380                                 String profilePath = FrameIO.PROFILE_PATH + UserSettings.UserName.get() + File.separator;
    381                                 directoriesToSearch.add(0, profilePath);
    382                         }
     378//                      if (AuthenticatorBrowser.Authenticated) {
     379//                              // if we are running Expeditee Authenticated, consult user profile as location for framesets first
     380//                              String profilePath = FrameIO.PROFILE_PATH + UserSettings.UserName.get() + File.separator;
     381//                              directoriesToSearch.add(0, profilePath);
     382//                      }
    383383                       
    384384                        for (String path : directoriesToSearch) {
     
    425425                list.deleteCharAt(list.length() - 1);
    426426                return list.toString();
     427        }
     428       
     429        /**
     430         * Gets a list of all the profiles available to the user
     431         *
     432         * @return a list containing all the available framesets on separate lines
     433         */
     434        public static List<String> getProfilesList() {
     435                List<File> potentialProfiles = Arrays.asList(new File(FrameIO.PROFILE_PATH).listFiles());
     436                potentialProfiles.removeIf(file -> !file.isDirectory());
     437                return potentialProfiles.stream().map(dir -> dir.getName()).collect(Collectors.toList());
    427438        }
    428439
Note: See TracChangeset for help on using the changeset viewer.