One Hat Cyber Team
Your IP :
216.73.216.80
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
ojs-nosc
/
lib
/
pkp
/
classes
/
log
/
event
/
View File Name :
Repository.php
<?php /** * @file classes/log/event/Repository.php * * Copyright (c) 2014-2024 Simon Fraser University * Copyright (c) 2000-2024 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class Repository * * @brief A repository to find and manage event log entries. */ namespace PKP\log\event; use APP\facades\Repo; use PKP\context\Context; use PKP\core\PKPApplication; use PKP\core\PKPRequest; use PKP\plugins\Hook; use PKP\services\PKPSchemaService; use PKP\validation\ValidatorFactory; class Repository { public DAO $dao; // The name of the class to map this entity to its schema public string $schemaMap = maps\Schema::class; protected PKPRequest $request; protected PKPSchemaService $schemaService; public function __construct(DAO $dao, PKPRequest $request, PKPSchemaService $schemaService) { $this->dao = $dao; $this->request = $request; $this->schemaService = $schemaService; } /** @copydoc DAO::newDataObject() */ public function newDataObject(array $params = []): EventLogEntry { $object = $this->dao->newDataObject(); if (!empty($params)) { $object->setAllData($params); } return $object; } /** @copydoc DAO::getByKey() */ public function get(int $key): ?EventLogEntry { return $this->dao->get($key); } /** @copydoc DAO::getCollector() */ public function getCollector(): Collector { return app(Collector::class); } /** * Get an instance of the map class for mapping * log entries to their schema */ public function getSchemaMap(): maps\Schema { return app('maps')->withExtensions($this->schemaMap); } /** * Validate properties for an event log entry * * Perform validation checks on data used to add or edit an event log entry. * * @param array $props A key/value array with the new data to validate * * @return array A key/value array with validation errors. Empty if no errors * * @hook EventLog::validate [[&$errors, $object, $props, $allowedLocales, $primaryLocale]] */ public function validate(?EventLogEntry $object, array $props, Context $context): array { $allowedLocales = $context->getSupportedSubmissionLocales(); ; $primaryLocale = $context->getPrimaryLocale(); $validator = ValidatorFactory::make( $props, $this->schemaService->getValidationRules($this->dao->schema, $allowedLocales) ); // Check required fields ValidatorFactory::required( $validator, $object, $this->schemaService->getRequiredProps($this->dao->schema), $this->schemaService->getMultilingualProps($this->dao->schema), $allowedLocales, $primaryLocale ); // Check for input from disallowed locales ValidatorFactory::allowedLocales($validator, $this->schemaService->getMultilingualProps($this->dao->schema), $allowedLocales); $errors = []; if ($validator->fails()) { $errors = $this->schemaService->formatValidationErrors($validator->errors()); } Hook::call('EventLog::validate', [&$errors, $object, $props, $allowedLocales, $primaryLocale]); return $errors; } /** @copydoc DAO::insert() */ public function add(EventLogEntry $logEntry): int { $id = $this->dao->insert($logEntry); Hook::call('EventLog::add', [$logEntry]); // Stamp the submission status modification date without triggering edit event if ($logEntry->getData('assocType') === PKPApplication::ASSOC_TYPE_SUBMISSION) { $submission = Repo::submission()->get($logEntry->getData('assocId')); $submission->stampLastActivity(); Repo::submission()->dao->update($submission); } return $id; } /** @copydoc DAO::delete() */ public function delete(EventLogEntry $logEntry) { Hook::call('EventLog::delete::before', [$logEntry]); $this->dao->delete($logEntry); Hook::call('EventLog::delete', [$logEntry]); } /** * Delete a collection of categories */ public function deleteMany(Collector $collector) { foreach ($collector->getMany() as $logEntry) { /** @var EventLogEntry $logEntry */ $this->delete($logEntry); } } }