The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/apps/meteor/app/api/server/v1/assets.ts

94 lines
2.5 KiB

import { Settings } from '@rocket.chat/models';
import { isAssetsUnsetAssetProps } from '@rocket.chat/rest-typings';
import { updateAuditedByUser } from '../../../../server/settings/lib/auditedSettingUpdates';
import { RocketChatAssets, refreshClients } from '../../../assets/server';
import { notifyOnSettingChangedById } from '../../../lib/server/lib/notifyListener';
import { settings } from '../../../settings/server';
import { API } from '../api';
import { getUploadFormData } from '../lib/getUploadFormData';
API.v1.addRoute(
'assets.setAsset',
{
authRequired: true,
permissionsRequired: ['manage-assets'],
},
{
async post() {
const asset = await getUploadFormData(
{
request: this.request,
},
{ field: 'asset', sizeLimit: settings.get('FileUpload_MaxFileSize') },
);
const { fileBuffer, fields, filename, mimetype } = asset;
const { refreshAllClients, assetName: customName } = fields;
const assetName = customName || filename;
const assetsKeys = Object.keys(RocketChatAssets.assets);
const isValidAsset = assetsKeys.includes(assetName);
if (!isValidAsset) {
throw new Error('Invalid asset');
}
const { key, value } = await RocketChatAssets.setAssetWithBuffer(fileBuffer, mimetype, assetName);
const { modifiedCount } = await updateAuditedByUser({
_id: this.userId,
username: this.user.username!,
ip: this.requestIp,
useragent: this.request.headers.get('user-agent') || '',
})(Settings.updateValueById, key, value);
if (modifiedCount) {
void notifyOnSettingChangedById(key);
}
if (refreshAllClients) {
await refreshClients(this.userId);
}
return API.v1.success();
},
},
);
API.v1.addRoute(
'assets.unsetAsset',
{
authRequired: true,
validateParams: isAssetsUnsetAssetProps,
permissionsRequired: ['manage-assets'],
},
{
async post() {
const { assetName, refreshAllClients } = this.bodyParams;
const isValidAsset = Object.keys(RocketChatAssets.assets).includes(assetName);
if (!isValidAsset) {
throw Error('Invalid asset');
}
const { key, value } = await RocketChatAssets.unsetAsset(assetName);
const { modifiedCount } = await updateAuditedByUser({
_id: this.userId,
username: this.user.username!,
ip: this.requestIp,
useragent: this.request.headers.get('user-agent') || '',
})(Settings.updateValueById, key, value);
if (modifiedCount) {
void notifyOnSettingChangedById(key);
}
if (refreshAllClients) {
await refreshClients(this.userId);
}
return API.v1.success();
},
},
);