2017-08-21 03:00:41 +00:00
|
|
|
import { AsyncStorage } from 'react-native';
|
2017-11-28 11:01:18 +00:00
|
|
|
import { call, put, takeLatest } from 'redux-saga/effects';
|
2018-05-18 17:55:08 +00:00
|
|
|
|
2017-08-21 03:00:41 +00:00
|
|
|
import * as actions from '../actions';
|
2018-08-01 19:35:06 +00:00
|
|
|
import { selectServerRequest } from '../actions/server';
|
2018-04-24 19:34:03 +00:00
|
|
|
import { restoreToken, setUser } from '../actions/login';
|
2017-09-01 19:42:50 +00:00
|
|
|
import { APP } from '../actions/actionsTypes';
|
2017-11-19 02:44:55 +00:00
|
|
|
import RocketChat from '../lib/rocketchat';
|
2018-05-18 17:55:08 +00:00
|
|
|
import log from '../utils/log';
|
2017-08-21 03:00:41 +00:00
|
|
|
|
|
|
|
const restore = function* restore() {
|
|
|
|
try {
|
2018-04-24 19:34:03 +00:00
|
|
|
const token = yield call([AsyncStorage, 'getItem'], RocketChat.TOKEN_KEY);
|
2017-11-13 13:19:24 +00:00
|
|
|
if (token) {
|
|
|
|
yield put(restoreToken(token));
|
2018-07-10 13:40:32 +00:00
|
|
|
} else {
|
|
|
|
yield put(actions.appStart('outside'));
|
2017-11-13 13:19:24 +00:00
|
|
|
}
|
|
|
|
|
2017-08-21 03:00:41 +00:00
|
|
|
const currentServer = yield call([AsyncStorage, 'getItem'], 'currentServer');
|
2017-09-01 19:42:50 +00:00
|
|
|
if (currentServer) {
|
2018-08-01 19:35:06 +00:00
|
|
|
yield put(selectServerRequest(currentServer));
|
2018-04-24 19:34:03 +00:00
|
|
|
|
|
|
|
const login = yield call([AsyncStorage, 'getItem'], `${ RocketChat.TOKEN_KEY }-${ currentServer }`);
|
2018-06-13 01:33:00 +00:00
|
|
|
if (login) {
|
|
|
|
yield put(setUser(JSON.parse(login)));
|
2018-04-24 19:34:03 +00:00
|
|
|
}
|
2017-09-01 19:42:50 +00:00
|
|
|
}
|
2018-04-24 19:34:03 +00:00
|
|
|
|
2017-11-13 13:19:24 +00:00
|
|
|
yield put(actions.appReady({}));
|
2017-08-21 03:00:41 +00:00
|
|
|
} catch (e) {
|
2018-05-18 17:55:08 +00:00
|
|
|
log('restore', e);
|
2017-08-21 03:00:41 +00:00
|
|
|
}
|
|
|
|
};
|
2017-11-28 11:01:18 +00:00
|
|
|
|
|
|
|
const root = function* root() {
|
|
|
|
yield takeLatest(APP.INIT, restore);
|
|
|
|
};
|
|
|
|
export default root;
|