2020-05-08 17:04:37 +00:00
|
|
|
import { InteractionManager } from 'react-native';
|
2021-05-26 17:24:54 +00:00
|
|
|
import EJSON from 'ejson';
|
2020-09-24 19:06:02 +00:00
|
|
|
import {
|
|
|
|
Rocketchat as RocketchatClient,
|
|
|
|
settings as RocketChatSettings
|
|
|
|
} from '@rocket.chat/sdk';
|
2019-09-16 20:26:32 +00:00
|
|
|
import { Q } from '@nozbe/watermelondb';
|
2020-05-08 17:04:37 +00:00
|
|
|
import AsyncStorage from '@react-native-community/async-storage';
|
2020-10-30 13:12:02 +00:00
|
|
|
import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord';
|
2020-09-11 16:30:28 +00:00
|
|
|
import RNFetchBlob from 'rn-fetch-blob';
|
2018-05-18 17:55:08 +00:00
|
|
|
|
2021-03-18 13:33:35 +00:00
|
|
|
import { compareServerVersion, methods } from './utils';
|
2017-09-21 17:08:00 +00:00
|
|
|
import reduxStore from './createStore';
|
2018-06-18 13:30:36 +00:00
|
|
|
import defaultSettings from '../constants/settings';
|
2019-09-16 20:26:32 +00:00
|
|
|
import database from './database';
|
2018-05-18 17:55:08 +00:00
|
|
|
import log from '../utils/log';
|
2019-02-07 15:48:10 +00:00
|
|
|
import { isIOS, getBundleId } from '../utils/deviceInfo';
|
2020-05-04 20:20:45 +00:00
|
|
|
import fetch from '../utils/fetch';
|
2020-11-30 17:00:06 +00:00
|
|
|
import SSLPinning from '../utils/sslPinning';
|
2018-04-24 19:34:03 +00:00
|
|
|
|
2020-09-11 14:31:38 +00:00
|
|
|
import { encryptionInit } from '../actions/encryption';
|
2019-11-27 20:52:49 +00:00
|
|
|
import { setUser, setLoginServices, loginRequest } from '../actions/login';
|
2018-12-05 20:52:08 +00:00
|
|
|
import { disconnect, connectSuccess, connectRequest } from '../actions/connect';
|
2020-10-30 15:54:02 +00:00
|
|
|
import { shareSelectServer, shareSetUser, shareSetSettings } from '../actions/share';
|
2017-08-15 19:28:46 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
import subscribeRooms from './methods/subscriptions/rooms';
|
2020-03-03 21:10:39 +00:00
|
|
|
import getUsersPresence, { getUserPresence, subscribeUsersPresence } from './methods/getUsersPresence';
|
2017-08-11 18:18:09 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
import protectedFunction from './methods/helpers/protectedFunction';
|
|
|
|
import readMessages from './methods/readMessages';
|
2020-03-03 20:53:48 +00:00
|
|
|
import getSettings, { getLoginSettings, setSettings } from './methods/getSettings';
|
2018-02-19 21:15:31 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
import getRooms from './methods/getRooms';
|
2021-02-25 16:41:44 +00:00
|
|
|
import { setPermissions, getPermissions } from './methods/getPermissions';
|
2019-09-16 20:26:32 +00:00
|
|
|
import { getCustomEmojis, setCustomEmojis } from './methods/getCustomEmojis';
|
2020-08-21 13:38:50 +00:00
|
|
|
import {
|
|
|
|
getEnterpriseModules, setEnterpriseModules, hasLicense, isOmnichannelModuleAvailable
|
|
|
|
} from './methods/enterpriseModules';
|
2019-06-10 18:36:56 +00:00
|
|
|
import getSlashCommands from './methods/getSlashCommands';
|
2019-04-26 21:15:25 +00:00
|
|
|
import getRoles from './methods/getRoles';
|
2018-05-07 20:43:26 +00:00
|
|
|
import canOpenRoom from './methods/canOpenRoom';
|
2020-02-11 14:01:35 +00:00
|
|
|
import triggerBlockAction, { triggerSubmitView, triggerCancel } from './methods/actions';
|
2018-04-24 19:34:03 +00:00
|
|
|
|
|
|
|
import loadMessagesForRoom from './methods/loadMessagesForRoom';
|
2021-05-26 17:24:54 +00:00
|
|
|
import loadSurroundingMessages from './methods/loadSurroundingMessages';
|
|
|
|
import loadNextMessages from './methods/loadNextMessages';
|
2018-04-24 19:34:03 +00:00
|
|
|
import loadMissedMessages from './methods/loadMissedMessages';
|
2019-04-17 17:01:03 +00:00
|
|
|
import loadThreadMessages from './methods/loadThreadMessages';
|
2018-02-19 21:15:31 +00:00
|
|
|
|
2020-09-11 14:31:38 +00:00
|
|
|
import sendMessage, { resendMessage } from './methods/sendMessage';
|
2018-07-17 19:10:27 +00:00
|
|
|
import { sendFileMessage, cancelUpload, isUploadActive } from './methods/sendFileMessage';
|
2018-04-24 19:34:03 +00:00
|
|
|
|
2019-09-18 17:32:12 +00:00
|
|
|
import callJitsi from './methods/callJitsi';
|
2020-05-04 20:20:45 +00:00
|
|
|
import logout, { removeServer } from './methods/logout';
|
2019-09-18 17:32:12 +00:00
|
|
|
|
2019-06-10 16:23:19 +00:00
|
|
|
import { getDeviceToken } from '../notifications/push';
|
2019-09-16 20:26:32 +00:00
|
|
|
import { setActiveUsers } from '../actions/activeUsers';
|
2019-11-13 19:52:00 +00:00
|
|
|
import I18n from '../i18n';
|
2020-04-01 20:32:24 +00:00
|
|
|
import { twoFactor } from '../utils/twoFactor';
|
2020-05-05 13:11:28 +00:00
|
|
|
import { selectServerFailure } from '../actions/server';
|
2020-05-04 20:20:45 +00:00
|
|
|
import { useSsl } from '../utils/url';
|
2020-08-19 17:14:22 +00:00
|
|
|
import UserPreferences from './userPreferences';
|
2020-09-11 14:31:38 +00:00
|
|
|
import { Encryption } from './encryption';
|
2020-08-28 19:41:08 +00:00
|
|
|
import EventEmitter from '../utils/events';
|
2020-09-15 13:01:43 +00:00
|
|
|
import { sanitizeLikeString } from './database/utils';
|
2021-05-12 19:01:29 +00:00
|
|
|
import { TEAM_TYPE } from '../definition/ITeam';
|
2018-07-10 13:40:32 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
const TOKEN_KEY = 'reactnativemeteor_usertoken';
|
2020-08-19 17:14:22 +00:00
|
|
|
const CURRENT_SERVER = 'currentServer';
|
2018-09-04 14:29:20 +00:00
|
|
|
const SORT_PREFS_KEY = 'RC_SORT_PREFS_KEY';
|
2020-11-30 17:00:06 +00:00
|
|
|
const CERTIFICATE_KEY = 'RC_CERTIFICATE_KEY';
|
2019-12-04 16:39:53 +00:00
|
|
|
export const THEME_PREFERENCES_KEY = 'RC_THEME_PREFERENCES_KEY';
|
2019-08-23 13:18:47 +00:00
|
|
|
export const CRASH_REPORT_KEY = 'RC_CRASH_REPORT_KEY';
|
2020-09-11 17:34:11 +00:00
|
|
|
export const ANALYTICS_EVENTS_KEY = 'RC_ANALYTICS_EVENTS_KEY';
|
2019-04-26 21:15:25 +00:00
|
|
|
const MIN_ROCKETCHAT_VERSION = '0.70.0';
|
2018-02-19 21:15:31 +00:00
|
|
|
|
2019-05-28 16:52:26 +00:00
|
|
|
const STATUSES = ['offline', 'online', 'away', 'busy'];
|
|
|
|
|
2017-08-13 01:35:09 +00:00
|
|
|
const RocketChat = {
|
2017-11-13 13:53:45 +00:00
|
|
|
TOKEN_KEY,
|
2020-08-19 17:14:22 +00:00
|
|
|
CURRENT_SERVER,
|
2020-11-30 17:00:06 +00:00
|
|
|
CERTIFICATE_KEY,
|
2019-09-18 17:32:12 +00:00
|
|
|
callJitsi,
|
2019-08-27 17:41:07 +00:00
|
|
|
async subscribeRooms() {
|
2020-04-03 18:03:53 +00:00
|
|
|
if (!this.roomsSub) {
|
|
|
|
try {
|
|
|
|
this.roomsSub = await subscribeRooms.call(this);
|
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
}
|
2019-08-27 17:41:07 +00:00
|
|
|
},
|
2020-10-30 18:31:04 +00:00
|
|
|
unsubscribeRooms() {
|
|
|
|
if (this.roomsSub) {
|
|
|
|
this.roomsSub.stop();
|
|
|
|
this.roomsSub = null;
|
|
|
|
}
|
|
|
|
},
|
2018-05-07 20:43:26 +00:00
|
|
|
canOpenRoom,
|
2018-05-24 20:17:45 +00:00
|
|
|
createChannel({
|
[NEW] Add/Create/Remove channel on a team (#3090)
* Added Create Team
* Added actionTypes, actions, ENG strings for Teams and updated NewMessageView
* Added createTeam sagas, createTeam reducer, new Team string and update CreateChannelView
* Remove unnecessary actionTypes, reducers and sagas, e2e tests and navigation to team view
* Minor tweaks
* Show TeamChannelsView only if joined the team
* Minor tweak
* Added AddChannelTeamView
* Added permissions, translations strings for teams, deleteTeamRoom and addTeamRooms, AddExistingChannelView, updated CreateChannelView, TeamChannelsView
* Refactor touch component and update removeRoom and deleteRoom methods
* Minor tweaks
* Minor tweaks for removing channels and addExistingChannelView
* Added missing events and fixed channels list
* Minor tweaks for refactored touch component
* Minor tweaks
* Remove unnecesary changes, update TeamChannelsView, AddExistingChannelView, AddChannelTeamView, createChannel, goRoom and Touchable
* Add screens to ModalStack, events, autoJoin, update createChannel, addRoomsToTeam and Touchable
* Minor tweak
* Update loadMessagesForRoom.js
* Updated schema, tag component, touch, AddChannelTeamView, AddExistingChannelView, ActionSheet Item
* Fix unnecessary changes
* Add i18n, update createChannel, AddExistingChannelTeamView, AddChannelTeamView, RightButton and TeamChannelsView
* Updated styles, added tag story
* Minor tweak
* Minor tweaks
* Auto-join tweak
* Minor tweaks
* Minor tweak on search
* One way to refactor :P
* Next level refactor :)
* Fix create group dm
* Refactor renderItem
* Minor bug fixes
* Fix stories
Co-authored-by: Diego Mello <diegolmello@gmail.com>
2021-05-19 21:14:42 +00:00
|
|
|
name, users, type, readOnly, broadcast, encrypted, teamId
|
2018-05-24 20:17:45 +00:00
|
|
|
}) {
|
[NEW] Add/Create/Remove channel on a team (#3090)
* Added Create Team
* Added actionTypes, actions, ENG strings for Teams and updated NewMessageView
* Added createTeam sagas, createTeam reducer, new Team string and update CreateChannelView
* Remove unnecessary actionTypes, reducers and sagas, e2e tests and navigation to team view
* Minor tweaks
* Show TeamChannelsView only if joined the team
* Minor tweak
* Added AddChannelTeamView
* Added permissions, translations strings for teams, deleteTeamRoom and addTeamRooms, AddExistingChannelView, updated CreateChannelView, TeamChannelsView
* Refactor touch component and update removeRoom and deleteRoom methods
* Minor tweaks
* Minor tweaks for removing channels and addExistingChannelView
* Added missing events and fixed channels list
* Minor tweaks for refactored touch component
* Minor tweaks
* Remove unnecesary changes, update TeamChannelsView, AddExistingChannelView, AddChannelTeamView, createChannel, goRoom and Touchable
* Add screens to ModalStack, events, autoJoin, update createChannel, addRoomsToTeam and Touchable
* Minor tweak
* Update loadMessagesForRoom.js
* Updated schema, tag component, touch, AddChannelTeamView, AddExistingChannelView, ActionSheet Item
* Fix unnecessary changes
* Add i18n, update createChannel, AddExistingChannelTeamView, AddChannelTeamView, RightButton and TeamChannelsView
* Updated styles, added tag story
* Minor tweak
* Minor tweaks
* Auto-join tweak
* Minor tweaks
* Minor tweak on search
* One way to refactor :P
* Next level refactor :)
* Fix create group dm
* Refactor renderItem
* Minor bug fixes
* Fix stories
Co-authored-by: Diego Mello <diegolmello@gmail.com>
2021-05-19 21:14:42 +00:00
|
|
|
const params = {
|
|
|
|
name,
|
|
|
|
members: users,
|
|
|
|
readOnly,
|
|
|
|
extraData: {
|
|
|
|
broadcast,
|
|
|
|
encrypted,
|
|
|
|
...(teamId && { teamId })
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return this.post(type ? 'groups.create' : 'channels.create', params);
|
2017-08-10 16:25:50 +00:00
|
|
|
},
|
2019-11-13 19:52:00 +00:00
|
|
|
async getWebsocketInfo({ server }) {
|
2020-05-04 20:20:45 +00:00
|
|
|
const sdk = new RocketchatClient({ host: server, protocol: 'ddp', useSsl: useSsl(server) });
|
2019-11-13 19:52:00 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
await sdk.connect();
|
|
|
|
} catch (err) {
|
|
|
|
if (err.message && err.message.includes('400')) {
|
|
|
|
return {
|
|
|
|
success: false,
|
2020-09-11 16:30:28 +00:00
|
|
|
message: I18n.t('Websocket_disabled', { contact: I18n.t('Contact_your_server_admin') })
|
2019-11-13 19:52:00 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sdk.disconnect();
|
|
|
|
|
|
|
|
return {
|
|
|
|
success: true
|
|
|
|
};
|
|
|
|
},
|
2019-04-17 17:01:03 +00:00
|
|
|
async getServerInfo(server) {
|
2018-08-01 19:35:06 +00:00
|
|
|
try {
|
2020-09-24 19:06:02 +00:00
|
|
|
const response = await RNFetchBlob.fetch('GET', `${ server }/api/info`, { ...RocketChatSettings.customHeaders });
|
2020-09-11 16:30:28 +00:00
|
|
|
try {
|
|
|
|
// Try to resolve as json
|
|
|
|
const jsonRes = response.json();
|
|
|
|
if (!(jsonRes?.success)) {
|
|
|
|
return {
|
|
|
|
success: false,
|
|
|
|
message: I18n.t('Not_RC_Server', { contact: I18n.t('Contact_your_server_admin') })
|
|
|
|
};
|
2019-11-13 19:52:00 +00:00
|
|
|
}
|
2021-03-18 13:33:35 +00:00
|
|
|
if (compareServerVersion(jsonRes.version, MIN_ROCKETCHAT_VERSION, methods.lowerThan)) {
|
2018-12-21 10:55:35 +00:00
|
|
|
return {
|
|
|
|
success: false,
|
2020-09-11 16:30:28 +00:00
|
|
|
message: I18n.t('Invalid_server_version', {
|
|
|
|
currentVersion: jsonRes.version,
|
2018-12-21 10:55:35 +00:00
|
|
|
minVersion: MIN_ROCKETCHAT_VERSION
|
2020-09-11 16:30:28 +00:00
|
|
|
})
|
2018-12-21 10:55:35 +00:00
|
|
|
};
|
|
|
|
}
|
2020-09-11 16:30:28 +00:00
|
|
|
return jsonRes;
|
|
|
|
} catch (error) {
|
|
|
|
// Request is successful, but response isn't a json
|
2017-09-01 19:42:50 +00:00
|
|
|
}
|
2018-08-01 19:35:06 +00:00
|
|
|
} catch (e) {
|
2020-09-11 16:30:28 +00:00
|
|
|
if (e?.message) {
|
|
|
|
if (e.message === 'Aborted') {
|
|
|
|
reduxStore.dispatch(selectServerFailure());
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
success: false,
|
|
|
|
message: e.message
|
|
|
|
};
|
2020-05-05 13:11:28 +00:00
|
|
|
}
|
2017-09-01 19:42:50 +00:00
|
|
|
}
|
2020-09-11 16:30:28 +00:00
|
|
|
|
2018-12-21 10:55:35 +00:00
|
|
|
return {
|
|
|
|
success: false,
|
2020-09-11 16:30:28 +00:00
|
|
|
message: I18n.t('Not_RC_Server', { contact: I18n.t('Contact_your_server_admin') })
|
2018-12-21 10:55:35 +00:00
|
|
|
};
|
2017-09-01 19:42:50 +00:00
|
|
|
},
|
2019-09-16 20:26:32 +00:00
|
|
|
stopListener(listener) {
|
|
|
|
return listener && listener.stop();
|
2017-12-08 19:13:21 +00:00
|
|
|
},
|
2020-05-05 13:11:28 +00:00
|
|
|
// Abort all requests and create a new AbortController
|
|
|
|
abort() {
|
|
|
|
if (this.controller) {
|
|
|
|
this.controller.abort();
|
|
|
|
if (this.sdk) {
|
|
|
|
this.sdk.abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.controller = new AbortController();
|
|
|
|
},
|
2021-03-05 16:10:21 +00:00
|
|
|
checkAndReopen() {
|
|
|
|
return this?.sdk?.checkAndReopen();
|
|
|
|
},
|
2021-04-01 12:58:20 +00:00
|
|
|
disconnect() {
|
|
|
|
this.sdk?.disconnect?.();
|
|
|
|
this.sdk = null;
|
|
|
|
},
|
2019-11-27 20:52:49 +00:00
|
|
|
connect({ server, user, logoutOnError = false }) {
|
2019-06-05 19:11:29 +00:00
|
|
|
return new Promise((resolve) => {
|
2021-03-05 16:10:21 +00:00
|
|
|
if (this?.sdk?.client?.host === server) {
|
|
|
|
return resolve();
|
|
|
|
} else {
|
2021-04-01 12:58:20 +00:00
|
|
|
this.disconnect();
|
2019-09-16 20:26:32 +00:00
|
|
|
database.setActiveDB(server);
|
|
|
|
}
|
2019-06-05 19:11:29 +00:00
|
|
|
reduxStore.dispatch(connectRequest());
|
2017-11-19 02:44:55 +00:00
|
|
|
|
2019-06-05 19:11:29 +00:00
|
|
|
if (this.connectTimeout) {
|
|
|
|
clearTimeout(this.connectTimeout);
|
|
|
|
}
|
2019-02-12 16:14:11 +00:00
|
|
|
|
2021-05-05 16:02:26 +00:00
|
|
|
if (this.connectingListener) {
|
|
|
|
this.connectingListener.then(this.stopListener);
|
|
|
|
}
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
if (this.connectedListener) {
|
|
|
|
this.connectedListener.then(this.stopListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.closeListener) {
|
|
|
|
this.closeListener.then(this.stopListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.usersListener) {
|
|
|
|
this.usersListener.then(this.stopListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.notifyLoggedListener) {
|
|
|
|
this.notifyLoggedListener.then(this.stopListener);
|
|
|
|
}
|
|
|
|
|
2020-10-30 18:31:04 +00:00
|
|
|
this.unsubscribeRooms();
|
2019-06-17 13:57:07 +00:00
|
|
|
|
2020-08-28 19:41:08 +00:00
|
|
|
EventEmitter.emit('INQUIRY_UNSUBSCRIBE');
|
2020-07-31 18:22:30 +00:00
|
|
|
|
2020-04-01 20:32:24 +00:00
|
|
|
if (this.code) {
|
|
|
|
this.code = null;
|
|
|
|
}
|
|
|
|
|
2020-05-04 20:20:45 +00:00
|
|
|
this.sdk = new RocketchatClient({ host: server, protocol: 'ddp', useSsl: useSsl(server) });
|
2019-06-05 19:11:29 +00:00
|
|
|
this.getSettings();
|
|
|
|
|
2020-04-03 18:03:53 +00:00
|
|
|
const sdkConnect = () => this.sdk.connect()
|
2019-06-05 19:11:29 +00:00
|
|
|
.then(() => {
|
2020-05-05 13:11:28 +00:00
|
|
|
const { server: currentServer } = reduxStore.getState().server;
|
|
|
|
if (user && user.token && server === currentServer) {
|
2019-11-27 20:52:49 +00:00
|
|
|
reduxStore.dispatch(loginRequest({ resume: user.token }, logoutOnError));
|
2019-06-05 19:11:29 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
console.log('connect error', err);
|
|
|
|
|
2020-05-18 17:55:53 +00:00
|
|
|
// when `connect` raises an error, we try again in 10 seconds
|
|
|
|
this.connectTimeout = setTimeout(() => {
|
|
|
|
if (this.sdk?.client?.host === server) {
|
2020-05-05 13:11:28 +00:00
|
|
|
sdkConnect();
|
2020-05-18 17:55:53 +00:00
|
|
|
}
|
|
|
|
}, 10000);
|
2019-06-05 19:11:29 +00:00
|
|
|
});
|
2019-02-07 15:48:10 +00:00
|
|
|
|
2020-04-03 18:03:53 +00:00
|
|
|
sdkConnect();
|
|
|
|
|
2021-05-05 16:02:26 +00:00
|
|
|
this.connectingListener = this.sdk.onStreamData('connecting', () => {
|
2021-03-05 16:10:21 +00:00
|
|
|
reduxStore.dispatch(connectRequest());
|
|
|
|
});
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
this.connectedListener = this.sdk.onStreamData('connected', () => {
|
2019-06-05 19:11:29 +00:00
|
|
|
reduxStore.dispatch(connectSuccess());
|
2019-02-07 15:48:10 +00:00
|
|
|
});
|
2018-04-24 19:34:03 +00:00
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
this.closeListener = this.sdk.onStreamData('close', () => {
|
2019-06-05 19:11:29 +00:00
|
|
|
reduxStore.dispatch(disconnect());
|
|
|
|
});
|
2019-05-28 16:52:26 +00:00
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
this.usersListener = this.sdk.onStreamData('users', protectedFunction(ddpMessage => RocketChat._setUser(ddpMessage)));
|
2019-06-05 19:11:29 +00:00
|
|
|
|
2020-10-30 13:12:02 +00:00
|
|
|
this.notifyLoggedListener = this.sdk.onStreamData('stream-notify-logged', protectedFunction(async(ddpMessage) => {
|
2019-06-05 19:11:29 +00:00
|
|
|
const { eventName } = ddpMessage.fields;
|
2020-10-30 13:12:02 +00:00
|
|
|
if (/user-status/.test(eventName)) {
|
2019-09-16 20:26:32 +00:00
|
|
|
this.activeUsers = this.activeUsers || {};
|
|
|
|
if (!this._setUserTimer) {
|
|
|
|
this._setUserTimer = setTimeout(() => {
|
|
|
|
const activeUsersBatch = this.activeUsers;
|
|
|
|
InteractionManager.runAfterInteractions(() => {
|
|
|
|
reduxStore.dispatch(setActiveUsers(activeUsersBatch));
|
|
|
|
});
|
|
|
|
this._setUserTimer = null;
|
|
|
|
return this.activeUsers = {};
|
|
|
|
}, 10000);
|
|
|
|
}
|
2019-06-05 19:11:29 +00:00
|
|
|
const userStatus = ddpMessage.fields.args[0];
|
2020-03-30 20:19:01 +00:00
|
|
|
const [id,, status, statusText] = userStatus;
|
|
|
|
this.activeUsers[id] = { status: STATUSES[status], statusText };
|
2019-09-16 20:26:32 +00:00
|
|
|
|
|
|
|
const { user: loggedUser } = reduxStore.getState().login;
|
|
|
|
if (loggedUser && loggedUser.id === id) {
|
2020-03-30 20:19:01 +00:00
|
|
|
reduxStore.dispatch(setUser({ status: STATUSES[status], statusText }));
|
2019-06-05 19:11:29 +00:00
|
|
|
}
|
2020-10-30 13:12:02 +00:00
|
|
|
} else if (/updateAvatar/.test(eventName)) {
|
|
|
|
const { username, etag } = ddpMessage.fields.args[0];
|
|
|
|
const db = database.active;
|
2021-02-26 16:25:51 +00:00
|
|
|
const userCollection = db.get('users');
|
2020-10-30 13:12:02 +00:00
|
|
|
try {
|
|
|
|
const [userRecord] = await userCollection.query(Q.where('username', Q.eq(username))).fetch();
|
|
|
|
await db.action(async() => {
|
|
|
|
await userRecord.update((u) => {
|
|
|
|
u.avatarETag = etag;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} catch {
|
|
|
|
// We can't create a new record since we don't receive the user._id
|
|
|
|
}
|
|
|
|
} else if (/Users:NameChanged/.test(eventName)) {
|
|
|
|
const userNameChanged = ddpMessage.fields.args[0];
|
|
|
|
const db = database.active;
|
2021-02-26 16:25:51 +00:00
|
|
|
const userCollection = db.get('users');
|
2020-10-30 13:12:02 +00:00
|
|
|
try {
|
|
|
|
const userRecord = await userCollection.find(userNameChanged._id);
|
|
|
|
await db.action(async() => {
|
|
|
|
await userRecord.update((u) => {
|
|
|
|
Object.assign(u, userNameChanged);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} catch {
|
|
|
|
// User not found
|
|
|
|
await db.action(async() => {
|
|
|
|
await userCollection.create((u) => {
|
|
|
|
u._raw = sanitizedRaw({ id: userNameChanged._id }, userCollection.schema);
|
|
|
|
Object.assign(u, userNameChanged);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2019-05-28 16:52:26 +00:00
|
|
|
}
|
2019-06-05 19:11:29 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
resolve();
|
|
|
|
});
|
2018-11-16 11:06:29 +00:00
|
|
|
},
|
2017-11-24 20:44:52 +00:00
|
|
|
|
2019-07-29 16:33:28 +00:00
|
|
|
async shareExtensionInit(server) {
|
2019-12-04 16:41:37 +00:00
|
|
|
database.setShareDB(server);
|
2019-07-29 16:33:28 +00:00
|
|
|
|
2020-11-30 17:00:06 +00:00
|
|
|
try {
|
|
|
|
const certificate = await UserPreferences.getStringAsync(`${ RocketChat.CERTIFICATE_KEY }-${ server }`);
|
|
|
|
await SSLPinning.setCertificate(certificate, server);
|
|
|
|
} catch {
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
2019-12-04 16:41:37 +00:00
|
|
|
if (this.shareSDK) {
|
|
|
|
this.shareSDK.disconnect();
|
|
|
|
this.shareSDK = null;
|
2019-07-29 16:33:28 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 20:20:45 +00:00
|
|
|
this.shareSDK = new RocketchatClient({ host: server, protocol: 'ddp', useSsl: useSsl(server) });
|
2019-07-29 16:33:28 +00:00
|
|
|
|
|
|
|
// set Server
|
2020-11-04 16:53:44 +00:00
|
|
|
const currentServer = { server };
|
2019-09-16 20:26:32 +00:00
|
|
|
const serversDB = database.servers;
|
2021-02-26 16:25:51 +00:00
|
|
|
const serversCollection = serversDB.get('servers');
|
2020-11-04 16:53:44 +00:00
|
|
|
try {
|
|
|
|
const serverRecord = await serversCollection.find(server);
|
|
|
|
currentServer.version = serverRecord.version;
|
|
|
|
} catch {
|
|
|
|
// Record not found
|
|
|
|
}
|
|
|
|
reduxStore.dispatch(shareSelectServer(currentServer));
|
2019-07-29 16:33:28 +00:00
|
|
|
|
2020-07-08 16:19:41 +00:00
|
|
|
RocketChat.setCustomEmojis();
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
try {
|
2020-10-30 15:54:02 +00:00
|
|
|
// set Settings
|
|
|
|
const settings = ['Accounts_AvatarBlockUnauthenticatedAccess'];
|
|
|
|
const db = database.active;
|
2021-02-26 16:25:51 +00:00
|
|
|
const settingsCollection = db.get('settings');
|
2020-10-30 15:54:02 +00:00
|
|
|
const settingsRecords = await settingsCollection.query(Q.where('id', Q.oneOf(settings))).fetch();
|
|
|
|
const parsed = Object.values(settingsRecords).map(item => ({
|
|
|
|
_id: item.id,
|
|
|
|
valueAsString: item.valueAsString,
|
|
|
|
valueAsBoolean: item.valueAsBoolean,
|
|
|
|
valueAsNumber: item.valueAsNumber,
|
|
|
|
valueAsArray: item.valueAsArray,
|
|
|
|
_updatedAt: item._updatedAt
|
|
|
|
}));
|
|
|
|
reduxStore.dispatch(shareSetSettings(this.parseSettings(parsed)));
|
|
|
|
|
|
|
|
// set User info
|
2020-08-19 17:14:22 +00:00
|
|
|
const userId = await UserPreferences.getStringAsync(`${ RocketChat.TOKEN_KEY }-${ server }`);
|
2021-02-26 16:25:51 +00:00
|
|
|
const userCollections = serversDB.get('users');
|
2019-09-16 20:26:32 +00:00
|
|
|
let user = null;
|
|
|
|
if (userId) {
|
2019-10-02 12:55:25 +00:00
|
|
|
const userRecord = await userCollections.find(userId);
|
2019-09-16 20:26:32 +00:00
|
|
|
user = {
|
2019-10-02 12:55:25 +00:00
|
|
|
id: userRecord.id,
|
|
|
|
token: userRecord.token,
|
2020-04-13 12:51:16 +00:00
|
|
|
username: userRecord.username,
|
|
|
|
roles: userRecord.roles
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
|
|
|
}
|
2020-04-13 12:51:16 +00:00
|
|
|
reduxStore.dispatch(shareSetUser(user));
|
2019-09-16 20:26:32 +00:00
|
|
|
await RocketChat.login({ resume: user.token });
|
2020-09-11 14:31:38 +00:00
|
|
|
reduxStore.dispatch(encryptionInit());
|
2019-09-16 20:26:32 +00:00
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
|
|
|
}
|
2019-07-29 16:33:28 +00:00
|
|
|
},
|
2019-12-04 16:41:37 +00:00
|
|
|
closeShareExtension() {
|
|
|
|
if (this.shareSDK) {
|
|
|
|
this.shareSDK.disconnect();
|
|
|
|
this.shareSDK = null;
|
|
|
|
}
|
|
|
|
database.share = null;
|
2020-04-13 12:51:16 +00:00
|
|
|
|
2020-11-04 16:53:44 +00:00
|
|
|
reduxStore.dispatch(shareSelectServer({}));
|
2020-05-13 19:04:50 +00:00
|
|
|
reduxStore.dispatch(shareSetUser({}));
|
2020-10-30 15:54:02 +00:00
|
|
|
reduxStore.dispatch(shareSetSettings({}));
|
2019-12-04 16:41:37 +00:00
|
|
|
},
|
2019-07-29 16:33:28 +00:00
|
|
|
|
2020-09-11 14:31:38 +00:00
|
|
|
async e2eFetchMyKeys() {
|
|
|
|
// RC 0.70.0
|
|
|
|
const sdk = this.shareSDK || this.sdk;
|
|
|
|
const result = await sdk.get('e2e.fetchMyKeys');
|
|
|
|
// snake_case -> camelCase
|
|
|
|
if (result.success) {
|
|
|
|
return {
|
|
|
|
success: result.success,
|
|
|
|
publicKey: result.public_key,
|
|
|
|
privateKey: result.private_key
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
},
|
|
|
|
e2eSetUserPublicAndPrivateKeys(public_key, private_key) {
|
|
|
|
// RC 2.2.0
|
|
|
|
return this.post('e2e.setUserPublicAndPrivateKeys', { public_key, private_key });
|
|
|
|
},
|
|
|
|
e2eRequestSubscriptionKeys() {
|
|
|
|
// RC 0.72.0
|
|
|
|
return this.methodCallWrapper('e2e.requestSubscriptionKeys');
|
|
|
|
},
|
|
|
|
e2eGetUsersOfRoomWithoutKey(rid) {
|
|
|
|
// RC 0.70.0
|
|
|
|
return this.sdk.get('e2e.getUsersOfRoomWithoutKey', { rid });
|
|
|
|
},
|
|
|
|
e2eSetRoomKeyID(rid, keyID) {
|
|
|
|
// RC 0.70.0
|
|
|
|
return this.post('e2e.setRoomKeyID', { rid, keyID });
|
|
|
|
},
|
|
|
|
e2eUpdateGroupKey(uid, rid, key) {
|
|
|
|
// RC 0.70.0
|
|
|
|
return this.post('e2e.updateGroupKey', { uid, rid, key });
|
|
|
|
},
|
|
|
|
e2eRequestRoomKey(rid, e2eKeyId) {
|
|
|
|
// RC 0.70.0
|
|
|
|
return this.methodCallWrapper('stream-notify-room-users', `${ rid }/e2ekeyRequest`, rid, e2eKeyId);
|
|
|
|
},
|
2020-10-30 18:31:04 +00:00
|
|
|
e2eResetOwnKey() {
|
|
|
|
this.unsubscribeRooms();
|
|
|
|
|
|
|
|
// RC 0.72.0
|
|
|
|
return this.methodCallWrapper('e2e.resetOwnE2EKey');
|
|
|
|
},
|
2020-09-11 14:31:38 +00:00
|
|
|
|
2020-06-29 17:57:39 +00:00
|
|
|
updateJitsiTimeout(roomId) {
|
|
|
|
// RC 0.74.0
|
2020-07-10 12:52:03 +00:00
|
|
|
return this.post('video-conference/jitsi.update-timeout', { roomId });
|
2019-09-18 17:32:12 +00:00
|
|
|
},
|
|
|
|
|
2018-12-05 20:52:08 +00:00
|
|
|
register(credentials) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.50.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('users.register', credentials, false);
|
2017-11-07 16:28:02 +00:00
|
|
|
},
|
|
|
|
|
2017-11-10 13:42:02 +00:00
|
|
|
forgotPassword(email) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.64.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('users.forgotPassword', { email }, false);
|
|
|
|
},
|
|
|
|
|
2020-08-25 20:04:18 +00:00
|
|
|
loginTOTP(params, loginEmailPassword) {
|
2020-04-01 20:32:24 +00:00
|
|
|
return new Promise(async(resolve, reject) => {
|
|
|
|
try {
|
2020-08-25 20:04:18 +00:00
|
|
|
const result = await this.login(params, loginEmailPassword);
|
2020-04-01 20:32:24 +00:00
|
|
|
return resolve(result);
|
|
|
|
} catch (e) {
|
|
|
|
if (e.data?.error && (e.data.error === 'totp-required' || e.data.error === 'totp-invalid')) {
|
|
|
|
const { details } = e.data;
|
|
|
|
try {
|
2021-03-22 17:26:44 +00:00
|
|
|
const code = await twoFactor({ method: details?.method || 'totp', invalid: details?.error === 'totp-invalid' });
|
|
|
|
|
|
|
|
if (loginEmailPassword) {
|
|
|
|
reduxStore.dispatch(setUser({ username: params.user || params.username }));
|
|
|
|
|
|
|
|
// Force normalized params for 2FA starting RC 3.9.0.
|
|
|
|
const serverVersion = reduxStore.getState().server.version;
|
|
|
|
if (compareServerVersion(serverVersion, '3.9.0', methods.greaterThanOrEqualTo)) {
|
|
|
|
const user = params.user ?? params.username;
|
|
|
|
const password = params.password ?? params.ldapPass ?? params.crowdPassword;
|
|
|
|
params = { user, password };
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolve(this.loginTOTP({ ...params, code: code?.twoFactorCode }, loginEmailPassword));
|
2020-12-01 12:54:10 +00:00
|
|
|
}
|
|
|
|
|
2021-03-22 17:26:44 +00:00
|
|
|
return resolve(this.loginTOTP({
|
|
|
|
totp: {
|
|
|
|
login: {
|
|
|
|
...params
|
|
|
|
},
|
|
|
|
code: code?.twoFactorCode
|
|
|
|
}
|
|
|
|
}));
|
2020-04-01 20:32:24 +00:00
|
|
|
} catch {
|
|
|
|
// twoFactor was canceled
|
|
|
|
return reject();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
reject(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2017-11-10 13:42:02 +00:00
|
|
|
},
|
|
|
|
|
2020-04-01 20:32:24 +00:00
|
|
|
loginWithPassword({ user, password }) {
|
2018-12-05 20:52:08 +00:00
|
|
|
let params = { user, password };
|
2017-08-13 23:02:46 +00:00
|
|
|
const state = reduxStore.getState();
|
|
|
|
|
|
|
|
if (state.settings.LDAP_Enable) {
|
|
|
|
params = {
|
2019-01-31 11:48:28 +00:00
|
|
|
username: user,
|
|
|
|
ldapPass: password,
|
2017-08-13 23:02:46 +00:00
|
|
|
ldap: true,
|
|
|
|
ldapOptions: {}
|
|
|
|
};
|
|
|
|
} else if (state.settings.CROWD_Enable) {
|
|
|
|
params = {
|
2019-11-13 16:02:36 +00:00
|
|
|
username: user,
|
|
|
|
crowdPassword: password,
|
2018-10-16 20:27:37 +00:00
|
|
|
crowd: true
|
2017-08-13 23:02:46 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-08-28 15:54:15 +00:00
|
|
|
return this.loginTOTP(params, true);
|
2017-08-09 20:18:00 +00:00
|
|
|
},
|
|
|
|
|
2019-08-09 17:28:46 +00:00
|
|
|
async loginOAuthOrSso(params) {
|
2021-03-22 17:26:44 +00:00
|
|
|
const result = await this.loginTOTP(params);
|
2020-05-08 16:37:49 +00:00
|
|
|
reduxStore.dispatch(loginRequest({ resume: result.token }));
|
2018-12-05 20:52:08 +00:00
|
|
|
},
|
|
|
|
|
2020-08-25 20:04:18 +00:00
|
|
|
async login(params, loginEmailPassword) {
|
2020-05-08 16:37:49 +00:00
|
|
|
const sdk = this.shareSDK || this.sdk;
|
|
|
|
// RC 0.64.0
|
|
|
|
await sdk.login(params);
|
|
|
|
const { result } = sdk.currentLogin;
|
|
|
|
const user = {
|
|
|
|
id: result.userId,
|
|
|
|
token: result.authToken,
|
|
|
|
username: result.me.username,
|
|
|
|
name: result.me.name,
|
|
|
|
language: result.me.language,
|
|
|
|
status: result.me.status,
|
|
|
|
statusText: result.me.statusText,
|
|
|
|
customFields: result.me.customFields,
|
2020-06-26 20:45:21 +00:00
|
|
|
statusLivechat: result.me.statusLivechat,
|
2020-05-08 16:37:49 +00:00
|
|
|
emails: result.me.emails,
|
2020-08-25 20:04:18 +00:00
|
|
|
roles: result.me.roles,
|
2020-10-30 13:12:02 +00:00
|
|
|
avatarETag: result.me.avatarETag,
|
2020-10-30 17:35:07 +00:00
|
|
|
loginEmailPassword,
|
|
|
|
showMessageInMainThread: result.me.settings?.preferences?.showMessageInMainThread ?? true
|
2020-05-08 16:37:49 +00:00
|
|
|
};
|
|
|
|
return user;
|
2018-04-24 19:34:03 +00:00
|
|
|
},
|
2020-05-04 20:20:45 +00:00
|
|
|
logout,
|
2020-08-25 16:51:49 +00:00
|
|
|
logoutOtherLocations() {
|
|
|
|
const { id: userId } = reduxStore.getState().login.user;
|
|
|
|
return this.sdk.post('users.removeOtherTokens', { userId });
|
|
|
|
},
|
2020-05-04 20:20:45 +00:00
|
|
|
removeServer,
|
2020-02-05 15:12:40 +00:00
|
|
|
async clearCache({ server }) {
|
|
|
|
try {
|
|
|
|
const serversDB = database.servers;
|
|
|
|
await serversDB.action(async() => {
|
2021-02-26 16:25:51 +00:00
|
|
|
const serverCollection = serversDB.get('servers');
|
2020-02-05 15:12:40 +00:00
|
|
|
const serverRecord = await serverCollection.find(server);
|
|
|
|
await serverRecord.update((s) => {
|
|
|
|
s.roomsUpdatedAt = null;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const db = database.active;
|
|
|
|
await db.action(() => db.unsafeResetDatabase());
|
|
|
|
} catch (e) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
},
|
2018-12-05 20:52:08 +00:00
|
|
|
registerPushToken() {
|
2019-06-17 13:57:07 +00:00
|
|
|
return new Promise(async(resolve) => {
|
2018-12-05 20:52:08 +00:00
|
|
|
const token = getDeviceToken();
|
|
|
|
if (token) {
|
2019-01-29 19:52:56 +00:00
|
|
|
const type = isIOS ? 'apn' : 'gcm';
|
2018-12-05 20:52:08 +00:00
|
|
|
const data = {
|
|
|
|
value: token,
|
|
|
|
type,
|
2019-02-07 15:48:10 +00:00
|
|
|
appName: getBundleId
|
2018-12-05 20:52:08 +00:00
|
|
|
};
|
2019-06-17 13:57:07 +00:00
|
|
|
try {
|
|
|
|
// RC 0.60.0
|
2020-04-01 20:32:24 +00:00
|
|
|
await this.post('push.token', data);
|
2019-06-17 13:57:07 +00:00
|
|
|
} catch (error) {
|
|
|
|
console.log(error);
|
|
|
|
}
|
2018-12-05 20:52:08 +00:00
|
|
|
}
|
|
|
|
return resolve();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
removePushToken() {
|
|
|
|
const token = getDeviceToken();
|
|
|
|
if (token) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.60.0
|
2019-02-07 15:48:10 +00:00
|
|
|
return this.sdk.del('push.token', { token });
|
2018-07-10 13:40:32 +00:00
|
|
|
}
|
2018-12-05 20:52:08 +00:00
|
|
|
return Promise.resolve();
|
2017-11-18 20:17:24 +00:00
|
|
|
},
|
2018-04-24 19:34:03 +00:00
|
|
|
loadMissedMessages,
|
|
|
|
loadMessagesForRoom,
|
2021-05-26 17:24:54 +00:00
|
|
|
loadSurroundingMessages,
|
|
|
|
loadNextMessages,
|
2019-04-17 17:01:03 +00:00
|
|
|
loadThreadMessages,
|
2018-04-24 19:34:03 +00:00
|
|
|
sendMessage,
|
|
|
|
getRooms,
|
|
|
|
readMessages,
|
2020-09-11 14:31:38 +00:00
|
|
|
resendMessage,
|
2017-08-10 16:16:32 +00:00
|
|
|
|
2021-01-20 17:34:01 +00:00
|
|
|
async localSearch({ text, filterUsers = true, filterRooms = true }) {
|
2018-08-31 18:13:30 +00:00
|
|
|
const searchText = text.trim();
|
2019-09-16 20:26:32 +00:00
|
|
|
const db = database.active;
|
2020-09-15 13:01:43 +00:00
|
|
|
const likeString = sanitizeLikeString(searchText);
|
2021-02-26 16:25:51 +00:00
|
|
|
let data = await db.get('subscriptions').query(
|
2020-09-15 13:01:43 +00:00
|
|
|
Q.or(
|
|
|
|
Q.where('name', Q.like(`%${ likeString }%`)),
|
|
|
|
Q.where('fname', Q.like(`%${ likeString }%`))
|
2021-01-20 17:34:01 +00:00
|
|
|
),
|
|
|
|
Q.experimentalSortBy('room_updated_at', Q.desc)
|
2019-09-16 20:26:32 +00:00
|
|
|
).fetch();
|
2018-08-31 18:13:30 +00:00
|
|
|
|
|
|
|
if (filterUsers && !filterRooms) {
|
2020-04-30 18:10:19 +00:00
|
|
|
data = data.filter(item => item.t === 'd' && !RocketChat.isGroupChat(item));
|
2018-08-31 18:13:30 +00:00
|
|
|
} else if (!filterUsers && filterRooms) {
|
2020-04-30 18:10:19 +00:00
|
|
|
data = data.filter(item => item.t !== 'd' || RocketChat.isGroupChat(item));
|
2018-08-31 18:13:30 +00:00
|
|
|
}
|
2020-08-21 13:38:50 +00:00
|
|
|
|
2018-08-31 18:13:30 +00:00
|
|
|
data = data.slice(0, 7);
|
|
|
|
|
2021-02-26 16:01:45 +00:00
|
|
|
data = data.map(sub => ({
|
|
|
|
rid: sub.rid,
|
|
|
|
name: sub.name,
|
|
|
|
fname: sub.fname,
|
|
|
|
avatarETag: sub.avatarETag,
|
|
|
|
t: sub.t,
|
|
|
|
encrypted: sub.encrypted,
|
[NEW] Add/Create/Remove channel on a team (#3090)
* Added Create Team
* Added actionTypes, actions, ENG strings for Teams and updated NewMessageView
* Added createTeam sagas, createTeam reducer, new Team string and update CreateChannelView
* Remove unnecessary actionTypes, reducers and sagas, e2e tests and navigation to team view
* Minor tweaks
* Show TeamChannelsView only if joined the team
* Minor tweak
* Added AddChannelTeamView
* Added permissions, translations strings for teams, deleteTeamRoom and addTeamRooms, AddExistingChannelView, updated CreateChannelView, TeamChannelsView
* Refactor touch component and update removeRoom and deleteRoom methods
* Minor tweaks
* Minor tweaks for removing channels and addExistingChannelView
* Added missing events and fixed channels list
* Minor tweaks for refactored touch component
* Minor tweaks
* Remove unnecesary changes, update TeamChannelsView, AddExistingChannelView, AddChannelTeamView, createChannel, goRoom and Touchable
* Add screens to ModalStack, events, autoJoin, update createChannel, addRoomsToTeam and Touchable
* Minor tweak
* Update loadMessagesForRoom.js
* Updated schema, tag component, touch, AddChannelTeamView, AddExistingChannelView, ActionSheet Item
* Fix unnecessary changes
* Add i18n, update createChannel, AddExistingChannelTeamView, AddChannelTeamView, RightButton and TeamChannelsView
* Updated styles, added tag story
* Minor tweak
* Minor tweaks
* Auto-join tweak
* Minor tweaks
* Minor tweak on search
* One way to refactor :P
* Next level refactor :)
* Fix create group dm
* Refactor renderItem
* Minor bug fixes
* Fix stories
Co-authored-by: Diego Mello <diegolmello@gmail.com>
2021-05-19 21:14:42 +00:00
|
|
|
lastMessage: sub.lastMessage,
|
|
|
|
...(sub.teamId && { teamId: sub.teamId })
|
2021-02-26 16:01:45 +00:00
|
|
|
}));
|
2020-04-13 12:51:16 +00:00
|
|
|
|
2021-01-20 17:34:01 +00:00
|
|
|
return data;
|
|
|
|
},
|
|
|
|
|
|
|
|
async search({ text, filterUsers = true, filterRooms = true }) {
|
|
|
|
const searchText = text.trim();
|
|
|
|
|
|
|
|
if (this.oldPromise) {
|
|
|
|
this.oldPromise('cancel');
|
|
|
|
}
|
|
|
|
|
2021-01-20 19:53:12 +00:00
|
|
|
const data = await this.localSearch({ text, filterUsers, filterRooms });
|
2021-01-20 17:34:01 +00:00
|
|
|
|
2018-08-31 18:13:30 +00:00
|
|
|
const usernames = data.map(sub => sub.name);
|
|
|
|
try {
|
|
|
|
if (data.length < 7) {
|
|
|
|
const { users, rooms } = await Promise.race([
|
|
|
|
RocketChat.spotlight(searchText, usernames, { users: filterUsers, rooms: filterRooms }),
|
|
|
|
new Promise((resolve, reject) => this.oldPromise = reject)
|
|
|
|
]);
|
2020-02-13 19:24:39 +00:00
|
|
|
if (filterUsers) {
|
2021-01-20 19:53:12 +00:00
|
|
|
users
|
|
|
|
.filter((item1, index) => users.findIndex(item2 => item2._id === item1._id) === index) // Remove duplicated data from response
|
|
|
|
.filter(user => !data.some(sub => user.username === sub.name)) // Make sure to remove users already on local database
|
|
|
|
.forEach((user) => {
|
|
|
|
data.push({
|
|
|
|
...user,
|
|
|
|
rid: user.username,
|
|
|
|
name: user.username,
|
|
|
|
t: 'd',
|
|
|
|
search: true
|
|
|
|
});
|
|
|
|
});
|
2020-02-13 19:24:39 +00:00
|
|
|
}
|
|
|
|
if (filterRooms) {
|
|
|
|
rooms.forEach((room) => {
|
|
|
|
// Check if it exists on local database
|
|
|
|
const index = data.findIndex(item => item.rid === room._id);
|
|
|
|
if (index === -1) {
|
|
|
|
data.push({
|
|
|
|
rid: room._id,
|
|
|
|
...room,
|
|
|
|
search: true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-08-31 18:13:30 +00:00
|
|
|
}
|
2018-09-28 20:17:49 +00:00
|
|
|
delete this.oldPromise;
|
2018-08-31 18:13:30 +00:00
|
|
|
return data;
|
|
|
|
} catch (e) {
|
|
|
|
console.warn(e);
|
2018-09-28 20:17:49 +00:00
|
|
|
return data;
|
|
|
|
// return [];
|
2018-08-31 18:13:30 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-12-20 20:14:07 +00:00
|
|
|
spotlight(search, usernames, type) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.51.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('spotlight', search, usernames, type);
|
2017-08-10 16:16:32 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
createDirectMessage(username) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.59.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('im.create', { username });
|
2017-08-10 16:16:32 +00:00
|
|
|
},
|
2020-03-30 19:50:27 +00:00
|
|
|
|
2020-04-01 12:28:54 +00:00
|
|
|
createGroupChat() {
|
2020-04-03 18:02:10 +00:00
|
|
|
const { users } = reduxStore.getState().selectedUsers;
|
|
|
|
const usernames = users.map(u => u.name).join(',');
|
2020-04-01 12:28:54 +00:00
|
|
|
|
|
|
|
// RC 3.1.0
|
2020-04-03 18:02:10 +00:00
|
|
|
return this.post('im.create', { usernames });
|
2020-04-01 12:28:54 +00:00
|
|
|
},
|
|
|
|
|
2020-03-30 19:50:27 +00:00
|
|
|
createDiscussion({
|
2021-01-20 17:34:01 +00:00
|
|
|
prid, pmid, t_name, reply, users, encrypted
|
2020-03-30 19:50:27 +00:00
|
|
|
}) {
|
|
|
|
// RC 1.0.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('rooms.createDiscussion', {
|
2021-01-20 17:34:01 +00:00
|
|
|
prid, pmid, t_name, reply, users, encrypted
|
2020-03-30 19:50:27 +00:00
|
|
|
});
|
|
|
|
},
|
2021-05-12 19:01:29 +00:00
|
|
|
createTeam({
|
|
|
|
name, users, type, readOnly, broadcast, encrypted
|
|
|
|
}) {
|
|
|
|
const params = {
|
|
|
|
name,
|
|
|
|
users,
|
|
|
|
type: type ? TEAM_TYPE.PRIVATE : TEAM_TYPE.PUBLIC,
|
|
|
|
room: {
|
|
|
|
readOnly,
|
|
|
|
extraData: {
|
|
|
|
broadcast,
|
|
|
|
encrypted
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// RC 3.13.0
|
|
|
|
return this.post('teams.create', params);
|
|
|
|
},
|
[NEW] Add/Create/Remove channel on a team (#3090)
* Added Create Team
* Added actionTypes, actions, ENG strings for Teams and updated NewMessageView
* Added createTeam sagas, createTeam reducer, new Team string and update CreateChannelView
* Remove unnecessary actionTypes, reducers and sagas, e2e tests and navigation to team view
* Minor tweaks
* Show TeamChannelsView only if joined the team
* Minor tweak
* Added AddChannelTeamView
* Added permissions, translations strings for teams, deleteTeamRoom and addTeamRooms, AddExistingChannelView, updated CreateChannelView, TeamChannelsView
* Refactor touch component and update removeRoom and deleteRoom methods
* Minor tweaks
* Minor tweaks for removing channels and addExistingChannelView
* Added missing events and fixed channels list
* Minor tweaks for refactored touch component
* Minor tweaks
* Remove unnecesary changes, update TeamChannelsView, AddExistingChannelView, AddChannelTeamView, createChannel, goRoom and Touchable
* Add screens to ModalStack, events, autoJoin, update createChannel, addRoomsToTeam and Touchable
* Minor tweak
* Update loadMessagesForRoom.js
* Updated schema, tag component, touch, AddChannelTeamView, AddExistingChannelView, ActionSheet Item
* Fix unnecessary changes
* Add i18n, update createChannel, AddExistingChannelTeamView, AddChannelTeamView, RightButton and TeamChannelsView
* Updated styles, added tag story
* Minor tweak
* Minor tweaks
* Auto-join tweak
* Minor tweaks
* Minor tweak on search
* One way to refactor :P
* Next level refactor :)
* Fix create group dm
* Refactor renderItem
* Minor bug fixes
* Fix stories
Co-authored-by: Diego Mello <diegolmello@gmail.com>
2021-05-19 21:14:42 +00:00
|
|
|
addRoomsToTeam({ teamId, rooms }) {
|
|
|
|
// RC 3.13.0
|
|
|
|
return this.post('teams.addRooms', { teamId, rooms });
|
|
|
|
},
|
|
|
|
removeTeamRoom({ roomId, teamId }) {
|
|
|
|
// RC 3.13.0
|
|
|
|
return this.post('teams.removeRoom', { roomId, teamId });
|
|
|
|
},
|
[NEW] Leave Teams (#3116)
* Added Create Team
* Added actionTypes, actions, ENG strings for Teams and updated NewMessageView
* Added createTeam sagas, createTeam reducer, new Team string and update CreateChannelView
* Remove unnecessary actionTypes, reducers and sagas, e2e tests and navigation to team view
* Minor tweaks
* Show TeamChannelsView only if joined the team
* Minor tweak
* Added AddChannelTeamView
* Added permissions, translations strings for teams, deleteTeamRoom and addTeamRooms, AddExistingChannelView, updated CreateChannelView, TeamChannelsView
* Refactor touch component and update removeRoom and deleteRoom methods
* Minor tweaks
* Minor tweaks for removing channels and addExistingChannelView
* Added missing events and fixed channels list
* Minor tweaks for refactored touch component
* Added SelectListView and logic for leaving team
* Minor tweak
* Minor tweak
* Minor tweaks
* Remove unnecesary changes, update TeamChannelsView, AddExistingChannelView, AddChannelTeamView, createChannel, goRoom and Touchable
* Remove unnecesary prop
* Add screens to ModalStack, events, autoJoin, update createChannel, addRoomsToTeam and Touchable
* Minor tweak
* Update loadMessagesForRoom.js
* Updated schema, tag component, touch, AddChannelTeamView, AddExistingChannelView, ActionSheet Item
* Fix unnecessary changes
* Add i18n, update createChannel, AddExistingChannelTeamView, AddChannelTeamView, RightButton and TeamChannelsView
* Updated styles, added tag story
* Minor tweak
* Minor tweaks
* Auto-join tweak
* Minor tweaks
* Minor tweak on search
* Minor refactor to ListItem, add SelectListView to ModalStack, update handleLeaveTeam
* Minor tweaks
* Update SelectListView
* Update handleLeaveTeam, remove unnecessary method, add story
* Minor tweak
* Minor visual tweaks
* Updated SelectListView, RoomActionsView, leaveTeam method and string translations
* Update SelectListVIew
* Minor tweak
* Update SelectListView
* Minor tweak
* Fix for List.Item subtitles being pushed down by title's flex
* Minor tweaks
* Update RoomActionsView
* Use showConfirmationAlert and showErrorAlert
* Lint
Co-authored-by: Diego Mello <diegolmello@gmail.com>
2021-05-25 18:04:05 +00:00
|
|
|
leaveTeam({ teamName, rooms }) {
|
|
|
|
// RC 3.13.0
|
|
|
|
return this.post('teams.leave', { teamName, rooms });
|
|
|
|
},
|
[NEW] Add/Create/Remove channel on a team (#3090)
* Added Create Team
* Added actionTypes, actions, ENG strings for Teams and updated NewMessageView
* Added createTeam sagas, createTeam reducer, new Team string and update CreateChannelView
* Remove unnecessary actionTypes, reducers and sagas, e2e tests and navigation to team view
* Minor tweaks
* Show TeamChannelsView only if joined the team
* Minor tweak
* Added AddChannelTeamView
* Added permissions, translations strings for teams, deleteTeamRoom and addTeamRooms, AddExistingChannelView, updated CreateChannelView, TeamChannelsView
* Refactor touch component and update removeRoom and deleteRoom methods
* Minor tweaks
* Minor tweaks for removing channels and addExistingChannelView
* Added missing events and fixed channels list
* Minor tweaks for refactored touch component
* Minor tweaks
* Remove unnecesary changes, update TeamChannelsView, AddExistingChannelView, AddChannelTeamView, createChannel, goRoom and Touchable
* Add screens to ModalStack, events, autoJoin, update createChannel, addRoomsToTeam and Touchable
* Minor tweak
* Update loadMessagesForRoom.js
* Updated schema, tag component, touch, AddChannelTeamView, AddExistingChannelView, ActionSheet Item
* Fix unnecessary changes
* Add i18n, update createChannel, AddExistingChannelTeamView, AddChannelTeamView, RightButton and TeamChannelsView
* Updated styles, added tag story
* Minor tweak
* Minor tweaks
* Auto-join tweak
* Minor tweaks
* Minor tweak on search
* One way to refactor :P
* Next level refactor :)
* Fix create group dm
* Refactor renderItem
* Minor bug fixes
* Fix stories
Co-authored-by: Diego Mello <diegolmello@gmail.com>
2021-05-19 21:14:42 +00:00
|
|
|
updateTeamRoom({ roomId, isDefault }) {
|
|
|
|
// RC 3.13.0
|
|
|
|
return this.post('teams.updateRoom', { roomId, isDefault });
|
|
|
|
},
|
2020-12-01 17:30:39 +00:00
|
|
|
joinRoom(roomId, joinCode, type) {
|
2018-12-05 20:52:08 +00:00
|
|
|
// TODO: join code
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.48.0
|
2019-06-20 19:02:50 +00:00
|
|
|
if (type === 'p') {
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('joinRoom', roomId);
|
2019-06-20 19:02:50 +00:00
|
|
|
}
|
2020-12-01 17:30:39 +00:00
|
|
|
return this.post('channels.join', { roomId, joinCode });
|
2017-08-10 20:09:54 +00:00
|
|
|
},
|
2020-02-11 14:01:35 +00:00
|
|
|
triggerBlockAction,
|
|
|
|
triggerSubmitView,
|
|
|
|
triggerCancel,
|
2018-07-17 19:10:27 +00:00
|
|
|
sendFileMessage,
|
|
|
|
cancelUpload,
|
|
|
|
isUploadActive,
|
2018-04-24 19:34:03 +00:00
|
|
|
getSettings,
|
2020-03-03 20:53:48 +00:00
|
|
|
getLoginSettings,
|
2019-10-28 13:37:13 +00:00
|
|
|
setSettings,
|
2018-04-24 19:34:03 +00:00
|
|
|
getPermissions,
|
2021-02-25 16:41:44 +00:00
|
|
|
setPermissions,
|
2019-06-17 13:57:07 +00:00
|
|
|
getCustomEmojis,
|
2019-09-16 20:26:32 +00:00
|
|
|
setCustomEmojis,
|
2020-08-21 13:38:50 +00:00
|
|
|
getEnterpriseModules,
|
|
|
|
setEnterpriseModules,
|
|
|
|
hasLicense,
|
|
|
|
isOmnichannelModuleAvailable,
|
2019-06-10 18:36:56 +00:00
|
|
|
getSlashCommands,
|
2019-04-26 21:15:25 +00:00
|
|
|
getRoles,
|
2017-11-19 02:44:55 +00:00
|
|
|
parseSettings: settings => settings.reduce((ret, item) => {
|
2020-02-28 17:32:04 +00:00
|
|
|
ret[item._id] = defaultSettings[item._id] && item[defaultSettings[item._id].type];
|
2020-02-20 20:43:56 +00:00
|
|
|
if (item._id === 'Hide_System_Messages') {
|
|
|
|
ret[item._id] = ret[item._id]
|
|
|
|
.reduce((array, value) => [...array, ...value === 'mute_unmute' ? ['user-muted', 'user-unmuted'] : [value]], []);
|
|
|
|
}
|
2017-11-19 02:44:55 +00:00
|
|
|
return ret;
|
|
|
|
}, {}),
|
2017-11-19 14:57:50 +00:00
|
|
|
_prepareSettings(settings) {
|
|
|
|
return settings.map((setting) => {
|
2018-06-18 13:30:36 +00:00
|
|
|
setting[defaultSettings[setting._id].type] = setting.value;
|
2017-11-19 14:57:50 +00:00
|
|
|
return setting;
|
|
|
|
});
|
|
|
|
},
|
2019-09-16 20:26:32 +00:00
|
|
|
deleteMessage(messageId, rid) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.48.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('chat.delete', { msgId: messageId, roomId: rid });
|
2017-11-21 14:55:50 +00:00
|
|
|
},
|
2020-09-11 14:31:38 +00:00
|
|
|
async editMessage(message) {
|
|
|
|
const { rid, msg } = await Encryption.encryptMessage(message);
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.49.0
|
2020-09-11 14:31:38 +00:00
|
|
|
return this.post('chat.update', { roomId: rid, msgId: message.id, text: msg });
|
2017-11-21 14:55:50 +00:00
|
|
|
},
|
2020-02-28 19:31:19 +00:00
|
|
|
markAsUnread({ messageId }) {
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('subscriptions.unread', { firstUnreadMessage: { _id: messageId } });
|
2020-02-28 19:31:19 +00:00
|
|
|
},
|
2019-09-16 20:26:32 +00:00
|
|
|
toggleStarMessage(messageId, starred) {
|
|
|
|
if (starred) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.59.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('chat.unStarMessage', { messageId });
|
2018-12-05 20:52:08 +00:00
|
|
|
}
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.59.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('chat.starMessage', { messageId });
|
2017-11-21 14:55:50 +00:00
|
|
|
},
|
2019-09-16 20:26:32 +00:00
|
|
|
togglePinMessage(messageId, pinned) {
|
|
|
|
if (pinned) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.59.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('chat.unPinMessage', { messageId });
|
2017-11-21 14:55:50 +00:00
|
|
|
}
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.59.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('chat.pinMessage', { messageId });
|
2017-11-21 14:55:50 +00:00
|
|
|
},
|
2019-05-16 13:40:50 +00:00
|
|
|
reportMessage(messageId) {
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('chat.reportMessage', { messageId, description: 'Message reported by user' });
|
2019-05-16 13:40:50 +00:00
|
|
|
},
|
2019-09-16 20:26:32 +00:00
|
|
|
async getRoom(rid) {
|
|
|
|
try {
|
|
|
|
const db = database.active;
|
2021-02-26 16:25:51 +00:00
|
|
|
const room = await db.get('subscriptions').find(rid);
|
2019-09-16 20:26:32 +00:00
|
|
|
return Promise.resolve(room);
|
|
|
|
} catch (error) {
|
2017-11-21 17:05:14 +00:00
|
|
|
return Promise.reject(new Error('Room not found'));
|
|
|
|
}
|
2017-11-21 14:55:50 +00:00
|
|
|
},
|
2019-05-29 21:19:12 +00:00
|
|
|
async getPermalinkMessage(message) {
|
2018-05-18 17:55:08 +00:00
|
|
|
let room;
|
|
|
|
try {
|
2019-09-16 20:26:32 +00:00
|
|
|
room = await RocketChat.getRoom(message.subscription.id);
|
2018-05-18 17:55:08 +00:00
|
|
|
} catch (e) {
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2018-05-18 17:55:08 +00:00
|
|
|
return null;
|
|
|
|
}
|
2018-04-24 19:34:03 +00:00
|
|
|
const { server } = reduxStore.getState().server;
|
2017-11-21 17:05:14 +00:00
|
|
|
const roomType = {
|
|
|
|
p: 'group',
|
|
|
|
c: 'channel',
|
|
|
|
d: 'direct'
|
|
|
|
}[room.t];
|
2020-08-05 16:48:46 +00:00
|
|
|
return `${ server }/${ roomType }/${ this.isGroupChat(room) ? room.rid : room.name }?msg=${ message.id }`;
|
2017-11-21 17:05:14 +00:00
|
|
|
},
|
2019-05-29 21:19:12 +00:00
|
|
|
getPermalinkChannel(channel) {
|
|
|
|
const { server } = reduxStore.getState().server;
|
|
|
|
const roomType = {
|
|
|
|
p: 'group',
|
|
|
|
c: 'channel',
|
|
|
|
d: 'direct'
|
|
|
|
}[channel.t];
|
|
|
|
return `${ server }/${ roomType }/${ channel.name }`;
|
|
|
|
},
|
2017-11-20 22:18:00 +00:00
|
|
|
subscribe(...args) {
|
2019-02-07 15:48:10 +00:00
|
|
|
return this.sdk.subscribe(...args);
|
2018-10-15 20:22:42 +00:00
|
|
|
},
|
2020-02-05 13:34:53 +00:00
|
|
|
subscribeRoom(...args) {
|
|
|
|
return this.sdk.subscribeRoom(...args);
|
|
|
|
},
|
2018-10-15 20:22:42 +00:00
|
|
|
unsubscribe(subscription) {
|
2019-02-07 15:48:10 +00:00
|
|
|
return this.sdk.unsubscribe(subscription);
|
2017-11-20 22:18:00 +00:00
|
|
|
},
|
2019-04-08 12:35:28 +00:00
|
|
|
onStreamData(...args) {
|
|
|
|
return this.sdk.onStreamData(...args);
|
|
|
|
},
|
2020-06-26 20:48:40 +00:00
|
|
|
emitTyping(room, typing = true) {
|
|
|
|
const { login, settings } = reduxStore.getState();
|
|
|
|
const { UI_Use_Real_Name } = settings;
|
|
|
|
const { user } = login;
|
|
|
|
const name = UI_Use_Real_Name ? user.name : user.username;
|
|
|
|
return this.methodCall('stream-notify-room', `${ room }/typing`, name, typing);
|
2017-12-04 18:24:21 +00:00
|
|
|
},
|
|
|
|
setUserPresenceAway() {
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.methodCall('UserPresence:away');
|
2017-12-04 18:24:21 +00:00
|
|
|
},
|
|
|
|
setUserPresenceOnline() {
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.methodCall('UserPresence:online');
|
2017-12-05 19:57:44 +00:00
|
|
|
},
|
2020-08-21 13:30:11 +00:00
|
|
|
setUserPreferences(userId, data) {
|
|
|
|
// RC 0.62.0
|
|
|
|
return this.sdk.post('users.setPreferences', { userId, data });
|
|
|
|
},
|
2020-04-06 19:32:58 +00:00
|
|
|
setUserStatus(status, message) {
|
2020-03-30 20:19:01 +00:00
|
|
|
// RC 1.2.0
|
2020-04-06 19:32:58 +00:00
|
|
|
return this.post('users.setStatus', { status, message });
|
2020-03-30 20:19:01 +00:00
|
|
|
},
|
2018-01-30 19:48:26 +00:00
|
|
|
setReaction(emoji, messageId) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.62.2
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('chat.react', { emoji, messageId });
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
2018-12-05 20:52:08 +00:00
|
|
|
toggleFavorite(roomId, favorite) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.64.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('rooms.favorite', { roomId, favorite });
|
2018-03-02 15:11:34 +00:00
|
|
|
},
|
2019-07-01 14:20:38 +00:00
|
|
|
toggleRead(read, roomId) {
|
|
|
|
if (read) {
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('subscriptions.unread', { roomId });
|
2019-07-01 14:20:38 +00:00
|
|
|
}
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('subscriptions.read', { rid: roomId });
|
2019-07-01 14:20:38 +00:00
|
|
|
},
|
2019-04-17 17:01:03 +00:00
|
|
|
getRoomMembers(rid, allUsers, skip = 0, limit = 10) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.42.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('getUsersOfRoom', rid, allUsers, { skip, limit });
|
2018-03-23 16:49:51 +00:00
|
|
|
},
|
2020-06-29 17:57:39 +00:00
|
|
|
|
2020-08-19 17:13:02 +00:00
|
|
|
methodCallWrapper(method, ...params) {
|
2020-06-29 17:57:39 +00:00
|
|
|
const { API_Use_REST_For_DDP_Calls } = reduxStore.getState().settings;
|
|
|
|
if (API_Use_REST_For_DDP_Calls) {
|
2021-05-26 17:24:54 +00:00
|
|
|
return this.post(`method.call/${ method }`, { message: EJSON.stringify({ method, params }) });
|
2020-06-29 17:57:39 +00:00
|
|
|
}
|
|
|
|
return this.methodCall(method, ...params);
|
|
|
|
},
|
|
|
|
|
2018-03-29 17:55:37 +00:00
|
|
|
getUserRoles() {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.27.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('getUserRoles');
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
2018-12-05 20:52:08 +00:00
|
|
|
getRoomCounters(roomId, t) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.65.0
|
2019-02-07 15:48:10 +00:00
|
|
|
return this.sdk.get(`${ this.roomTypeToApiType(t) }.counters`, { roomId });
|
2018-12-05 20:52:08 +00:00
|
|
|
},
|
2019-04-08 12:35:28 +00:00
|
|
|
getChannelInfo(roomId) {
|
|
|
|
// RC 0.48.0
|
|
|
|
return this.sdk.get('channels.info', { roomId });
|
|
|
|
},
|
2019-04-29 16:03:52 +00:00
|
|
|
getUserInfo(userId) {
|
|
|
|
// RC 0.48.0
|
|
|
|
return this.sdk.get('users.info', { userId });
|
|
|
|
},
|
2020-08-21 13:30:11 +00:00
|
|
|
getUserPreferences(userId) {
|
|
|
|
// RC 0.62.0
|
|
|
|
return this.sdk.get('users.getPreferences', { userId });
|
|
|
|
},
|
2019-08-22 18:08:07 +00:00
|
|
|
getRoomInfo(roomId) {
|
|
|
|
// RC 0.72.0
|
|
|
|
return this.sdk.get('rooms.info', { roomId });
|
|
|
|
},
|
2020-04-01 12:28:54 +00:00
|
|
|
|
2020-05-08 17:36:10 +00:00
|
|
|
getVisitorInfo(visitorId) {
|
|
|
|
// RC 2.3.0
|
|
|
|
return this.sdk.get('livechat/visitors.info', { visitorId });
|
|
|
|
},
|
2021-04-07 18:31:25 +00:00
|
|
|
getTeamListRoom({
|
|
|
|
teamId, count, offset, type, filter
|
|
|
|
}) {
|
|
|
|
const params = {
|
|
|
|
teamId, count, offset, type
|
|
|
|
};
|
|
|
|
|
|
|
|
if (filter) {
|
|
|
|
params.filter = filter;
|
|
|
|
}
|
|
|
|
// RC 3.13.0
|
|
|
|
return this.sdk.get('teams.listRooms', params);
|
|
|
|
},
|
2020-05-08 17:36:10 +00:00
|
|
|
closeLivechat(rid, comment) {
|
|
|
|
// RC 0.29.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('livechat:closeRoom', rid, comment, { clientAction: true });
|
2020-05-08 17:36:10 +00:00
|
|
|
},
|
|
|
|
editLivechat(userData, roomData) {
|
|
|
|
// RC 0.55.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('livechat:saveInfo', userData, roomData);
|
2020-05-08 17:36:10 +00:00
|
|
|
},
|
|
|
|
returnLivechat(rid) {
|
|
|
|
// RC 0.72.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('livechat:returnAsInquiry', rid);
|
2020-05-08 17:36:10 +00:00
|
|
|
},
|
|
|
|
forwardLivechat(transferData) {
|
|
|
|
// RC 0.36.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('livechat:transfer', transferData);
|
2020-05-08 17:36:10 +00:00
|
|
|
},
|
|
|
|
getPagesLivechat(rid, offset) {
|
|
|
|
// RC 2.3.0
|
|
|
|
return this.sdk.get(`livechat/visitors.pagesVisited/${ rid }?count=50&offset=${ offset }`);
|
|
|
|
},
|
|
|
|
getDepartmentInfo(departmentId) {
|
|
|
|
// RC 2.2.0
|
|
|
|
return this.sdk.get(`livechat/department/${ departmentId }?includeAgents=false`);
|
|
|
|
},
|
|
|
|
getDepartments() {
|
|
|
|
// RC 2.2.0
|
|
|
|
return this.sdk.get('livechat/department');
|
|
|
|
},
|
|
|
|
usersAutoComplete(selector) {
|
|
|
|
// RC 2.4.0
|
|
|
|
return this.sdk.get('users.autocomplete', { selector });
|
|
|
|
},
|
|
|
|
getRoutingConfig() {
|
|
|
|
// RC 2.0.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('livechat:getRoutingConfig');
|
2020-05-08 17:36:10 +00:00
|
|
|
},
|
|
|
|
getTagsList() {
|
|
|
|
// RC 2.0.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('livechat:getTagsList');
|
2020-05-08 17:36:10 +00:00
|
|
|
},
|
|
|
|
getAgentDepartments(uid) {
|
|
|
|
// RC 2.4.0
|
2020-07-31 18:22:30 +00:00
|
|
|
return this.sdk.get(`livechat/agents/${ uid }/departments?enabledDepartmentsOnly=true`);
|
2020-05-08 17:36:10 +00:00
|
|
|
},
|
|
|
|
getCustomFields() {
|
|
|
|
// RC 2.2.0
|
|
|
|
return this.sdk.get('livechat/custom-fields');
|
|
|
|
},
|
|
|
|
|
2020-04-09 05:20:57 +00:00
|
|
|
getUidDirectMessage(room) {
|
|
|
|
const { id: userId } = reduxStore.getState().login.user;
|
|
|
|
|
2020-10-30 17:35:07 +00:00
|
|
|
if (!room) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-01 12:28:54 +00:00
|
|
|
// legacy method
|
2020-10-30 17:35:07 +00:00
|
|
|
if (!room?.uids && room.rid && room.t === 'd') {
|
2020-04-01 12:28:54 +00:00
|
|
|
return room.rid.replace(userId, '').trim();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (RocketChat.isGroupChat(room)) {
|
|
|
|
return false;
|
2018-03-29 17:55:37 +00:00
|
|
|
}
|
2020-04-01 12:28:54 +00:00
|
|
|
|
2020-10-30 17:35:07 +00:00
|
|
|
const me = room.uids?.find(uid => uid === userId);
|
|
|
|
const other = room.uids?.filter(uid => uid !== userId);
|
2020-04-01 12:28:54 +00:00
|
|
|
|
|
|
|
return other && other.length ? other[0] : me;
|
|
|
|
},
|
|
|
|
|
2020-07-20 16:44:54 +00:00
|
|
|
isRead(item) {
|
|
|
|
let isUnread = item.archived !== true && item.open === true; // item is not archived and not opened
|
|
|
|
isUnread = isUnread && (item.unread > 0 || item.alert === true); // either its unread count > 0 or its alert
|
|
|
|
return !isUnread;
|
|
|
|
},
|
|
|
|
|
2020-04-01 12:28:54 +00:00
|
|
|
isGroupChat(room) {
|
|
|
|
return (room.uids && room.uids.length > 2) || (room.usernames && room.usernames.length > 2);
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
2020-04-01 12:28:54 +00:00
|
|
|
|
2018-03-23 16:49:51 +00:00
|
|
|
toggleBlockUser(rid, blocked, block) {
|
|
|
|
if (block) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.49.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('blockUser', { rid, blocked });
|
2018-03-23 16:49:51 +00:00
|
|
|
}
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.49.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('unblockUser', { rid, blocked });
|
2018-03-23 16:49:51 +00:00
|
|
|
},
|
2018-12-05 20:52:08 +00:00
|
|
|
leaveRoom(roomId, t) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.48.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post(`${ this.roomTypeToApiType(t) }.leave`, { roomId });
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
2020-03-06 13:13:24 +00:00
|
|
|
deleteRoom(roomId, t) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.49.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post(`${ this.roomTypeToApiType(t) }.delete`, { roomId });
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
2018-04-24 19:34:03 +00:00
|
|
|
toggleMuteUserInRoom(rid, username, mute) {
|
|
|
|
if (mute) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.51.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('muteUserInRoom', { rid, username });
|
2018-04-24 19:34:03 +00:00
|
|
|
}
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.51.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('unmuteUserInRoom', { rid, username });
|
2018-04-24 19:34:03 +00:00
|
|
|
},
|
2020-11-30 20:00:31 +00:00
|
|
|
toggleRoomOwner({
|
|
|
|
roomId, t, userId, isOwner
|
|
|
|
}) {
|
|
|
|
if (isOwner) {
|
|
|
|
// RC 0.49.4
|
|
|
|
return this.post(`${ this.roomTypeToApiType(t) }.addOwner`, { roomId, userId });
|
|
|
|
}
|
|
|
|
// RC 0.49.4
|
|
|
|
return this.post(`${ this.roomTypeToApiType(t) }.removeOwner`, { roomId, userId });
|
|
|
|
},
|
|
|
|
toggleRoomLeader({
|
|
|
|
roomId, t, userId, isLeader
|
|
|
|
}) {
|
|
|
|
if (isLeader) {
|
|
|
|
// RC 0.58.0
|
|
|
|
return this.post(`${ this.roomTypeToApiType(t) }.addLeader`, { roomId, userId });
|
|
|
|
}
|
|
|
|
// RC 0.58.0
|
|
|
|
return this.post(`${ this.roomTypeToApiType(t) }.removeLeader`, { roomId, userId });
|
|
|
|
},
|
|
|
|
toggleRoomModerator({
|
|
|
|
roomId, t, userId, isModerator
|
|
|
|
}) {
|
|
|
|
if (isModerator) {
|
|
|
|
// RC 0.49.4
|
|
|
|
return this.post(`${ this.roomTypeToApiType(t) }.addModerator`, { roomId, userId });
|
|
|
|
}
|
|
|
|
// RC 0.49.4
|
|
|
|
return this.post(`${ this.roomTypeToApiType(t) }.removeModerator`, { roomId, userId });
|
|
|
|
},
|
|
|
|
removeUserFromRoom({
|
|
|
|
roomId, t, userId
|
|
|
|
}) {
|
|
|
|
// RC 0.48.0
|
|
|
|
return this.post(`${ this.roomTypeToApiType(t) }.kick`, { roomId, userId });
|
|
|
|
},
|
|
|
|
ignoreUser({ rid, userId, ignore }) {
|
|
|
|
return this.sdk.get('chat.ignoreUser', { rid, userId, ignore });
|
|
|
|
},
|
2018-12-12 15:15:10 +00:00
|
|
|
toggleArchiveRoom(roomId, t, archive) {
|
2018-03-29 17:55:37 +00:00
|
|
|
if (archive) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.48.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post(`${ this.roomTypeToApiType(t) }.archive`, { roomId });
|
2018-03-29 17:55:37 +00:00
|
|
|
}
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.48.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post(`${ this.roomTypeToApiType(t) }.unarchive`, { roomId });
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
2019-07-01 14:20:38 +00:00
|
|
|
hideRoom(roomId, t) {
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post(`${ this.roomTypeToApiType(t) }.close`, { roomId });
|
2019-07-01 14:20:38 +00:00
|
|
|
},
|
2018-03-29 17:55:37 +00:00
|
|
|
saveRoomSettings(rid, params) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.55.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('saveRoomSettings', rid, params);
|
2020-04-01 20:32:24 +00:00
|
|
|
},
|
|
|
|
post(...args) {
|
|
|
|
return new Promise(async(resolve, reject) => {
|
2021-01-20 17:34:01 +00:00
|
|
|
const isMethodCall = args[0]?.startsWith('method.call/');
|
2020-04-01 20:32:24 +00:00
|
|
|
try {
|
|
|
|
const result = await this.sdk.post(...args);
|
2021-01-20 17:34:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* if API_Use_REST_For_DDP_Calls is enabled and it's a method call,
|
|
|
|
* responses have a different object structure
|
|
|
|
*/
|
|
|
|
if (isMethodCall) {
|
|
|
|
const response = JSON.parse(result.message);
|
|
|
|
if (response?.error) {
|
|
|
|
throw response.error;
|
|
|
|
}
|
|
|
|
return resolve(response.result);
|
|
|
|
}
|
2020-04-01 20:32:24 +00:00
|
|
|
return resolve(result);
|
|
|
|
} catch (e) {
|
2021-01-20 17:34:01 +00:00
|
|
|
const errorType = isMethodCall ? e?.error : e?.data?.errorType;
|
|
|
|
const totpInvalid = 'totp-invalid';
|
|
|
|
const totpRequired = 'totp-required';
|
|
|
|
if ([totpInvalid, totpRequired].includes(errorType)) {
|
|
|
|
const { details } = isMethodCall ? e : e?.data;
|
2020-04-01 20:32:24 +00:00
|
|
|
try {
|
2021-01-20 17:34:01 +00:00
|
|
|
await twoFactor({ method: details?.method, invalid: errorType === totpInvalid });
|
2020-04-01 20:32:24 +00:00
|
|
|
return resolve(this.post(...args));
|
|
|
|
} catch {
|
|
|
|
// twoFactor was canceled
|
|
|
|
return resolve({});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
reject(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
methodCall(...args) {
|
|
|
|
return new Promise(async(resolve, reject) => {
|
|
|
|
try {
|
2021-05-06 14:06:52 +00:00
|
|
|
const result = await this.sdk?.methodCall(...args, this.code || '');
|
2020-04-01 20:32:24 +00:00
|
|
|
return resolve(result);
|
|
|
|
} catch (e) {
|
|
|
|
if (e.error && (e.error === 'totp-required' || e.error === 'totp-invalid')) {
|
|
|
|
const { details } = e;
|
|
|
|
try {
|
|
|
|
this.code = await twoFactor({ method: details?.method, invalid: e.error === 'totp-invalid' });
|
|
|
|
return resolve(this.methodCall(...args));
|
|
|
|
} catch {
|
|
|
|
// twoFactor was canceled
|
|
|
|
return resolve({});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
reject(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
sendEmailCode() {
|
|
|
|
const { username } = reduxStore.getState().login.user;
|
|
|
|
// RC 3.1.0
|
|
|
|
return this.post('users.2fa.sendEmailCode', { emailOrUsername: username });
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
2019-06-05 16:29:07 +00:00
|
|
|
saveUserProfile(data, customFields) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.62.2
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('users.updateOwnBasicInfo', { data, customFields });
|
2018-06-13 01:33:00 +00:00
|
|
|
},
|
2020-06-29 17:57:39 +00:00
|
|
|
saveUserPreferences(data) {
|
|
|
|
// RC 0.62.0
|
|
|
|
return this.post('users.setPreferences', { data });
|
2018-06-13 01:33:00 +00:00
|
|
|
},
|
2018-12-05 20:52:08 +00:00
|
|
|
saveNotificationSettings(roomId, notifications) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.63.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('rooms.saveNotification', { roomId, notifications });
|
2018-04-24 19:34:03 +00:00
|
|
|
},
|
|
|
|
addUsersToRoom(rid) {
|
|
|
|
let { users } = reduxStore.getState().selectedUsers;
|
|
|
|
users = users.map(u => u.name);
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.51.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('addUsersToRoom', { rid, users });
|
2018-04-24 19:34:03 +00:00
|
|
|
},
|
2019-04-17 17:01:03 +00:00
|
|
|
getSingleMessage(msgId) {
|
2020-06-29 17:57:39 +00:00
|
|
|
// RC 0.47.0
|
|
|
|
return this.sdk.get('chat.getMessage', { msgId });
|
2019-04-17 17:01:03 +00:00
|
|
|
},
|
2020-07-31 18:22:30 +00:00
|
|
|
hasRole(role) {
|
|
|
|
const shareUser = reduxStore.getState().share.user;
|
|
|
|
const loginUser = reduxStore.getState().login.user;
|
|
|
|
// get user roles on the server from redux
|
|
|
|
const userRoles = (shareUser?.roles || loginUser?.roles) || [];
|
|
|
|
|
|
|
|
return userRoles.indexOf(r => r === role) > -1;
|
|
|
|
},
|
2020-11-30 20:00:31 +00:00
|
|
|
getRoomRoles(roomId, type) {
|
|
|
|
// RC 0.65.0
|
|
|
|
return this.sdk.get(`${ this.roomTypeToApiType(type) }.roles`, { roomId });
|
|
|
|
},
|
2021-02-25 16:41:44 +00:00
|
|
|
/**
|
|
|
|
* Permissions: array of permissions' roles from redux. Example: [['owner', 'admin'], ['leader']]
|
|
|
|
* Returns an array of boolean for each permission from permissions arg
|
|
|
|
*/
|
2019-09-16 20:26:32 +00:00
|
|
|
async hasPermission(permissions, rid) {
|
|
|
|
const db = database.active;
|
2021-02-26 16:25:51 +00:00
|
|
|
const subsCollection = db.get('subscriptions');
|
2019-04-26 20:54:58 +00:00
|
|
|
let roomRoles = [];
|
2018-12-21 10:55:35 +00:00
|
|
|
try {
|
2019-09-16 20:26:32 +00:00
|
|
|
// get the room from database
|
|
|
|
const room = await subsCollection.find(rid);
|
2018-12-21 10:55:35 +00:00
|
|
|
// get room roles
|
2020-04-13 12:51:16 +00:00
|
|
|
roomRoles = room.roles || [];
|
2018-12-21 10:55:35 +00:00
|
|
|
} catch (error) {
|
2019-09-16 20:26:32 +00:00
|
|
|
console.log('hasPermission -> Room not found');
|
2021-02-25 16:41:44 +00:00
|
|
|
return permissions.map(() => false);
|
2019-09-16 20:26:32 +00:00
|
|
|
}
|
2021-02-25 16:41:44 +00:00
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
try {
|
2020-04-13 12:51:16 +00:00
|
|
|
const shareUser = reduxStore.getState().share.user;
|
|
|
|
const loginUser = reduxStore.getState().login.user;
|
2019-09-16 20:26:32 +00:00
|
|
|
// get user roles on the server from redux
|
2020-05-13 19:04:50 +00:00
|
|
|
const userRoles = (shareUser?.roles || loginUser?.roles) || [];
|
2019-09-16 20:26:32 +00:00
|
|
|
const mergedRoles = [...new Set([...roomRoles, ...userRoles])];
|
2021-03-05 13:44:46 +00:00
|
|
|
return permissions.map(permission => permission?.some(r => mergedRoles.includes(r) ?? false));
|
2019-09-16 20:26:32 +00:00
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
|
|
|
}
|
2018-06-13 01:33:00 +00:00
|
|
|
},
|
|
|
|
getAvatarSuggestion() {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.51.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('getAvatarSuggestion');
|
2018-06-13 01:33:00 +00:00
|
|
|
},
|
2018-12-12 15:15:10 +00:00
|
|
|
resetAvatar(userId) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.55.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('users.resetAvatar', { userId });
|
2018-06-13 01:33:00 +00:00
|
|
|
},
|
|
|
|
setAvatarFromService({ data, contentType = '', service = null }) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.51.0
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('setAvatarFromService', data, contentType, service);
|
2018-09-04 14:29:20 +00:00
|
|
|
},
|
2019-08-23 13:18:47 +00:00
|
|
|
async getAllowCrashReport() {
|
|
|
|
const allowCrashReport = await AsyncStorage.getItem(CRASH_REPORT_KEY);
|
|
|
|
if (allowCrashReport === null) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return JSON.parse(allowCrashReport);
|
|
|
|
},
|
2020-09-11 17:34:11 +00:00
|
|
|
async getAllowAnalyticsEvents() {
|
|
|
|
const allowAnalyticsEvents = await AsyncStorage.getItem(ANALYTICS_EVENTS_KEY);
|
|
|
|
if (allowAnalyticsEvents === null) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return JSON.parse(allowAnalyticsEvents);
|
|
|
|
},
|
2018-09-04 14:29:20 +00:00
|
|
|
async getSortPreferences() {
|
2020-08-19 17:14:22 +00:00
|
|
|
const prefs = await UserPreferences.getMapAsync(SORT_PREFS_KEY);
|
2019-07-18 17:44:02 +00:00
|
|
|
return prefs;
|
2018-09-04 14:29:20 +00:00
|
|
|
},
|
|
|
|
async saveSortPreference(param) {
|
2020-08-19 17:14:22 +00:00
|
|
|
let prefs = await RocketChat.getSortPreferences();
|
|
|
|
prefs = { ...prefs, ...param };
|
|
|
|
return UserPreferences.setMapAsync(SORT_PREFS_KEY, prefs);
|
2018-11-14 21:42:03 +00:00
|
|
|
},
|
|
|
|
async getLoginServices(server) {
|
|
|
|
try {
|
2019-08-09 17:28:46 +00:00
|
|
|
let loginServices = [];
|
2018-11-14 21:42:03 +00:00
|
|
|
const loginServicesResult = await fetch(`${ server }/api/v1/settings.oauth`).then(response => response.json());
|
2019-08-07 14:36:54 +00:00
|
|
|
|
2020-02-20 20:08:20 +00:00
|
|
|
if (loginServicesResult.success && loginServicesResult.services) {
|
2018-11-14 21:42:03 +00:00
|
|
|
const { services } = loginServicesResult;
|
2019-08-09 17:28:46 +00:00
|
|
|
loginServices = services;
|
2019-08-07 14:36:54 +00:00
|
|
|
|
2019-08-09 17:28:46 +00:00
|
|
|
const loginServicesReducer = loginServices.reduce((ret, item) => {
|
|
|
|
const name = item.name || item.buttonLabelText || item.service;
|
2019-08-07 14:36:54 +00:00
|
|
|
const authType = this._determineAuthType(item);
|
|
|
|
|
|
|
|
if (authType !== 'not_supported') {
|
|
|
|
ret[name] = { ...item, name, authType };
|
|
|
|
}
|
|
|
|
|
2018-11-14 21:42:03 +00:00
|
|
|
return ret;
|
|
|
|
}, {});
|
|
|
|
reduxStore.dispatch(setLoginServices(loginServicesReducer));
|
2020-04-01 15:56:08 +00:00
|
|
|
} else {
|
|
|
|
reduxStore.dispatch(setLoginServices({}));
|
2018-11-14 21:42:03 +00:00
|
|
|
}
|
|
|
|
} catch (error) {
|
2020-04-01 15:56:08 +00:00
|
|
|
console.log(error);
|
|
|
|
reduxStore.dispatch(setLoginServices({}));
|
2018-11-14 21:42:03 +00:00
|
|
|
}
|
|
|
|
},
|
2019-08-09 17:28:46 +00:00
|
|
|
_determineAuthType(services) {
|
2019-08-22 19:24:27 +00:00
|
|
|
const {
|
|
|
|
name, custom, showButton = true, service
|
|
|
|
} = services;
|
2019-08-07 14:36:54 +00:00
|
|
|
|
2020-01-29 12:30:59 +00:00
|
|
|
const authName = name || service;
|
|
|
|
|
2019-08-22 19:24:27 +00:00
|
|
|
if (custom && showButton) {
|
2019-08-07 14:36:54 +00:00
|
|
|
return 'oauth_custom';
|
|
|
|
}
|
|
|
|
|
2019-08-09 17:28:46 +00:00
|
|
|
if (service === 'saml') {
|
|
|
|
return 'saml';
|
|
|
|
}
|
|
|
|
|
2019-08-12 18:37:42 +00:00
|
|
|
if (service === 'cas') {
|
|
|
|
return 'cas';
|
|
|
|
}
|
|
|
|
|
2020-07-14 16:07:45 +00:00
|
|
|
if (authName === 'apple' && isIOS) {
|
|
|
|
return 'apple';
|
|
|
|
}
|
|
|
|
|
2019-08-09 17:28:46 +00:00
|
|
|
// TODO: remove this after other oauth providers are implemented. e.g. Drupal, github_enterprise
|
2020-01-29 12:30:59 +00:00
|
|
|
const availableOAuth = ['facebook', 'github', 'gitlab', 'google', 'linkedin', 'meteor-developer', 'twitter', 'wordpress'];
|
|
|
|
return availableOAuth.includes(authName) ? 'oauth' : 'not_supported';
|
2019-08-07 14:36:54 +00:00
|
|
|
},
|
2018-11-14 21:42:03 +00:00
|
|
|
getUsernameSuggestion() {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.65.0
|
2019-02-07 15:48:10 +00:00
|
|
|
return this.sdk.get('users.getUsernameSuggestion');
|
2018-12-05 20:52:08 +00:00
|
|
|
},
|
|
|
|
roomTypeToApiType(t) {
|
|
|
|
const types = {
|
2020-02-07 13:24:16 +00:00
|
|
|
c: 'channels', d: 'im', p: 'groups', l: 'channels'
|
2018-12-05 20:52:08 +00:00
|
|
|
};
|
|
|
|
return types[t];
|
2018-12-12 15:15:10 +00:00
|
|
|
},
|
|
|
|
getFiles(roomId, type, offset) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.59.0
|
2019-02-07 15:48:10 +00:00
|
|
|
return this.sdk.get(`${ this.roomTypeToApiType(type) }.files`, {
|
2018-12-12 15:15:10 +00:00
|
|
|
roomId,
|
|
|
|
offset,
|
|
|
|
sort: { uploadedAt: -1 },
|
|
|
|
fields: {
|
|
|
|
name: 1, description: 1, size: 1, type: 1, uploadedAt: 1, url: 1, userId: 1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
getMessages(roomId, type, query, offset) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.59.0
|
2019-02-07 15:48:10 +00:00
|
|
|
return this.sdk.get(`${ this.roomTypeToApiType(type) }.messages`, {
|
2018-12-12 15:15:10 +00:00
|
|
|
roomId,
|
|
|
|
query,
|
|
|
|
offset,
|
|
|
|
sort: { ts: -1 }
|
|
|
|
});
|
|
|
|
},
|
2019-06-10 18:36:31 +00:00
|
|
|
|
|
|
|
getReadReceipts(messageId) {
|
|
|
|
return this.sdk.get('chat.getMessageReadReceipts', {
|
|
|
|
messageId
|
|
|
|
});
|
|
|
|
},
|
2018-12-12 15:15:10 +00:00
|
|
|
searchMessages(roomId, searchText) {
|
2018-12-21 10:55:35 +00:00
|
|
|
// RC 0.60.0
|
2019-02-07 15:48:10 +00:00
|
|
|
return this.sdk.get('chat.search', {
|
2018-12-12 15:15:10 +00:00
|
|
|
roomId,
|
|
|
|
searchText
|
|
|
|
});
|
2019-04-17 17:01:03 +00:00
|
|
|
},
|
|
|
|
toggleFollowMessage(mid, follow) {
|
|
|
|
// RC 1.0
|
|
|
|
if (follow) {
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('chat.followMessage', { mid });
|
2019-04-17 17:01:03 +00:00
|
|
|
}
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('chat.unfollowMessage', { mid });
|
2019-04-17 17:01:03 +00:00
|
|
|
},
|
2020-10-30 17:35:07 +00:00
|
|
|
getThreadsList({
|
|
|
|
rid, count, offset, text
|
|
|
|
}) {
|
|
|
|
const params = {
|
2019-04-24 18:36:29 +00:00
|
|
|
rid, count, offset, sort: { ts: -1 }
|
2020-10-30 17:35:07 +00:00
|
|
|
};
|
|
|
|
if (text) {
|
|
|
|
params.text = text;
|
|
|
|
}
|
|
|
|
|
|
|
|
// RC 1.0
|
|
|
|
return this.sdk.get('chat.getThreadsList', params);
|
2019-04-24 18:36:29 +00:00
|
|
|
},
|
|
|
|
getSyncThreadsList({ rid, updatedSince }) {
|
|
|
|
// RC 1.0
|
|
|
|
return this.sdk.get('chat.syncThreadsList', {
|
|
|
|
rid, updatedSince
|
|
|
|
});
|
2019-05-28 16:52:26 +00:00
|
|
|
},
|
2020-06-29 18:47:48 +00:00
|
|
|
readThreads(tmid) {
|
|
|
|
const serverVersion = reduxStore.getState().server.version;
|
2021-03-18 13:33:35 +00:00
|
|
|
if (compareServerVersion(serverVersion, '3.4.0', methods.greaterThanOrEqualTo)) {
|
2020-06-29 18:47:48 +00:00
|
|
|
// RC 3.4.0
|
|
|
|
return this.methodCallWrapper('readThreads', tmid);
|
|
|
|
}
|
|
|
|
return Promise.resolve();
|
|
|
|
},
|
2020-02-11 15:56:06 +00:00
|
|
|
runSlashCommand(command, roomId, params, triggerId, tmid) {
|
2019-06-10 18:36:56 +00:00
|
|
|
// RC 0.60.2
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('commands.run', {
|
2020-02-11 15:56:06 +00:00
|
|
|
command, roomId, params, triggerId, tmid
|
2019-06-10 18:36:56 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
getCommandPreview(command, roomId, params) {
|
|
|
|
// RC 0.65.0
|
|
|
|
return this.sdk.get('commands.preview', {
|
|
|
|
command, roomId, params
|
|
|
|
});
|
|
|
|
},
|
2020-02-11 15:56:06 +00:00
|
|
|
executeCommandPreview(command, params, roomId, previewItem, triggerId, tmid) {
|
2019-06-10 18:36:56 +00:00
|
|
|
// RC 0.65.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('commands.preview', {
|
2020-02-11 15:56:06 +00:00
|
|
|
command, params, roomId, previewItem, triggerId, tmid
|
2019-06-10 18:36:56 +00:00
|
|
|
});
|
|
|
|
},
|
2019-09-16 20:26:32 +00:00
|
|
|
_setUser(ddpMessage) {
|
|
|
|
this.activeUsers = this.activeUsers || {};
|
|
|
|
const { user } = reduxStore.getState().login;
|
|
|
|
|
|
|
|
if (ddpMessage.fields && user && user.id === ddpMessage.id) {
|
|
|
|
reduxStore.dispatch(setUser(ddpMessage.fields));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ddpMessage.cleared && user && user.id === ddpMessage.id) {
|
2020-03-30 20:19:01 +00:00
|
|
|
reduxStore.dispatch(setUser({ status: { status: 'offline' } }));
|
2019-09-16 20:26:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!this._setUserTimer) {
|
|
|
|
this._setUserTimer = setTimeout(() => {
|
|
|
|
const activeUsersBatch = this.activeUsers;
|
|
|
|
InteractionManager.runAfterInteractions(() => {
|
|
|
|
reduxStore.dispatch(setActiveUsers(activeUsersBatch));
|
|
|
|
});
|
|
|
|
this._setUserTimer = null;
|
|
|
|
return this.activeUsers = {};
|
|
|
|
}, 10000);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ddpMessage.fields) {
|
2020-03-30 20:19:01 +00:00
|
|
|
this.activeUsers[ddpMessage.id] = { status: 'offline' };
|
2019-09-16 20:26:32 +00:00
|
|
|
} else if (ddpMessage.fields.status) {
|
2020-03-30 20:19:01 +00:00
|
|
|
this.activeUsers[ddpMessage.id] = { status: ddpMessage.fields.status };
|
2019-09-16 20:26:32 +00:00
|
|
|
}
|
|
|
|
},
|
2020-03-03 21:10:39 +00:00
|
|
|
getUsersPresence,
|
|
|
|
getUserPresence,
|
|
|
|
subscribeUsersPresence,
|
2019-06-10 16:22:35 +00:00
|
|
|
getDirectory({
|
|
|
|
query, count, offset, sort
|
|
|
|
}) {
|
|
|
|
// RC 1.0
|
|
|
|
return this.sdk.get('directory', {
|
|
|
|
query, count, offset, sort
|
|
|
|
});
|
2019-06-28 17:02:30 +00:00
|
|
|
},
|
2021-02-25 16:41:44 +00:00
|
|
|
canAutoTranslate() {
|
2019-06-28 17:02:30 +00:00
|
|
|
try {
|
2021-02-25 16:41:44 +00:00
|
|
|
const { AutoTranslate_Enabled } = reduxStore.getState().settings;
|
2019-06-28 17:02:30 +00:00
|
|
|
if (!AutoTranslate_Enabled) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-02-25 16:41:44 +00:00
|
|
|
const autoTranslatePermission = reduxStore.getState().permissions['auto-translate'];
|
|
|
|
const userRoles = (reduxStore.getState().login?.user?.roles) ?? [];
|
|
|
|
return autoTranslatePermission?.some(role => userRoles.includes(role));
|
2019-08-23 13:18:47 +00:00
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
2019-06-28 17:02:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
saveAutoTranslate({
|
|
|
|
rid, field, value, options
|
|
|
|
}) {
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('autoTranslate.saveSettings', rid, field, value, options);
|
2019-06-28 17:02:30 +00:00
|
|
|
},
|
|
|
|
getSupportedLanguagesAutoTranslate() {
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('autoTranslate.getSupportedLanguages', 'en');
|
2019-06-28 17:02:30 +00:00
|
|
|
},
|
|
|
|
translateMessage(message, targetLanguage) {
|
2020-06-29 17:57:39 +00:00
|
|
|
return this.methodCallWrapper('autoTranslate.translateMessage', message, targetLanguage);
|
2020-01-28 13:22:35 +00:00
|
|
|
},
|
2020-09-11 14:31:38 +00:00
|
|
|
getSenderName(sender) {
|
|
|
|
const { UI_Use_Real_Name: useRealName } = reduxStore.getState().settings;
|
|
|
|
return useRealName ? sender.name : sender.username;
|
|
|
|
},
|
2020-01-28 13:22:35 +00:00
|
|
|
getRoomTitle(room) {
|
2020-04-30 16:24:49 +00:00
|
|
|
const { UI_Use_Real_Name: useRealName, UI_Allow_room_names_with_special_chars: allowSpecialChars } = reduxStore.getState().settings;
|
2020-04-01 12:28:54 +00:00
|
|
|
const { username } = reduxStore.getState().login.user;
|
|
|
|
if (RocketChat.isGroupChat(room) && !(room.name && room.name.length)) {
|
|
|
|
return room.usernames.filter(u => u !== username).sort((u1, u2) => u1.localeCompare(u2)).join(', ');
|
|
|
|
}
|
2020-04-30 16:24:49 +00:00
|
|
|
if (allowSpecialChars && room.t !== 'd') {
|
|
|
|
return room.fname || room.name;
|
|
|
|
}
|
2020-01-28 13:22:35 +00:00
|
|
|
return ((room.prid || useRealName) && room.fname) || room.name;
|
|
|
|
},
|
2020-02-12 17:21:11 +00:00
|
|
|
getRoomAvatar(room) {
|
2020-04-01 12:28:54 +00:00
|
|
|
if (RocketChat.isGroupChat(room)) {
|
2020-04-30 18:07:07 +00:00
|
|
|
return room.uids?.length + room.usernames?.join();
|
2020-04-01 12:28:54 +00:00
|
|
|
}
|
2020-02-12 17:21:11 +00:00
|
|
|
return room.prid ? room.fname : room.name;
|
|
|
|
},
|
2020-01-28 13:22:35 +00:00
|
|
|
|
|
|
|
findOrCreateInvite({ rid, days, maxUses }) {
|
|
|
|
// RC 2.4.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('findOrCreateInvite', { rid, days, maxUses });
|
2020-01-28 13:22:35 +00:00
|
|
|
},
|
|
|
|
validateInviteToken(token) {
|
|
|
|
// RC 2.4.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('validateInviteToken', { token });
|
2020-01-28 13:22:35 +00:00
|
|
|
},
|
|
|
|
useInviteToken(token) {
|
|
|
|
// RC 2.4.0
|
2020-04-01 20:32:24 +00:00
|
|
|
return this.post('useInviteToken', { token });
|
2017-11-20 22:18:00 +00:00
|
|
|
}
|
2017-08-09 20:18:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default RocketChat;
|