371 lines
12 KiB
Dart
371 lines
12 KiB
Dart
import 'dart:async';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:invoiceninja_flutter/constants.dart';
|
|
import 'package:invoiceninja_flutter/data/models/models.dart';
|
|
import 'package:invoiceninja_flutter/redux/app/app_actions.dart';
|
|
import 'package:invoiceninja_flutter/redux/company/company_actions.dart';
|
|
import 'package:invoiceninja_flutter/redux/dashboard/dashboard_actions.dart';
|
|
import 'package:invoiceninja_flutter/redux/ui/ui_actions.dart';
|
|
import 'package:invoiceninja_flutter/ui/auth/login_vm.dart';
|
|
import 'package:invoiceninja_flutter/utils/formatting.dart';
|
|
import 'package:invoiceninja_flutter/utils/strings.dart';
|
|
import 'package:redux/redux.dart';
|
|
import 'package:invoiceninja_flutter/redux/auth/auth_actions.dart';
|
|
import 'package:invoiceninja_flutter/redux/app/app_state.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
import 'package:invoiceninja_flutter/data/repositories/auth_repository.dart';
|
|
|
|
List<Middleware<AppState>> createStoreAuthMiddleware([
|
|
AuthRepository repository = const AuthRepository(),
|
|
]) {
|
|
final userLogout = _createUserLogout();
|
|
final loginRequest = _createLoginRequest(repository);
|
|
final oauthLoginRequest = _createOAuthLoginRequest(repository);
|
|
final signUpRequest = _createSignUpRequest(repository);
|
|
final oauthSignUpRequest = _createOAuthSignUpRequest(repository);
|
|
final refreshRequest = _createRefreshRequest(repository);
|
|
final recoverRequest = _createRecoverRequest(repository);
|
|
final addCompany = _createCompany(repository);
|
|
final deleteCompany = _deleteCompany(repository);
|
|
final purgeData = _purgeData(repository);
|
|
|
|
return [
|
|
TypedMiddleware<AppState, UserLogout>(userLogout),
|
|
TypedMiddleware<AppState, UserLoginRequest>(loginRequest),
|
|
TypedMiddleware<AppState, OAuthLoginRequest>(oauthLoginRequest),
|
|
TypedMiddleware<AppState, UserSignUpRequest>(signUpRequest),
|
|
TypedMiddleware<AppState, OAuthSignUpRequest>(oauthSignUpRequest),
|
|
TypedMiddleware<AppState, RefreshData>(refreshRequest),
|
|
TypedMiddleware<AppState, RecoverPasswordRequest>(recoverRequest),
|
|
TypedMiddleware<AppState, AddCompany>(addCompany),
|
|
TypedMiddleware<AppState, DeleteCompanyRequest>(deleteCompany),
|
|
TypedMiddleware<AppState, PurgeDataRequest>(purgeData),
|
|
];
|
|
}
|
|
|
|
void _saveAuthLocal({String email = '', String url = ''}) async {
|
|
final SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
prefs.setString(kSharedPrefEmail, email);
|
|
prefs.setString(kSharedPrefUrl, formatApiUrl(url));
|
|
}
|
|
|
|
Middleware<AppState> _createUserLogout() {
|
|
return (Store<AppState> store, dynamic dynamicAction, NextDispatcher next) {
|
|
final action = dynamicAction as UserLogout;
|
|
|
|
next(action);
|
|
|
|
Navigator.of(action.context).pushNamedAndRemoveUntil(
|
|
LoginScreen.route, (Route<dynamic> route) => false);
|
|
|
|
store.dispatch(UpdateCurrentRoute(LoginScreen.route));
|
|
};
|
|
}
|
|
|
|
Middleware<AppState> _createLoginRequest(AuthRepository repository) {
|
|
return (Store<AppState> store, dynamic dynamicAction, NextDispatcher next) {
|
|
final action = dynamicAction as UserLoginRequest;
|
|
|
|
repository
|
|
.login(
|
|
email: action.email,
|
|
password: action.password,
|
|
url: action.url,
|
|
secret: action.secret,
|
|
platform: action.platform,
|
|
oneTimePassword: action.oneTimePassword)
|
|
.then((data) {
|
|
_saveAuthLocal(
|
|
email: action.email,
|
|
url: action.url,
|
|
);
|
|
store.dispatch(
|
|
LoadAccountSuccess(completer: action.completer, loginResponse: data));
|
|
}).catchError((Object error) {
|
|
print('Login error: $error');
|
|
final message = _parseError('$error');
|
|
if (action.completer != null) {
|
|
action.completer.completeError(message);
|
|
}
|
|
store.dispatch(UserLoginFailure(message));
|
|
if ('$error'.startsWith('Error ::')) {
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
next(action);
|
|
};
|
|
}
|
|
|
|
Middleware<AppState> _createSignUpRequest(AuthRepository repository) {
|
|
return (Store<AppState> store, dynamic dynamicAction, NextDispatcher next) {
|
|
final action = dynamicAction as UserSignUpRequest;
|
|
|
|
repository
|
|
.signUp(
|
|
email: action.email,
|
|
password: action.password,
|
|
)
|
|
.then((data) {
|
|
_saveAuthLocal(email: action.email, url: kAppProductionUrl);
|
|
|
|
store.dispatch(
|
|
LoadAccountSuccess(completer: action.completer, loginResponse: data));
|
|
}).catchError((Object error) {
|
|
print('Signup error: $error');
|
|
final message = _parseError('$error');
|
|
if (action.completer != null) {
|
|
action.completer.completeError(message);
|
|
}
|
|
store.dispatch(UserLoginFailure(message));
|
|
if ('$error'.startsWith('Error ::')) {
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
next(action);
|
|
};
|
|
}
|
|
|
|
Middleware<AppState> _createOAuthLoginRequest(AuthRepository repository) {
|
|
return (Store<AppState> store, dynamic dynamicAction, NextDispatcher next) {
|
|
final action = dynamicAction as OAuthLoginRequest;
|
|
|
|
repository
|
|
.oauthLogin(
|
|
idToken: action.idToken,
|
|
accessToken: action.accessToken,
|
|
serverAuthCode: action.serverAuthCode,
|
|
url: action.url,
|
|
secret: action.secret,
|
|
platform: action.platform)
|
|
.then((data) {
|
|
_saveAuthLocal(
|
|
email: action.email,
|
|
url: action.url,
|
|
);
|
|
|
|
store.dispatch(
|
|
LoadAccountSuccess(completer: action.completer, loginResponse: data));
|
|
}).catchError((Object error) {
|
|
print('Oauth login error: $error');
|
|
final message = _parseError('$error');
|
|
if (action.completer != null) {
|
|
action.completer.completeError(message);
|
|
}
|
|
store.dispatch(UserLoginFailure(message));
|
|
if ('$error'.startsWith('Error ::')) {
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
next(action);
|
|
};
|
|
}
|
|
|
|
Middleware<AppState> _createOAuthSignUpRequest(AuthRepository repository) {
|
|
return (Store<AppState> store, dynamic dynamicAction, NextDispatcher next) {
|
|
final action = dynamicAction as OAuthSignUpRequest;
|
|
|
|
repository
|
|
.oauthSignUp(
|
|
accessToken: action.accessToken,
|
|
idToken: action.idToken,
|
|
serverAuthCode: action.serverAuthCode,
|
|
)
|
|
.then((data) {
|
|
_saveAuthLocal(url: kAppProductionUrl);
|
|
|
|
store.dispatch(
|
|
LoadAccountSuccess(completer: action.completer, loginResponse: data));
|
|
}).catchError((Object error) {
|
|
print('OAuth signup error: $error');
|
|
final message = _parseError('$error');
|
|
if (action.completer != null) {
|
|
action.completer.completeError(message);
|
|
}
|
|
store.dispatch(UserLoginFailure(message));
|
|
if ('$error'.startsWith('Error ::')) {
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
next(action);
|
|
};
|
|
}
|
|
|
|
Middleware<AppState> _createRefreshRequest(AuthRepository repository) {
|
|
return (Store<AppState> store, dynamic dynamicAction,
|
|
NextDispatcher next) async {
|
|
final action = dynamicAction as RefreshData;
|
|
final state = store.state;
|
|
|
|
if (state.isSaving || state.isLoading) {
|
|
next(action);
|
|
return;
|
|
}
|
|
|
|
final SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
final url =
|
|
formatApiUrl(prefs.getString(kSharedPrefUrl) ?? state.authState.url);
|
|
final token =
|
|
TokenEntity.unobscureToken(prefs.getString(kSharedPrefToken)) ??
|
|
'TOKEN';
|
|
|
|
final updatedAt = action.clearData
|
|
? 0
|
|
: ((state.userCompanyState.lastUpdated - kMillisecondsToRefreshData) /
|
|
1000)
|
|
.round();
|
|
|
|
store.dispatch(UserLoadUrl(url: url));
|
|
|
|
repository
|
|
.refresh(
|
|
url: url,
|
|
token: token,
|
|
updatedAt: updatedAt - kUpdatedAtBufferSeconds,
|
|
includeStatic: action.includeStatic || state.staticState.isStale,
|
|
)
|
|
.then((data) {
|
|
if (action.clearData) {
|
|
store.dispatch(ClearData());
|
|
}
|
|
store.dispatch(LoadAccountSuccess(
|
|
completer: action.completer,
|
|
loginResponse: data,
|
|
));
|
|
}).catchError((Object error) {
|
|
final message = _parseError('$error');
|
|
if (action.completer != null) {
|
|
action.completer.completeError(message);
|
|
}
|
|
store.dispatch(RefreshDataFailure(message));
|
|
if ('$error'.startsWith('Error ::')) {
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
next(action);
|
|
};
|
|
}
|
|
|
|
Middleware<AppState> _createRecoverRequest(AuthRepository repository) {
|
|
return (Store<AppState> store, dynamic dynamicAction, NextDispatcher next) {
|
|
final action = dynamicAction as RecoverPasswordRequest;
|
|
|
|
repository
|
|
.recoverPassword(
|
|
email: action.email,
|
|
url: action.url,
|
|
secret: action.secret,
|
|
)
|
|
.then((data) {
|
|
store.dispatch(RecoverPasswordSuccess());
|
|
action.completer.complete(null);
|
|
}).catchError((Object error) {
|
|
if (action.completer != null) {
|
|
store.dispatch(RecoverPasswordFailure(error.toString()));
|
|
action.completer.completeError(error);
|
|
}
|
|
});
|
|
|
|
next(action);
|
|
};
|
|
}
|
|
|
|
Middleware<AppState> _createCompany(AuthRepository repository) {
|
|
return (Store<AppState> store, dynamic dynamicAction,
|
|
NextDispatcher next) async {
|
|
final action = dynamicAction as AddCompany;
|
|
final state = store.state;
|
|
|
|
repository.addCompany(credentials: state.credentials).then((dynamic value) {
|
|
store.dispatch(AddCompanySuccess());
|
|
store.dispatch(RefreshData(
|
|
completer: Completer<Null>()
|
|
..future.then<Null>((_) {
|
|
store.dispatch(SelectCompany(companyIndex: state.companies.length));
|
|
store.dispatch(ViewDashboard(
|
|
navigator: Navigator.of(action.context), force: true));
|
|
|
|
action.completer.complete();
|
|
}),
|
|
));
|
|
});
|
|
|
|
next(action);
|
|
};
|
|
}
|
|
|
|
Middleware<AppState> _deleteCompany(AuthRepository repository) {
|
|
return (Store<AppState> store, dynamic dynamicAction,
|
|
NextDispatcher next) async {
|
|
final action = dynamicAction as DeleteCompanyRequest;
|
|
final state = store.state;
|
|
|
|
repository
|
|
.deleteCompany(
|
|
credentials: state.credentials,
|
|
password: action.password,
|
|
companyId: state.company.id)
|
|
.then((dynamic value) {
|
|
store.dispatch(DeleteCompanySuccess());
|
|
action.completer.complete(null);
|
|
}).catchError((Object error) {
|
|
store.dispatch(DeleteCompanyFailure(error));
|
|
action.completer.completeError(error);
|
|
});
|
|
|
|
next(action);
|
|
};
|
|
}
|
|
|
|
Middleware<AppState> _purgeData(AuthRepository repository) {
|
|
return (Store<AppState> store, dynamic dynamicAction,
|
|
NextDispatcher next) async {
|
|
final action = dynamicAction as PurgeDataRequest;
|
|
final state = store.state;
|
|
|
|
repository
|
|
.purgeData(
|
|
credentials: state.credentials,
|
|
password: action.password,
|
|
companyId: state.company.id)
|
|
.then((dynamic value) {
|
|
store.dispatch(RefreshData(
|
|
clearData: true,
|
|
completer: Completer<Null>()
|
|
..future.then((value) {
|
|
action.completer.complete(null);
|
|
store.dispatch(PurgeDataSuccess());
|
|
})));
|
|
}).catchError((Object error) {
|
|
store.dispatch(PurgeDataFailure(error));
|
|
action.completer.completeError(error);
|
|
});
|
|
|
|
next(action);
|
|
};
|
|
}
|
|
|
|
String _parseError(String error) {
|
|
const errorPattern = 'failed due to: Deserializing';
|
|
if (error.contains(errorPattern)) {
|
|
final lastIndex = error.lastIndexOf(errorPattern);
|
|
final secondToLastIndex = secondToLastIndexOf(error, errorPattern);
|
|
error = 'Error :: ' +
|
|
error
|
|
.substring(
|
|
(secondToLastIndex >= 0 ? secondToLastIndex : lastIndex) +
|
|
errorPattern.length)
|
|
.trim();
|
|
} else if (error.toLowerCase().contains('no host specified')) {
|
|
error = 'An error occurred, please check the URL is correct';
|
|
} else if (error.contains('404')) {
|
|
error += ', you may need to add /public to the URL';
|
|
}
|
|
|
|
return error;
|
|
}
|