diff options
author | steckbrief <steckbrief@chefmail.de> | 2016-09-30 16:03:18 +0200 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2016-09-30 16:03:18 +0200 |
commit | 509128be585b7108ef77f807d49ce5ffe1a57853 (patch) | |
tree | 97439b75d0f8a1f1d045f75277c0b2f35456c23c /storage-backend/lib/functions.filetransfer.inc.php | |
parent | 7ce02c25b1a1e0ed915be4a9bc781744328d92ee (diff) |
Implements FS#236: Save receipient jid
Diffstat (limited to 'storage-backend/lib/functions.filetransfer.inc.php')
-rw-r--r-- | storage-backend/lib/functions.filetransfer.inc.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/storage-backend/lib/functions.filetransfer.inc.php b/storage-backend/lib/functions.filetransfer.inc.php new file mode 100644 index 0000000..679cef1 --- /dev/null +++ b/storage-backend/lib/functions.filetransfer.inc.php @@ -0,0 +1,23 @@ +<?php +/* + * This file contains the functions for the storage-backend. + */ + +function getSlotFilePath($slotUUID, $config) { + return $config['slot_registry_dir'].$slotUUID; +} + +function getUploadFilePath($slotUUID, $config, $filename = NULL) { + $path = $config['storage_base_path'].$slotUUID; + if (!is_null($filename)) { + $path .= '/'.$filename; + } + return $path; +} + +function loadSlotParameters($slotUUID, $config) { + $slotParameters = require(getSlotFilePath($slotUUID, $config)); + $slotParameters['filename'] = $slotParameters['filename']; + + return $slotParameters; +}
\ No newline at end of file |