Skip to content

Commit

Permalink
Merged branch 'MDL-30459' of git://github.com/mouneyrac/moodle.git wi…
Browse files Browse the repository at this point in the history
…th whitespace fixes
  • Loading branch information
Sam Hemelryk committed Dec 1, 2011
2 parents eb7ee15 + f25aee3 commit bba1338
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions lang/en/webservice.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
$string['externalservices'] = 'External services';
$string['externalserviceusers'] = 'External service users';
$string['failedtolog'] = 'Failed to log';
$string['filenameexist'] = 'File name already exists: {$a}';
$string['function'] = 'Function';
$string['functions'] = 'Functions';
$string['generalstructure'] = 'General structure';
Expand Down
18 changes: 17 additions & 1 deletion webservice/upload.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,14 @@
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Accpet uploading files by web service token
* Accept uploading files by web service token
*
* POST params:
* token => the web service user token (needed for authentication)
* filepath => the private file aera path (where files will be stored)
* [_FILES] => for example you can send the files with <input type=file>,
* or with curl magic: 'file_1' => '@/path/to/file', or ...
*
* @package moodlecore
* @subpackage files
* @copyright 2011 Dongsheng Cai <[email protected]>
Expand Down Expand Up @@ -117,6 +124,15 @@
$file_record->license = $CFG->sitedefaultlicense;
$file_record->author = fullname($authenticationinfo['user']);;
$file_record->source = '';

//Check if the file already exist
$existingfile = $fs->file_exists($file_record->contextid, $file_record->component, $file_record->filearea,
$file_record->itemid, $file_record->filepath, $file_record->filename);
if ($existingfile) {
//if allow automatic rename (avoid)
throw new moodle_exception('filenameexist', 'webservice', '', $file->filename);
}

$stored_file = $fs->create_file_from_pathname($file_record, $file->filepath);
$results[] = $file_record;
}
Expand Down

0 comments on commit bba1338

Please sign in to comment.