403Webshell
Server IP : 80.87.202.40  /  Your IP : 216.73.216.169
Web Server : Apache
System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64
User : bitrix ( 600)
PHP Version : 8.2.27
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : OFF |  Sudo : ON |  Pkexec : ON
Directory :  /home/bitrix/ext_www/rospirotorg.ru/bitrix/js/socialnetwork/post-form/src/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/bitrix/ext_www/rospirotorg.ru/bitrix/js/socialnetwork/post-form/src/post-data.js
import { Cache, Loc, Type } from 'main.core';
import { InitData, PostFormData } from './post-form';

export class PostData
{
	#cache = new Cache.MemoryCache();

	constructor(data: InitData)
	{
		this.setData(data);
	}

	setData(data: InitData)
	{
		this.#cache.set('data', data);
	}

	setFormData(formData: PostFormData)
	{
		const currentData = this.#cache.get('data');

		this.setData({
			...currentData,
			...formData,
		});
	}

	prepareRequestData(): Object
	{
		return {
			POST_TITLE: this.#getData('title'),
			POST_MESSAGE: this.#getData('message'),
			DEST_DATA: this.#getData('recipients'),
			UF_BLOG_POST_FILE: this.#getData('fileIds'),
			TAGS: this.#getData('tags'),
		};
	}

	validateRequestData(): string
	{
		if (!this.getMessage())
		{
			return Loc.getMessage('SN_PF_REQUEST_TEXT_VALIDATION_ERROR');
		}

		if (!this.getRecipients())
		{
			return Loc.getMessage('SN_PF_REQUEST_RECIPIENTS_VALIDATION_ERROR');
		}

		return '';
	}

	getTitle(): string
	{
		return Type.isStringFilled(this.#getData('title')) ? this.#getData('title') : '';
	}

	getMessage(): string
	{
		return Type.isStringFilled(this.#getData('message')) ? this.#getData('message') : '';
	}

	getRecipients(): string
	{
		return Type.isStringFilled(this.#getData('recipients')) ? this.#getData('recipients') : '';
	}

	setRecipients(recipients: string): void
	{
		const currentData = this.#cache.get('data');

		const newData = { recipients };

		this.setData({
			...currentData,
			...newData,
		});
	}

	getAllUsersTitle(): string
	{
		return this.#getData('allUsersTitle');
	}

	isAllowEmailInvitation(): boolean
	{
		return this.#getData('allowEmailInvitation') === true;
	}

	isAllowToAll(): boolean
	{
		return this.#getData('allowToAll') === true;
	}

	#getData(param: string): any
	{
		return this.#cache.get('data')[param];
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit