2019-02-27 20:29:37 +00:00
|
|
|
import {
|
2019-08-27 17:41:07 +00:00
|
|
|
put, select, race, take, fork, cancel, delay
|
2019-02-27 20:29:37 +00:00
|
|
|
} from 'redux-saga/effects';
|
2019-06-18 20:12:33 +00:00
|
|
|
import { BACKGROUND, INACTIVE } from 'redux-enhancer-react-native-appstate';
|
2019-09-16 20:26:32 +00:00
|
|
|
import { Q } from '@nozbe/watermelondb';
|
2018-05-18 17:55:08 +00:00
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord';
|
2017-08-17 02:06:22 +00:00
|
|
|
import * as types from '../actions/actionsTypes';
|
2019-02-07 16:13:21 +00:00
|
|
|
import { roomsSuccess, roomsFailure } from '../actions/rooms';
|
2019-09-16 20:26:32 +00:00
|
|
|
import database from '../lib/database';
|
2018-05-18 17:55:08 +00:00
|
|
|
import log from '../utils/log';
|
2019-02-07 16:13:21 +00:00
|
|
|
import mergeSubscriptionsRooms from '../lib/methods/helpers/mergeSubscriptionsRooms';
|
2019-02-27 20:29:37 +00:00
|
|
|
import RocketChat from '../lib/rocketchat';
|
2018-03-23 16:49:51 +00:00
|
|
|
|
2019-02-07 16:13:21 +00:00
|
|
|
const handleRoomsRequest = function* handleRoomsRequest() {
|
2018-05-18 17:55:08 +00:00
|
|
|
try {
|
2019-09-16 20:26:32 +00:00
|
|
|
const serversDB = database.servers;
|
2019-08-27 17:41:07 +00:00
|
|
|
yield RocketChat.subscribeRooms();
|
2019-02-27 20:29:37 +00:00
|
|
|
const newRoomsUpdatedAt = new Date();
|
|
|
|
const server = yield select(state => state.server.server);
|
2019-09-16 20:26:32 +00:00
|
|
|
const serversCollection = serversDB.collections.get('servers');
|
|
|
|
const serverRecord = yield serversCollection.find(server);
|
2019-02-27 20:29:37 +00:00
|
|
|
const { roomsUpdatedAt } = serverRecord;
|
|
|
|
const [subscriptionsResult, roomsResult] = yield RocketChat.getRooms(roomsUpdatedAt);
|
2019-02-07 16:13:21 +00:00
|
|
|
const { subscriptions } = mergeSubscriptionsRooms(subscriptionsResult, roomsResult);
|
2018-09-19 14:18:32 +00:00
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
const db = database.active;
|
|
|
|
yield db.action(async() => {
|
|
|
|
const subCollection = db.collections.get('subscriptions');
|
|
|
|
if (!subscriptions.length) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const subsIds = subscriptions.map(sub => sub.rid);
|
|
|
|
const existingSubs = await subCollection.query(Q.where('id', Q.oneOf(subsIds))).fetch();
|
|
|
|
const subsToUpdate = existingSubs.filter(i1 => subscriptions.find(i2 => i1._id === i2._id));
|
|
|
|
const subsToCreate = subscriptions.filter(i1 => !existingSubs.find(i2 => i1._id === i2._id));
|
|
|
|
// TODO: subsToDelete?
|
|
|
|
|
|
|
|
const allRecords = [
|
|
|
|
...subsToCreate.map(subscription => subCollection.prepareCreate((s) => {
|
|
|
|
s._raw = sanitizedRaw({ id: subscription.rid }, subCollection.schema);
|
|
|
|
return Object.assign(s, subscription);
|
|
|
|
})),
|
|
|
|
...subsToUpdate.map((subscription) => {
|
|
|
|
const newSub = subscriptions.find(s => s._id === subscription._id);
|
|
|
|
return subscription.prepareUpdate(() => {
|
|
|
|
Object.assign(subscription, newSub);
|
|
|
|
});
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
try {
|
|
|
|
await db.batch(...allRecords);
|
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
|
|
|
}
|
|
|
|
return allRecords.length;
|
2018-05-18 17:55:08 +00:00
|
|
|
});
|
2019-09-16 20:26:32 +00:00
|
|
|
|
|
|
|
yield serversDB.action(async() => {
|
2019-02-27 20:29:37 +00:00
|
|
|
try {
|
2019-09-16 20:26:32 +00:00
|
|
|
await serverRecord.update((record) => {
|
|
|
|
record.roomsUpdatedAt = newRoomsUpdatedAt;
|
|
|
|
});
|
2019-02-27 20:29:37 +00:00
|
|
|
} catch (e) {
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2019-02-27 20:29:37 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-02-07 16:13:21 +00:00
|
|
|
yield put(roomsSuccess());
|
2018-03-29 17:55:37 +00:00
|
|
|
} catch (e) {
|
2019-02-07 16:13:21 +00:00
|
|
|
yield put(roomsFailure(e));
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2018-03-29 17:55:37 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-18 21:30:16 +00:00
|
|
|
const root = function* root() {
|
2019-06-17 13:57:07 +00:00
|
|
|
while (true) {
|
|
|
|
const params = yield take(types.ROOMS.REQUEST);
|
2019-06-18 20:12:33 +00:00
|
|
|
const isAuthenticated = yield select(state => state.login.isAuthenticated);
|
|
|
|
if (isAuthenticated) {
|
|
|
|
const roomsRequestTask = yield fork(handleRoomsRequest, params);
|
|
|
|
yield race({
|
|
|
|
roomsSuccess: take(types.ROOMS.SUCCESS),
|
|
|
|
roomsFailure: take(types.ROOMS.FAILURE),
|
|
|
|
serverReq: take(types.SERVER.SELECT_REQUEST),
|
|
|
|
background: take(BACKGROUND),
|
|
|
|
inactive: take(INACTIVE),
|
|
|
|
logout: take(types.LOGOUT),
|
|
|
|
timeout: delay(30000)
|
|
|
|
});
|
|
|
|
yield cancel(roomsRequestTask);
|
|
|
|
}
|
2019-06-17 13:57:07 +00:00
|
|
|
}
|
2017-08-18 21:30:16 +00:00
|
|
|
};
|
|
|
|
export default root;
|