-
Notifications
You must be signed in to change notification settings - Fork 440
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Maksim Sukharev <[email protected]>
- Loading branch information
Showing
10 changed files
with
130 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
/** | ||
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
*/ | ||
|
||
import axios from '@nextcloud/axios' | ||
import { generateOcsUrl } from '@nextcloud/router' | ||
|
||
import BrowserStorage from './BrowserStorage.js' | ||
import type { | ||
setSipSettingsParams, | ||
setSipSettingsResponse, | ||
setUserSettingsParams, | ||
setUserSettingsResponse, | ||
} from '../types/index.ts' | ||
|
||
/** | ||
* Sets the attachment folder setting for the user | ||
* | ||
* @param path The name of the folder | ||
*/ | ||
const setAttachmentFolder = async function(path: string): setUserSettingsResponse { | ||
return axios.post(generateOcsUrl('apps/spreed/api/v1/settings/user'), { | ||
key: 'attachment_folder', | ||
value: path, | ||
} as setUserSettingsParams) | ||
} | ||
|
||
/** | ||
* Sets the read status privacy setting for the user | ||
* | ||
* @param privacy The selected value, either 0 or 1 | ||
*/ | ||
const setReadStatusPrivacy = async function(privacy: number): setUserSettingsResponse { | ||
return axios.post(generateOcsUrl('apps/spreed/api/v1/settings/user'), { | ||
key: 'read_status_privacy', | ||
value: privacy, | ||
} as setUserSettingsParams) | ||
} | ||
|
||
/** | ||
* Sets the typing status privacy setting for the user | ||
* | ||
* @param privacy The selected value, either 0 or 1 | ||
*/ | ||
const setTypingStatusPrivacy = async function(privacy: number): setUserSettingsResponse { | ||
return axios.post(generateOcsUrl('apps/spreed/api/v1/settings/user'), { | ||
key: 'typing_privacy', | ||
value: privacy, | ||
} as setUserSettingsParams) | ||
} | ||
|
||
/** | ||
* Save the SIP settings | ||
* | ||
* @param payload payload | ||
* @param payload.sipGroups The groups allowed to enable SIP on a conversation | ||
* @param payload.sharedSecret The shared secret which is used by the SIP server to authenticate | ||
* @param payload.dialInInfo The dial-in Information displayed in the email and sidebar | ||
*/ | ||
const setSIPSettings = async function({ sipGroups, sharedSecret, dialInInfo }: setSipSettingsParams): setSipSettingsResponse { | ||
return axios.post(generateOcsUrl('apps/spreed/api/v1/settings/sip'), { | ||
sipGroups, | ||
sharedSecret, | ||
dialInInfo, | ||
} as setSipSettingsParams) | ||
} | ||
|
||
const setPlaySounds = async function(hasUserAccount: boolean, value: 'yes'|'no') { | ||
if (hasUserAccount) { | ||
return axios.post(generateOcsUrl('apps/spreed/api/v1/settings/user'), { | ||
key: 'play_sounds', | ||
value, | ||
}) | ||
} else { | ||
BrowserStorage.setItem('play_sounds', value) | ||
} | ||
} | ||
|
||
const setStartWithoutMedia = async function(value: boolean) { | ||
return setUserConfig('spreed', 'calls_start_without_media', value ? 'yes' : 'no') | ||
} | ||
|
||
const setBlurVirtualBackground = async function(value: boolean) { | ||
return setUserConfig('spreed', 'blur_virtual_background', value ? 'yes' : 'no') | ||
} | ||
|
||
/** | ||
* Set user config using provisioning API | ||
* from https://docs.nextcloud.com/server/latest/developer_manual/client_apis/OCS/ocs-user-preferences-api.html | ||
* | ||
* @param appId - app id | ||
* @param configKey - key of the config to set | ||
* @param configValue - value to set | ||
*/ | ||
const setUserConfig = async function(appId: string, configKey: string, configValue: string): Promise<unknown> { | ||
return axios.post(generateOcsUrl('apps/provisioning_api/api/v1/config/users/{appId}/{configKey}', { appId, configKey }), { | ||
configValue, | ||
}) | ||
} | ||
|
||
export { | ||
setAttachmentFolder, | ||
setBlurVirtualBackground, | ||
setReadStatusPrivacy, | ||
setTypingStatusPrivacy, | ||
setSIPSettings, | ||
setPlaySounds, | ||
setStartWithoutMedia, | ||
setUserConfig, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters