2017-08-09 20:18:00 +00:00
|
|
|
import Meteor from 'react-native-meteor';
|
|
|
|
import Random from 'react-native-meteor/lib/Random';
|
|
|
|
import realm from './realm';
|
|
|
|
|
|
|
|
export { Accounts } from 'react-native-meteor';
|
|
|
|
|
|
|
|
const RocketChat = {
|
2017-08-10 16:25:50 +00:00
|
|
|
|
|
|
|
createChannel({ name, users, type }) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
Meteor.call(type ? 'createChannel' : 'createPrivateGroup', name, users, type, (err, res) => (err ? reject(err) : resolve(res)));
|
|
|
|
});
|
|
|
|
},
|
2017-08-09 20:18:00 +00:00
|
|
|
get currentServer() {
|
|
|
|
const current = realm.objects('servers').filtered('current = true')[0];
|
|
|
|
return current && current.id;
|
|
|
|
},
|
|
|
|
|
|
|
|
set currentServer(server) {
|
|
|
|
realm.write(() => {
|
|
|
|
realm.objects('servers').filtered('current = true').forEach(item => (item.current = false));
|
|
|
|
realm.create('servers', { id: server, current: true }, true);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
connect(cb) {
|
|
|
|
const url = `${ RocketChat.currentServer }/websocket`;
|
|
|
|
|
|
|
|
Meteor.connect(url);
|
|
|
|
|
|
|
|
Meteor.ddp.on('connected', () => {
|
|
|
|
console.log('connected');
|
|
|
|
|
|
|
|
Meteor.call('public-settings/get', (err, data) => {
|
|
|
|
if (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
realm.write(() => {
|
|
|
|
data.forEach((item) => {
|
|
|
|
const setting = {
|
|
|
|
_id: item._id
|
|
|
|
};
|
|
|
|
setting._server = { id: RocketChat.currentServer };
|
|
|
|
if (typeof item.value === 'string') {
|
|
|
|
setting.value = item.value;
|
|
|
|
}
|
|
|
|
realm.create('settings', setting, true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
if (cb) {
|
|
|
|
cb();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Meteor.ddp.on('changed', (ddbMessage) => {
|
2017-08-10 20:09:54 +00:00
|
|
|
// console.log('changed', ddbMessage);
|
2017-08-09 20:18:00 +00:00
|
|
|
if (ddbMessage.collection === 'stream-room-messages') {
|
|
|
|
realm.write(() => {
|
|
|
|
const message = ddbMessage.fields.args[0];
|
|
|
|
message.temp = false;
|
|
|
|
message._server = { id: RocketChat.currentServer };
|
|
|
|
realm.create('messages', message, true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ddbMessage.collection === 'stream-notify-user') {
|
2017-08-10 16:25:50 +00:00
|
|
|
console.log(ddbMessage);
|
2017-08-09 20:18:00 +00:00
|
|
|
realm.write(() => {
|
|
|
|
const data = ddbMessage.fields.args[1];
|
|
|
|
data._server = { id: RocketChat.currentServer };
|
|
|
|
realm.create('subscriptions', data, true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
loginWithPassword(selector, password, cb) {
|
|
|
|
Meteor.loginWithPassword(selector, password, () => cb && cb());
|
|
|
|
},
|
|
|
|
|
|
|
|
loadSubscriptions(cb) {
|
|
|
|
Meteor.call('subscriptions/get', (err, data) => {
|
|
|
|
if (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
realm.write(() => {
|
|
|
|
data.forEach((subscription) => {
|
|
|
|
// const subscription = {
|
|
|
|
// _id: item._id
|
|
|
|
// };
|
|
|
|
// if (typeof item.value === 'string') {
|
|
|
|
// subscription.value = item.value;
|
|
|
|
// }
|
|
|
|
subscription._server = { id: RocketChat.currentServer };
|
|
|
|
realm.create('subscriptions', subscription, true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
return cb && cb();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-08-10 23:21:46 +00:00
|
|
|
loadMessagesForRoom(rid, end, cb) {
|
|
|
|
Meteor.call('loadHistory', rid, end, 20, (err, data) => {
|
2017-08-09 20:18:00 +00:00
|
|
|
if (err) {
|
|
|
|
console.error(err);
|
2017-08-10 23:21:46 +00:00
|
|
|
if (cb) {
|
|
|
|
cb({ end: true });
|
|
|
|
}
|
|
|
|
return;
|
2017-08-09 20:18:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
realm.write(() => {
|
|
|
|
data.messages.forEach((message) => {
|
|
|
|
message.temp = false;
|
|
|
|
message._server = { id: RocketChat.currentServer };
|
|
|
|
realm.create('messages', message, true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
if (cb) {
|
2017-08-10 23:21:46 +00:00
|
|
|
if (data.messages.length < 20) {
|
|
|
|
cb({ end: true });
|
|
|
|
} else {
|
|
|
|
cb({ end: false });
|
|
|
|
}
|
2017-08-09 20:18:00 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Meteor.subscribe('stream-room-messages', rid, false);
|
|
|
|
},
|
|
|
|
|
|
|
|
sendMessage(rid, msg) {
|
|
|
|
const _id = Random.id();
|
|
|
|
const user = Meteor.user();
|
|
|
|
|
|
|
|
realm.write(() => {
|
|
|
|
realm.create('messages', {
|
|
|
|
_id,
|
|
|
|
rid,
|
|
|
|
msg,
|
|
|
|
ts: new Date(),
|
|
|
|
_updatedAt: new Date(),
|
|
|
|
temp: true,
|
|
|
|
_server: { id: RocketChat.currentServer },
|
|
|
|
u: {
|
|
|
|
_id: user._id,
|
|
|
|
username: user.username
|
|
|
|
}
|
|
|
|
}, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
Meteor.call('sendMessage', { _id, rid, msg }, (error, result) => {
|
|
|
|
if (error) {
|
|
|
|
return reject(error);
|
|
|
|
}
|
|
|
|
return resolve(result);
|
|
|
|
});
|
|
|
|
});
|
2017-08-10 16:16:32 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
spotlight(search, usernames) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
Meteor.call('spotlight', search, usernames, (error, result) => {
|
|
|
|
if (error) {
|
|
|
|
return reject(error);
|
|
|
|
}
|
|
|
|
return resolve(result);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
createDirectMessage(username) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
Meteor.call('createDirectMessage', username, (error, result) => {
|
|
|
|
if (error) {
|
|
|
|
return reject(error);
|
|
|
|
}
|
|
|
|
return resolve(result);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
joinRoom(rid) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
Meteor.call('joinRoom', rid, (error, result) => {
|
|
|
|
if (error) {
|
|
|
|
return reject(error);
|
|
|
|
}
|
|
|
|
return resolve(result);
|
|
|
|
});
|
|
|
|
});
|
2017-08-10 20:09:54 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
"name":"yXfExLErmNR5eNPx7.png"
|
|
|
|
"size":961
|
|
|
|
"type":"image/png"
|
|
|
|
"rid":"GENERAL"
|
|
|
|
"description":""
|
|
|
|
"store":"fileSystem"
|
|
|
|
*/
|
|
|
|
ufsCreate(fileInfo) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
Meteor.call('ufsCreate', fileInfo, (error, result) => {
|
|
|
|
if (error) {
|
|
|
|
return reject(error);
|
|
|
|
}
|
|
|
|
return resolve(result);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// ["ZTE8CKHJt7LATv7Me","fileSystem","e8E96b2819"
|
|
|
|
ufsComplete(fileId, store, token) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
Meteor.call('ufsComplete', fileId, store, token, (error, result) => {
|
|
|
|
if (error) {
|
|
|
|
return reject(error);
|
|
|
|
}
|
|
|
|
return resolve(result);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
/*
|
|
|
|
- "GENERAL"
|
|
|
|
- {
|
|
|
|
"type":"image/png",
|
|
|
|
"size":961,
|
|
|
|
"name":"yXfExLErmNR5eNPx7.png",
|
|
|
|
"description":"",
|
|
|
|
"url":"/ufs/fileSystem/ZTE8CKHJt7LATv7Me/yXfExLErmNR5eNPx7.png"
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
sendFileMessage(rid, message) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
Meteor.call('sendFileMessage', rid, null, message, (error, result) => {
|
|
|
|
if (error) {
|
|
|
|
return reject(error);
|
|
|
|
}
|
|
|
|
return resolve(result);
|
|
|
|
});
|
|
|
|
});
|
2017-08-09 20:18:00 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default RocketChat;
|
|
|
|
|
|
|
|
Meteor.Accounts.onLogin(() => {
|
|
|
|
Meteor.call('subscriptions/get', (err, data) => {
|
|
|
|
if (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
realm.write(() => {
|
|
|
|
data.forEach((subscription) => {
|
|
|
|
// const subscription = {
|
|
|
|
// _id: item._id
|
|
|
|
// };
|
|
|
|
// if (typeof item.value === 'string') {
|
|
|
|
// subscription.value = item.value;
|
|
|
|
// }
|
|
|
|
subscription._server = { id: RocketChat.currentServer };
|
|
|
|
realm.create('subscriptions', subscription, true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
Meteor.subscribe('stream-notify-user', `${ Meteor.userId() }/subscriptions-changed`, false);
|
|
|
|
});
|
|
|
|
});
|