-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtika.php
205 lines (179 loc) · 7.11 KB
/
tika.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle 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, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle 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 Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Extract text from files using Tika.
*
* @package search_elastic
* @copyright Matt Porritt <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace search_elastic\enrich\text;
use search_elastic\enrich\base\base_enrich;
/**
* Extract text from files using Tika.
*
* @package search_elastic
* @copyright Matt Porritt <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class tika extends base_enrich {
/**
* Array of file mimetypes that enrichment class supports
* processing of / extracting data from.
*
* @var array
*/
protected $acceptedmime = array(
'application/pdf',
'text/html',
'application/msword',
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
'application/vnd.ms-word.document.macroEnabled.12',
'application/vnd.ms-excel',
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
'application/vnd.ms-excel.sheet.macroEnabled.12',
'application/vnd.ms-excel.template.macroEnabled.12',
'application/vnd.ms-excel.addin.macroEnabled.12',
'application/vnd.ms-excel.sheet.binary.macroEnabled.12',
'application/vnd.ms-powerpoint',
'application/vnd.openxmlformats-officedocument.presentationml.presentation',
'application/vnd.openxmlformats-officedocument.presentationml.template',
'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
'application/vnd.ms-powerpoint.addin.macroEnabled.12',
'application/vnd.ms-powerpoint.presentation.macroEnabled.12',
'application/vnd.ms-powerpoint.slideshow.macroEnabled.12',
'application/vnd.oasis.opendocument.text',
'application/vnd.oasis.opendocument.spreadsheet',
'application/vnd.oasis.opendocument.presentation',
'application/epub+zip'
);
/**
* The constructor for the class, will be overwritten in most cases.
*
* @param mixed $config Search plugin configuration.
*/
public function __construct($config) {
$this->config = $config;
$this->tikaport = $this->config->tikaport;
$this->tikahostname = rtrim($this->config->tikahostname, "/");
}
/**
* Returns the step name.
*
* @return string human readable step name.
*/
public static function get_enrich_name() {
return get_string('tika', 'search_elastic');
}
/**
* Check if the tika server is ready.
*
* @return boolean
*/
private function tika_server_ready() {
$returnval = false;
$client = new \search_elastic\esrequest();
$url = '';
// Check if we have a valid set of config.
if (! empty($this->config->tikahostname) && ! empty($this->config->tikaport)) {
$port = $this->config->tikaport;
$hostname = rtrim($this->config->tikahostname, "/");
$url = $hostname . ':' . $port;
}
// Check we can reach Tika server.
if ($url !== '') {
$response = $client->get($url);
$responsecode = $response->getStatusCode();
if ($responsecode == 200) {
$returnval = true;
}
}
return $returnval;
}
/**
* Checks if supplied file is can be analyzed by this enrichment class.
*
* @param \stored_file $file File to check.
* @return boolean
*/
public function can_analyze($file) {
$cananalyze = parent::can_analyze($file);
// If we can analyze this type of file
// check if tika is configured and available.
if ($cananalyze) {
$cananalyze = $this->tika_server_ready();
}
return $cananalyze;
}
/**
* Use tika to extract text from file.
*
* @param \stored_file $file
* @param \search_elastic\esrequest $client client
* @return string|boolean
*/
public function extract_text($file, $client) {
// TODO: add timeout and retries for tika.
$extractedtext = '';
$port = $this->tikaport;
$hostname = $this->tikahostname;
$url = $hostname . ':'. $port . '/tika/form';
$filesize = $file->get_filesize();
if ($filesize <= $this->config->tikasendsize) {
$response = $client->postfile($url, $file);
if ($response->getStatusCode() == 200) {
$extractedtext = (string) $response->getBody();
}
}
return $extractedtext;
}
/**
* Analyse file and return results.
*
* @param \stored_file $file The image file to analyze.
* @return string $filetext Text of file description labels.
*/
public function analyze_file($file) {
$filetext = '';
$client = new \search_elastic\esrequest();
$filetext = $this->extract_text($file, $client);
return $filetext;
}
/**
* A callback to add fields to the enrich form, specific to enrichment class.
*
* @param \moodleform $form
* @param \MoodleQuickForm $mform
* @param mixed $customdata
* @param mixed $config
*/
public static function form_definition_extra($form, $mform, $customdata, $config) {
$mform->addElement('text', 'tikahostname', get_string ('tikahostname', 'search_elastic'));
$mform->setType('tikahostname', PARAM_URL);
$mform->addHelpButton('tikahostname', 'tikahostname', 'search_elastic');
self::set_default('tikahostname', 'http://127.0.0.1', $mform, $customdata, $config);
$mform->addElement('text', 'tikaport', get_string ('tikaport', 'search_elastic'));
$mform->setType('tikaport', PARAM_INT);
$mform->addHelpButton('tikaport', 'tikaport', 'search_elastic');
self::set_default('tikaport', 9998, $mform, $customdata, $config);
$mform->addElement('text', 'tikasendsize', get_string ('tikasendsize', 'search_elastic'));
$mform->setType('tikasendsize', PARAM_ALPHANUMEXT);
$mform->addHelpButton('tikasendsize', 'tikasendsize', 'search_elastic');
self::set_default('tikasendsize', 512000000, $mform, $customdata, $config);
}
}