83 lines
2.9 KiB
PHP
83 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; under version 2
|
|
* of the License (non-upgradable).
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* Copyright (c) 2018 (original work) Open Assessment Technologies SA;
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace oat\tao\model\search\tasks;
|
|
|
|
use oat\generis\model\OntologyAwareTrait;
|
|
use oat\oatbox\action\Action;
|
|
use oat\tao\model\search\index\DocumentBuilder\IndexDocumentBuilder;
|
|
use oat\tao\model\search\index\IndexService;
|
|
use oat\tao\model\search\Search;
|
|
use oat\tao\model\taskQueue\Task\TaskAwareInterface;
|
|
use oat\tao\model\taskQueue\Task\TaskAwareTrait;
|
|
use Zend\ServiceManager\ServiceLocatorAwareInterface;
|
|
use Zend\ServiceManager\ServiceLocatorAwareTrait;
|
|
use \common_report_Report as Report;
|
|
|
|
/**
|
|
* Class UpdateResourceInIndex
|
|
*
|
|
* @author Ilya Yarkavets <ilya@taotesting.com>
|
|
* @package oat\tao\model\search\tasks
|
|
*/
|
|
class UpdateResourceInIndex implements Action, ServiceLocatorAwareInterface, TaskAwareInterface
|
|
{
|
|
use ServiceLocatorAwareTrait;
|
|
use OntologyAwareTrait;
|
|
use TaskAwareTrait;
|
|
|
|
public function __invoke($params): Report
|
|
{
|
|
if (empty($params) || empty($params[0])) {
|
|
throw new \common_exception_MissingParameter();
|
|
}
|
|
|
|
$createdResource = $this->getResource($params[0]);
|
|
|
|
/** @var IndexService $indexService */
|
|
$indexService = $this->getServiceLocator()->get(IndexService::SERVICE_ID);
|
|
|
|
/** @var IndexDocumentBuilder $documentBuilder */
|
|
$documentBuilder = $indexService->getDocumentBuilder();
|
|
$documentBuilder->setServiceLocator($this->getServiceLocator());
|
|
|
|
$indexDocument = $documentBuilder->createDocumentFromResource($createdResource);
|
|
|
|
/** @var Search $searchService */
|
|
$searchService = $this->getServiceLocator()->get(Search::SERVICE_ID);
|
|
|
|
$numberOfIndexed = $searchService->index([$indexDocument]);
|
|
|
|
if ($numberOfIndexed === 0) {
|
|
$type = Report::TYPE_ERROR;
|
|
$message = "Zero documents were added/updated in index.";
|
|
} elseif ($numberOfIndexed === 1) {
|
|
$type = Report::TYPE_SUCCESS;
|
|
$message = "Document in index was successfully updated.";
|
|
} else {
|
|
$type = Report::TYPE_WARNING;
|
|
$message = "The number or indexed documents is different than the expected total";
|
|
}
|
|
|
|
return new Report($type, $message);
|
|
}
|
|
}
|