Merge pull request #10988 from jmcclelland/CRM-21194
[civicrm-core.git] / api / v3 / Attachment.php
CommitLineData
56154d36 1<?php
56154d36
TO
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
56154d36 5 +--------------------------------------------------------------------+
1f4ea726 6 | Copyright CiviCRM LLC (c) 2004-2017 |
56154d36
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28/**
29 * "Attachment" is a pseudo-entity which represents a record in civicrm_file
30 * combined with a record in civicrm_entity_file as well as the underlying
31 * file content.
dc137cd4 32 * For core fields use "entity_table", for custom fields use "field_name"
56154d36
TO
33 *
34 * @code
dc137cd4 35 * // Create an attachment for a core field
56154d36
TO
36 * $result = civicrm_api3('Attachment', 'create', array(
37 * 'entity_table' => 'civicrm_activity',
38 * 'entity_id' => 123,
39 * 'name' => 'README.txt',
40 * 'mime_type' => 'text/plain',
41 * 'content' => 'Please to read the README',
42 * ));
43 * $attachment = $result['values'][$result['id']];
44 * echo sprintf("<a href='%s'>View %s</a>", $attachment['url'], $attachment['name']);
45 * @endcode
46 *
47 * @code
dc137cd4
CW
48 * // Create an attachment for a custom file field
49 * $result = civicrm_api3('Attachment', 'create', array(
50 * 'field_name' => 'custom_6',
51 * 'entity_id' => 123,
52 * 'name' => 'README.txt',
53 * 'mime_type' => 'text/plain',
54 * 'content' => 'Please to read the README',
55 * ));
56 * $attachment = $result['values'][$result['id']];
57 * echo sprintf("<a href='%s'>View %s</a>", $attachment['url'], $attachment['name']);
58 * @endcode
59 *
60 * @code
61 * // Move an existing file and save as an attachment
56154d36
TO
62 * $result = civicrm_api3('Attachment', 'create', array(
63 * 'entity_table' => 'civicrm_activity',
64 * 'entity_id' => 123,
65 * 'name' => 'README.txt',
66 * 'mime_type' => 'text/plain',
67 * 'options' => array(
68 * 'move-file' => '/tmp/upload1a2b3c4d',
69 * ),
70 * ));
71 * $attachment = $result['values'][$result['id']];
72 * echo sprintf("<a href='%s'>View %s</a>", $attachment['url'], $attachment['name']);
73 * @endcode
74 *
75 * Notes:
76 * - File content is not returned by default. One must specify 'return => content'.
77 * - Features which deal with local file system (e.g. passing "options.move-file"
78 * or returning a "path") are only valid when executed as a local API (ie
79 * "check_permissions"==false)
80 *
81 * @package CiviCRM_APIv3
56154d36
TO
82 */
83
84/**
22242c87 85 * Adjust metadata for "create" action.
56154d36 86 *
cf470720
TO
87 * @param array $spec
88 * List of fields.
56154d36
TO
89 */
90function _civicrm_api3_attachment_create_spec(&$spec) {
91 $spec = array_merge($spec, _civicrm_api3_attachment_getfields());
92 $spec['name']['api.required'] = 1;
93 $spec['mime_type']['api.required'] = 1;
56154d36
TO
94 $spec['entity_id']['api.required'] = 1;
95 $spec['upload_date']['api.default'] = 'now';
96}
97
98/**
244bbdd8 99 * Create an Attachment.
56154d36 100 *
cf470720 101 * @param array $params
22242c87 102 *
a6c01b45 103 * @return array
56154d36 104 * @throws API_Exception validation errors
2e37a19f 105 * @see Civi\API\Subscriber\DynamicFKAuthorization
56154d36
TO
106 */
107function civicrm_api3_attachment_create($params) {
dc137cd4 108 if (empty($params['id'])) {
210737b6 109 // When creating we need either entity_table or field_name.
dc137cd4
CW
110 civicrm_api3_verify_one_mandatory($params, NULL, array('entity_table', 'field_name'));
111 }
112
56154d36
TO
113 $config = CRM_Core_Config::singleton();
114 list($id, $file, $entityFile, $name, $content, $moveFile, $isTrusted, $returnContent) = _civicrm_api3_attachment_parse_params($params);
115
116 $fileDao = new CRM_Core_BAO_File();
117 $entityFileDao = new CRM_Core_DAO_EntityFile();
118
119 if ($id) {
120 $fileDao->id = $id;
121 if (!$fileDao->find(TRUE)) {
122 throw new API_Exception("Invalid ID");
123 }
124
125 $entityFileDao->file_id = $id;
126 if (!$entityFileDao->find(TRUE)) {
127 throw new API_Exception("Cannot modify orphaned file");
128 }
129 }
130
131 if (!$id && !is_string($content) && !is_string($moveFile)) {
132 throw new API_Exception("Mandatory key(s) missing from params array: 'id' or 'content' or 'options.move-file'");
133 }
134 if (!$isTrusted && $moveFile) {
135 throw new API_Exception("options.move-file is only supported on secure calls");
136 }
137 if (is_string($content) && is_string($moveFile)) {
138 throw new API_Exception("'content' and 'options.move-file' are mutually exclusive");
139 }
140 if ($id && !$isTrusted && isset($file['upload_date']) && $file['upload_date'] != CRM_Utils_Date::isoToMysql($fileDao->upload_date)) {
141 throw new API_Exception("Cannot modify upload_date" . var_export(array($file['upload_date'], $fileDao->upload_date, CRM_Utils_Date::isoToMysql($fileDao->upload_date)), TRUE));
142 }
143 if ($id && $name && $name != CRM_Utils_File::cleanFileName($fileDao->uri)) {
144 throw new API_Exception("Cannot modify name");
145 }
146
147 $fileDao->copyValues($file);
148 if (!$id) {
149 $fileDao->uri = CRM_Utils_File::makeFileName($name);
150 }
151 $fileDao->save();
152
153 $entityFileDao->copyValues($entityFile);
154 $entityFileDao->file_id = $fileDao->id;
155 $entityFileDao->save();
156
157 $path = $config->customFileUploadDir . DIRECTORY_SEPARATOR . $fileDao->uri;
158 if (is_string($content)) {
159 file_put_contents($path, $content);
160 }
161 elseif (is_string($moveFile)) {
a436d075
ML
162 // CRM-17432 Do not use rename() since it will break file permissions.
163 // Also avoid move_uplaoded_file() because the API can use options.move-file.
164 copy($moveFile, $path);
165 unlink($moveFile);
56154d36
TO
166 }
167
dc137cd4
CW
168 // Save custom field to entity
169 if (!$id && empty($params['entity_table']) && isset($params['field_name'])) {
170 civicrm_api3('custom_value', 'create', array(
171 'entity_id' => $params['entity_id'],
172 $params['field_name'] => $fileDao->id,
173 ));
174 }
175
56154d36 176 $result = array(
21dfd5f5 177 $fileDao->id => _civicrm_api3_attachment_format_result($fileDao, $entityFileDao, $returnContent, $isTrusted),
56154d36
TO
178 );
179 return civicrm_api3_create_success($result, $params, 'Attachment', 'create');
180}
181
182/**
22242c87 183 * Adjust metadata for get action.
56154d36 184 *
cf470720
TO
185 * @param array $spec
186 * List of fields.
56154d36
TO
187 */
188function _civicrm_api3_attachment_get_spec(&$spec) {
189 $spec = array_merge($spec, _civicrm_api3_attachment_getfields());
190}
191
192/**
244bbdd8 193 * Get Attachment.
dc64d047 194 *
56154d36 195 * @param array $params
dc64d047 196 *
a6c01b45 197 * @return array
72b3a70c 198 * per APIv3
56154d36
TO
199 * @throws API_Exception validation errors
200 */
201function civicrm_api3_attachment_get($params) {
202 list($id, $file, $entityFile, $name, $content, $moveFile, $isTrusted, $returnContent) = _civicrm_api3_attachment_parse_params($params);
203
204 $dao = __civicrm_api3_attachment_find($params, $id, $file, $entityFile, $isTrusted);
205 $result = array();
206 while ($dao->fetch()) {
207 $result[$dao->id] = _civicrm_api3_attachment_format_result($dao, $dao, $returnContent, $isTrusted);
208 }
209 return civicrm_api3_create_success($result, $params, 'Attachment', 'create');
210}
211
24a70b66 212/**
244bbdd8 213 * Adjust metadata for Attachment delete action.
22242c87 214 *
24a70b66
EM
215 * @param $spec
216 */
56154d36
TO
217function _civicrm_api3_attachment_delete_spec(&$spec) {
218 unset($spec['id']['api.required']);
219 $entityFileFields = CRM_Core_DAO_EntityFile::fields();
220 $spec['entity_table'] = $entityFileFields['entity_table'];
221 $spec['entity_table']['title'] = CRM_Utils_Array::value('title', $spec['entity_table'], 'Entity Table') . ' (write-once)';
222 $spec['entity_id'] = $entityFileFields['entity_id'];
223 $spec['entity_id']['title'] = CRM_Utils_Array::value('title', $spec['entity_id'], 'Entity ID') . ' (write-once)';
224}
225
226/**
244bbdd8 227 * Delete Attachment.
22242c87 228 *
16b10e64 229 * @param array $params
22242c87 230 *
56154d36
TO
231 * @return array
232 * @throws API_Exception
233 */
234function civicrm_api3_attachment_delete($params) {
235 if (!empty($params['id'])) {
236 // ok
237 }
238 elseif (!empty($params['entity_table']) && !empty($params['entity_id'])) {
239 // ok
240 }
241 else {
242 throw new API_Exception("Mandatory key(s) missing from params array: id or entity_table+entity_table");
243 }
244
245 $config = CRM_Core_Config::singleton();
246 list($id, $file, $entityFile, $name, $content, $moveFile, $isTrusted, $returnContent) = _civicrm_api3_attachment_parse_params($params);
247 $dao = __civicrm_api3_attachment_find($params, $id, $file, $entityFile, $isTrusted);
248
249 $filePaths = array();
250 $fileIds = array();
251 while ($dao->fetch()) {
35671d00 252 $filePaths[] = $config->customFileUploadDir . DIRECTORY_SEPARATOR . $dao->uri;
56154d36
TO
253 $fileIds[] = $dao->id;
254 }
255
256 if (!empty($fileIds)) {
257 $idString = implode(',', array_filter($fileIds, 'is_numeric'));
258 CRM_Core_DAO::executeQuery("DELETE FROM civicrm_entity_file WHERE file_id in ($idString)");
259 CRM_Core_DAO::executeQuery("DELETE FROM civicrm_file WHERE id in ($idString)");
260 }
261
262 // unlink is non-transactional, so we do this as the last step -- just in case the other steps produce errors
263 if (!empty($filePaths)) {
264 foreach ($filePaths as $filePath) {
265 unlink($filePath);
266 }
267 }
268
269 $result = array();
270 return civicrm_api3_create_success($result, $params, 'Attachment', 'create');
271}
272
273/**
22242c87
EM
274 * Attachment find helper.
275 *
56154d36
TO
276 * @param array $params
277 * @param int|null $id the user-supplied ID of the attachment record
cf470720
TO
278 * @param array $file
279 * The user-supplied vales for the file (mime_type, description, upload_date).
280 * @param array $entityFile
906e6120 281 * The user-supplied values of the entity-file (entity_table, entity_id).
56154d36 282 * @param bool $isTrusted
22242c87 283 *
56154d36
TO
284 * @return CRM_Core_DAO
285 * @throws API_Exception
286 */
287function __civicrm_api3_attachment_find($params, $id, $file, $entityFile, $isTrusted) {
288 foreach (array('name', 'content', 'path', 'url') as $unsupportedFilter) {
289 if (!empty($params[$unsupportedFilter])) {
290 throw new API_Exception("Get by $unsupportedFilter is not currently supported");
291 }
292 }
293
294 $select = CRM_Utils_SQL_Select::from('civicrm_file cf')
295 ->join('cef', 'INNER JOIN civicrm_entity_file cef ON cf.id = cef.file_id')
296 ->select(array(
297 'cf.id',
298 'cf.uri',
299 'cf.mime_type',
300 'cf.description',
301 'cf.upload_date',
302 'cef.entity_table',
303 'cef.entity_id',
304 ));
305
306 if ($id) {
307 $select->where('cf.id = #id', array('#id' => $id));
308 }
22242c87 309 // Recall: $file is filtered by parse_params.
56154d36
TO
310 foreach ($file as $key => $value) {
311 $select->where('cf.!field = @value', array(
312 '!field' => $key,
313 '@value' => $value,
314 ));
315 }
22242c87 316 // Recall: $entityFile is filtered by parse_params.
56154d36
TO
317 foreach ($entityFile as $key => $value) {
318 $select->where('cef.!field = @value', array(
319 '!field' => $key,
320 '@value' => $value,
321 ));
322 }
323 if (!$isTrusted) {
324 // FIXME ACLs: Add any JOIN or WHERE clauses needed to enforce access-controls for the target entity.
325 //
326 // The target entity is identified by "cef.entity_table" (aka $entityFile['entity_table']) and "cef.entity_id".
327 //
328 // As a simplification, we *require* the "get" actions to filter on a single "entity_table" which should
329 // avoid the complexity of matching ACL's against multiple entity types.
330 }
331
332 $dao = CRM_Core_DAO::executeQuery($select->toSQL());
333 return $dao;
334}
335
336/**
22242c87
EM
337 * Attachment parsing helper.
338 *
56154d36 339 * @param array $params
22242c87 340 *
dc64d047
EM
341 * @return array
342 * (0 => int $id, 1 => array $file, 2 => array $entityFile, 3 => string $name, 4 => string $content,
bed98343 343 * 5 => string $moveFile, 6 => $isTrusted, 7 => bool $returnContent)
344 * - array $file: whitelisted fields that can pass through directly to civicrm_file
345 * - array $entityFile: whitelisted fields that can pass through directly to civicrm_entity_file
346 * - string $name: the printable name
347 * - string $moveFile: the full path to a local file whose content should be loaded
348 * - bool $isTrusted: whether we trust the requester to do sketchy things (like moving files or reassigning entities)
349 * - bool $returnContent: whether we are expected to return the full content of the file
56154d36
TO
350 * @throws API_Exception validation errors
351 */
352function _civicrm_api3_attachment_parse_params($params) {
353 $id = CRM_Utils_Array::value('id', $params, NULL);
354 if ($id && !is_numeric($id)) {
355 throw new API_Exception("Malformed id");
356 }
357
358 $file = array();
359 foreach (array('mime_type', 'description', 'upload_date') as $field) {
360 if (array_key_exists($field, $params)) {
361 $file[$field] = $params[$field];
362 }
363 }
364
365 $entityFile = array();
366 foreach (array('entity_table', 'entity_id') as $field) {
367 if (array_key_exists($field, $params)) {
368 $entityFile[$field] = $params[$field];
369 }
370 }
371
dc137cd4
CW
372 if (empty($params['entity_table']) && isset($params['field_name'])) {
373 $tableInfo = CRM_Core_BAO_CustomField::getTableColumnGroup(intval(str_replace('custom_', '', $params['field_name'])));
374 $entityFile['entity_table'] = $tableInfo[0];
375 }
376
56154d36
TO
377 $name = NULL;
378 if (array_key_exists('name', $params)) {
379 if ($params['name'] != basename($params['name']) || preg_match(':[/\\\\]:', $params['name'])) {
380 throw new API_Exception('Malformed name');
381 }
382 $name = $params['name'];
383 }
384
385 $content = NULL;
386 if (isset($params['content'])) {
387 $content = $params['content'];
388 }
389
390 $moveFile = NULL;
391 if (isset($params['options']['move-file'])) {
392 $moveFile = $params['options']['move-file'];
393 }
394 elseif (isset($params['options.move-file'])) {
395 $moveFile = $params['options.move-file'];
396 }
397
398 $isTrusted = empty($params['check_permissions']);
399
400 $returns = isset($params['return']) ? $params['return'] : array();
401 $returns = is_array($returns) ? $returns : array($returns);
402 $returnContent = in_array('content', $returns);
403
404 return array($id, $file, $entityFile, $name, $content, $moveFile, $isTrusted, $returnContent);
405}
406
407/**
22242c87
EM
408 * Attachment result formatting helper.
409 *
cf470720
TO
410 * @param CRM_Core_DAO_File $fileDao
411 * Maybe "File" or "File JOIN EntityFile".
412 * @param CRM_Core_DAO_EntityFile $entityFileDao
413 * Maybe "EntityFile" or "File JOIN EntityFile".
414 * @param bool $returnContent
415 * Whether to return the full content of the file.
416 * @param bool $isTrusted
417 * Whether the current request is trusted to perform file-specific operations.
35823763 418 *
56154d36
TO
419 * @return array
420 */
421function _civicrm_api3_attachment_format_result($fileDao, $entityFileDao, $returnContent, $isTrusted) {
422 $config = CRM_Core_Config::singleton();
423 $path = $config->customFileUploadDir . DIRECTORY_SEPARATOR . $fileDao->uri;
424
425 $result = array(
426 'id' => $fileDao->id,
427 'name' => CRM_Utils_File::cleanFileName($fileDao->uri),
428 'mime_type' => $fileDao->mime_type,
429 'description' => $fileDao->description,
430 'upload_date' => is_numeric($fileDao->upload_date) ? CRM_Utils_Date::mysqlToIso($fileDao->upload_date) : $fileDao->upload_date,
431 'entity_table' => $entityFileDao->entity_table,
432 'entity_id' => $entityFileDao->entity_id,
4994819e 433 'icon' => CRM_Utils_File::getIconFromMimeType($fileDao->mime_type),
56154d36
TO
434 );
435 $result['url'] = CRM_Utils_System::url(
436 'civicrm/file', 'reset=1&id=' . $result['id'] . '&eid=' . $result['entity_id'],
437 TRUE,
438 NULL,
439 FALSE,
440 TRUE
441 );
442 if ($isTrusted) {
443 $result['path'] = $path;
444 }
445 if ($returnContent) {
446 $result['content'] = file_get_contents($path);
447 }
448 return $result;
449}
450
451/**
22242c87
EM
452 * Attachment getfields helper.
453 *
a6c01b45 454 * @return array
72b3a70c 455 * list of fields (indexed by name)
56154d36
TO
456 */
457function _civicrm_api3_attachment_getfields() {
458 $fileFields = CRM_Core_DAO_File::fields();
459 $entityFileFields = CRM_Core_DAO_EntityFile::fields();
460
461 $spec = array();
462 $spec['id'] = $fileFields['id'];
463 $spec['name'] = array(
464 'title' => 'Name (write-once)',
465 'description' => 'The logical file name (not searchable)',
466 'type' => CRM_Utils_Type::T_STRING,
467 );
dc137cd4
CW
468 $spec['field_name'] = array(
469 'title' => 'Field Name (write-once)',
470 'description' => 'Alternative to "entity_table" param - sets custom field value.',
471 'type' => CRM_Utils_Type::T_STRING,
472 );
56154d36
TO
473 $spec['mime_type'] = $fileFields['mime_type'];
474 $spec['description'] = $fileFields['description'];
475 $spec['upload_date'] = $fileFields['upload_date'];
476 $spec['entity_table'] = $entityFileFields['entity_table'];
d1b0d05e
EM
477 // Would be hard to securely handle changes.
478 $spec['entity_table']['title'] = CRM_Utils_Array::value('title', $spec['entity_table'], 'Entity Table') . ' (write-once)';
56154d36
TO
479 $spec['entity_id'] = $entityFileFields['entity_id'];
480 $spec['entity_id']['title'] = CRM_Utils_Array::value('title', $spec['entity_id'], 'Entity ID') . ' (write-once)'; // would be hard to securely handle changes
481 $spec['url'] = array(
482 'title' => 'URL (read-only)',
483 'description' => 'URL for downloading the file (not searchable, expire-able)',
484 'type' => CRM_Utils_Type::T_STRING,
485 );
486 $spec['path'] = array(
487 'title' => 'Path (read-only)',
488 'description' => 'Local file path (not searchable, local-only)',
489 'type' => CRM_Utils_Type::T_STRING,
490 );
491 $spec['content'] = array(
492 'title' => 'Content',
493 'description' => 'File content (not searchable, not returned by default)',
494 'type' => CRM_Utils_Type::T_STRING,
495 );
496
497 return $spec;
498}