2018-05-23 13:39:18 +00:00
|
|
|
import Random from 'react-native-meteor/lib/Random';
|
2018-04-24 19:34:03 +00:00
|
|
|
import database from '../../realm';
|
|
|
|
import { merge } from '../helpers/mergeSubscriptionsRooms';
|
2018-05-18 17:55:08 +00:00
|
|
|
import protectedFunction from '../helpers/protectedFunction';
|
2018-05-23 13:39:18 +00:00
|
|
|
import messagesStatus from '../../../constants/messagesStatus';
|
2018-05-18 17:55:08 +00:00
|
|
|
import log from '../../../utils/log';
|
2018-04-24 19:34:03 +00:00
|
|
|
|
|
|
|
export default async function subscribeRooms(id) {
|
2018-09-19 14:18:32 +00:00
|
|
|
const promises = Promise.all([
|
2018-04-24 19:34:03 +00:00
|
|
|
this.ddp.subscribe('stream-notify-user', `${ id }/subscriptions-changed`, false),
|
|
|
|
this.ddp.subscribe('stream-notify-user', `${ id }/rooms-changed`, false),
|
|
|
|
this.ddp.subscribe('stream-notify-user', `${ id }/message`, false)
|
|
|
|
]);
|
|
|
|
|
|
|
|
let timer = null;
|
|
|
|
const loop = (time = new Date()) => {
|
|
|
|
if (timer) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
timer = setTimeout(async() => {
|
|
|
|
try {
|
|
|
|
await this.getRooms(time);
|
|
|
|
timer = false;
|
|
|
|
loop();
|
|
|
|
} catch (e) {
|
|
|
|
loop(time);
|
|
|
|
}
|
|
|
|
}, 5000);
|
|
|
|
};
|
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
if (!this.ddp && this._login) {
|
|
|
|
loop();
|
|
|
|
} else {
|
2018-05-07 20:43:26 +00:00
|
|
|
this.ddp.on('logged', () => {
|
|
|
|
clearTimeout(timer);
|
|
|
|
timer = false;
|
|
|
|
});
|
2018-04-24 19:34:03 +00:00
|
|
|
|
2018-05-07 20:43:26 +00:00
|
|
|
this.ddp.on('logout', () => {
|
|
|
|
clearTimeout(timer);
|
|
|
|
timer = true;
|
|
|
|
});
|
2018-04-24 19:34:03 +00:00
|
|
|
|
2018-05-07 20:43:26 +00:00
|
|
|
this.ddp.on('disconnected', () => {
|
|
|
|
if (this._login) {
|
|
|
|
loop();
|
|
|
|
}
|
|
|
|
});
|
2018-04-24 19:34:03 +00:00
|
|
|
|
2018-05-18 17:55:08 +00:00
|
|
|
this.ddp.on('stream-notify-user', protectedFunction((ddpMessage) => {
|
2018-05-07 20:43:26 +00:00
|
|
|
const [type, data] = ddpMessage.fields.args;
|
|
|
|
const [, ev] = ddpMessage.fields.eventName.split('/');
|
|
|
|
if (/subscriptions/.test(ev)) {
|
2018-09-19 14:18:32 +00:00
|
|
|
if (type === 'removed') {
|
|
|
|
let messages = [];
|
|
|
|
const [subscription] = database.objects('subscriptions').filtered('_id == $0', data._id);
|
|
|
|
|
|
|
|
if (subscription) {
|
|
|
|
messages = database.objects('messages').filtered('rid == $0', subscription.rid);
|
|
|
|
}
|
|
|
|
database.write(() => {
|
|
|
|
database.delete(messages);
|
|
|
|
database.delete(subscription);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
const rooms = database.objects('rooms').filtered('_id == $0', data.rid);
|
|
|
|
const tpm = merge(data, rooms[0]);
|
|
|
|
database.write(() => {
|
|
|
|
database.create('subscriptions', tpm, true);
|
|
|
|
database.delete(rooms);
|
|
|
|
});
|
|
|
|
}
|
2018-05-07 20:43:26 +00:00
|
|
|
}
|
2018-05-24 20:17:45 +00:00
|
|
|
if (/rooms/.test(ev)) {
|
|
|
|
if (type === 'updated') {
|
|
|
|
const [sub] = database.objects('subscriptions').filtered('rid == $0', data._id);
|
|
|
|
database.write(() => {
|
|
|
|
merge(sub, data);
|
|
|
|
});
|
|
|
|
} else if (type === 'inserted') {
|
|
|
|
database.write(() => {
|
|
|
|
database.create('rooms', data, true);
|
|
|
|
});
|
|
|
|
}
|
2018-05-07 20:43:26 +00:00
|
|
|
}
|
2018-05-23 13:39:18 +00:00
|
|
|
if (/message/.test(ev)) {
|
|
|
|
const [args] = ddpMessage.fields.args;
|
|
|
|
const _id = Random.id();
|
|
|
|
const message = {
|
|
|
|
_id,
|
|
|
|
rid: args.rid,
|
|
|
|
msg: args.msg,
|
|
|
|
ts: new Date(),
|
|
|
|
_updatedAt: new Date(),
|
|
|
|
status: messagesStatus.SENT,
|
|
|
|
u: {
|
|
|
|
_id,
|
|
|
|
username: 'rocket.cat'
|
|
|
|
}
|
|
|
|
};
|
|
|
|
requestAnimationFrame(() => database.write(() => {
|
|
|
|
database.create('messages', message, true);
|
|
|
|
}));
|
|
|
|
}
|
2018-05-18 17:55:08 +00:00
|
|
|
}));
|
2018-05-07 20:43:26 +00:00
|
|
|
}
|
2018-04-24 19:34:03 +00:00
|
|
|
|
2018-05-18 17:55:08 +00:00
|
|
|
try {
|
2018-09-19 14:18:32 +00:00
|
|
|
await promises;
|
2018-05-18 17:55:08 +00:00
|
|
|
} catch (e) {
|
|
|
|
log('subscribeRooms', e);
|
|
|
|
}
|
2018-04-24 19:34:03 +00:00
|
|
|
}
|