Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 19
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
AddSearchIndexFromArray
0.00% covered (danger)
0.00%
0 / 19
0.00% covered (danger)
0.00%
0 / 2
20
0.00% covered (danger)
0.00%
0 / 1
 __invoke
0.00% covered (danger)
0.00%
0 / 18
0.00% covered (danger)
0.00%
0 / 1
12
 getIndexDocumentBuilder
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2018 (original work) Open Assessment Technologies SA;
19 *
20 *
21 */
22
23namespace oat\tao\model\search\tasks;
24
25use oat\oatbox\action\Action;
26use oat\tao\model\search\index\DocumentBuilder\IndexDocumentBuilderInterface;
27use oat\tao\model\search\SearchService;
28use oat\tao\model\taskQueue\Task\TaskAwareInterface;
29use oat\tao\model\taskQueue\Task\TaskAwareTrait;
30use Zend\ServiceManager\ServiceLocatorAwareTrait;
31use Zend\ServiceManager\ServiceLocatorAwareInterface;
32use oat\generis\model\OntologyAwareTrait;
33
34/**
35 * Class AddSearchIndexFromArray
36 *
37 * @author Aleksej Tikhanovich <aleksej@taotesting.com>
38 * @package oat\tao\model\search\tasks
39 */
40class AddSearchIndexFromArray implements Action, ServiceLocatorAwareInterface, TaskAwareInterface
41{
42    use ServiceLocatorAwareTrait;
43    use OntologyAwareTrait;
44    use TaskAwareTrait;
45
46    /**
47     * @param $params
48     * @return \common_report_Report
49     * @throws \common_exception_Error
50     * @throws \common_exception_MissingParameter
51     */
52    public function __invoke($params)
53    {
54        if (count($params) < 2) {
55            throw new \common_exception_MissingParameter();
56        }
57        $id = array_shift($params);
58        $body = array_shift($params);
59
60        $report = new \common_report_Report(\common_report_Report::TYPE_SUCCESS, __('Adding search index for %s', $id));
61
62        try {
63            $document = $this->getIndexDocumentBuilder()->createDocumentFromArray([
64                'id' => $id,
65                'body' => $body
66            ]);
67            SearchService::getSearchImplementation()->index([$document]);
68        } catch (\Exception $e) {
69            $report->add(
70                new \common_report_Report(
71                    \common_report_Report::TYPE_ERROR,
72                    __('Error adding search index for %s with message %s', $id, $e->getMessage())
73                )
74            );
75        }
76
77        return $report;
78    }
79
80    private function getIndexDocumentBuilder(): IndexDocumentBuilderInterface
81    {
82        return $this->getServiceLocator()->getContainer()->get(IndexDocumentBuilderInterface::class);
83    }
84}