renames some ms teams constants

This commit is contained in:
antelle 2021-07-11 16:22:38 +02:00
parent f8af64e45b
commit 208a1b551e
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
4 changed files with 10 additions and 17 deletions

View File

@ -90,10 +90,10 @@ const DefaultAppSettings = {
onedriveClientSecret: null, // custom OneDrive client secret
onedriveTenantId: null, // custom OneDrive tenant id
teams: true, // enable Teams integration
teamsClientId: null, // custom Teams client id
teamsClientSecret: null, // custom Teams client secret
teamsTenantId: null // custom Teams tenant id
msteams: false, // enable Microsoft Teams integration
msteamsClientId: null, // custom Microsoft Teams client id
msteamsClientSecret: null, // custom Microsoft Teams client secret
msteamsTenantId: null // custom Microsoft Teams tenant id
};
export { DefaultAppSettings };

View File

@ -43,7 +43,7 @@
"dropbox": "Dropbox",
"gdrive": "Google Drive",
"onedrive": "OneDrive",
"teams": "Microsoft Teams",
"msteams": "Microsoft Teams",
"menuAllItems": "All Items",
"menuColors": "Colors",
"menuTrash": "Trash",

View File

@ -12,7 +12,7 @@ import { Features } from 'util/features';
// https://graph.microsoft.com/v1.0/groups/{group id}/drive/root/children
class StorageTeams extends StorageBase {
name = 'teams';
name = 'msteams';
enabled = true;
uipos = 50;
icon = 'user-friends';
@ -34,7 +34,6 @@ class StorageTeams extends StorageBase {
}
genUrl(path) {
// console.warn('genUrl', path);
if (!path) {
const groupId = null;
const dir = null;
@ -212,17 +211,11 @@ class StorageTeams extends StorageBase {
this.logger.debug('List', dir);
const ts = this.logger.ts();
// console.warn('dir ', dir);
const urlParts = this.genUrl(dir);
const groupId = urlParts[0];
dir = urlParts[1];
const urlPath = groupId ? (dir ? ':/children' : '/drive/root/children') : '';
const url = urlParts[2] + urlPath;
// console.warn('urlParts', urlParts);
// console.warn('groupId ', groupId);
// console.warn('dir ', dir);
// console.warn('urlPath ', urlPath);
// console.warn('url ', url);
const self = this;
self._groupId = groupId;
@ -337,9 +330,9 @@ class StorageTeams extends StorageBase {
}
_getOAuthConfig() {
let clientId = this.appSettings.teamsClientId;
let clientSecret = this.appSettings.teamsClientSecret;
let tenant = this.appSettings.teamsTenantId;
let clientId = this.appSettings.msteamsClientId;
let clientSecret = this.appSettings.msteamsClientSecret;
let tenant = this.appSettings.msteamsTenantId;
if (!clientId) {
if (Features.isDesktop) {

View File

@ -18,7 +18,7 @@ const ThirdPartyStorage = {
dropbox: new StorageDropbox(),
gdrive: new StorageGDrive(),
onedrive: new StorageOneDrive(),
teams: new StorageTeams(),
msteams: new StorageTeams(),
webdav: new StorageWebDav()
};