Skip to content
Snippets Groups Projects
HistoryController.php 3.6 KiB
Newer Older
  • Learn to ignore specific revisions
  • Florian Azizian's avatar
    Florian Azizian committed
    <?php
    
    /**
    * Copyright Maarch since 2008 under licence GPLv3.
    * See LICENCE.txt file at the root folder for more details.
    * This file is part of Maarch software.
    *
    */
    
    /**
    * @brief History Controller
    * @author dev@maarch.org
    */
    
    namespace History\controllers;
    
    
    use Document\controllers\DocumentController;
    use Document\models\DocumentModel;
    
    use Group\controllers\PrivilegeController;
    
    use Slim\Http\Request;
    use Slim\Http\Response;
    
    Damien's avatar
    Damien committed
    use SrcCore\controllers\LanguageController;
    
    Florian Azizian's avatar
    Florian Azizian committed
    use SrcCore\models\ValidatorModel;
    use History\models\HistoryModel;
    
    use User\controllers\UserController;
    use User\models\UserModel;
    
    Florian Azizian's avatar
    Florian Azizian committed
    
    class HistoryController
    {
    
    Damien's avatar
    Damien committed
        public static function add(array $args)
    
    Florian Azizian's avatar
    Florian Azizian committed
        {
    
    Damien's avatar
    Damien committed
            ValidatorModel::notEmpty($args, ['code', 'objectType', 'objectId', 'type', 'message']);
            ValidatorModel::stringType($args, ['code', 'objectType', 'type', 'message']);
            ValidatorModel::arrayType($args, ['data']);
    
    Florian Azizian's avatar
    Florian Azizian committed
    
            HistoryModel::create([
    
    Damien's avatar
    Damien committed
                'code'          => $args['code'],
                'object_type'   => $args['objectType'],
                'object_id'     => $args['objectId'],
                'type'          => $args['type'],
    
                'user'          => UserModel::getLabelledUserById(['id' => $GLOBALS['id']]),
    
    Damien's avatar
    Damien committed
                'message'       => $args['message'],
                'data'          => empty($args['data']) ? '{}' : json_encode($args['data']),
    
                'ip'            => empty($_SERVER['REMOTE_ADDR']) ? 'script' : $_SERVER['REMOTE_ADDR']
    
    Damien's avatar
    Damien committed
            return true;
    
    Florian Azizian's avatar
    Florian Azizian committed
        }
    
    
        public function getByDocumentId(Request $request, Response $response, array $args)
        {
    
            if (!DocumentController::hasRightById(['id' => $args['id'], 'userId' => $GLOBALS['id']]) && !PrivilegeController::hasPrivilege(['userId' => $GLOBALS['id'], 'privilege' => 'manage_documents'])) {
    
                return $response->withStatus(403)->withJson(['errors' => 'Document out of perimeter']);
            }
    
            $document = DocumentModel::getById(['select' => [1], 'id' => $args['id']]);
            if (empty($document)) {
                return $response->withStatus(400)->withJson(['errors' => 'Document does not exist']);
            }
    
            $history = HistoryModel::get([
    
                'select'    => ['code', 'type', '"user"', 'date', 'message', 'data'],
    
    Damien's avatar
    Damien committed
                'where'     => ["(object_type = ? AND object_id = ?) OR (data->>'mainDocumentId' = ?)"],
                'data'      => ['main_documents', $args['id'], $args['id']],
                'orderBy'   => ['date']
    
            ]);
    
            $formattedHistory = [];
    
    
    Damien's avatar
    Damien committed
            $lang = LanguageController::get();
    
    Damien's avatar
    Damien committed
            $langKeys = [];
            $langValues = [];
            foreach ($lang as $key => $value) {
                $langKeys[] = "/{{$key}}/";
                $langValues[] = $value;
            }
    
    
            foreach ($history as $value) {
                $date = new \DateTime($value['date']);
    
                $formattedHistory[] = [
                    'code'          => $value['code'],
                    'type'          => $value['type'],
    
                    'user'          => $value['user'],
    
                    'date'          => $date->format('d-m-Y H:i'),
    
    Damien's avatar
    Damien committed
                    'message'       => preg_replace($langKeys, $langValues, $value['message']),
    
                    'data'          => json_decode($value['data'], true)
                ];
            }
    
            HistoryController::add([
                'code'          => 'OK',
                'objectType'    => 'history',
                'objectId'      => $args['id'],
                'type'          => 'VIEW',
    
    Damien's avatar
    Damien committed
                'message'       => '{documentHistoryViewed}',
    
                'data'          => ['objectType' => 'main_documents']
            ]);
    
            return $response->withJson(['history' => $formattedHistory]);
        }
    
    Florian Azizian's avatar
    Florian Azizian committed
    }