Skip to content

Commit

Permalink
MDL-33513: Make files->source field consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
Dongsheng Cai committed Jun 10, 2012
1 parent fcbf68f commit 8a28897
Show file tree
Hide file tree
Showing 12 changed files with 150 additions and 32 deletions.
2 changes: 1 addition & 1 deletion lib/filelib.php
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,7 @@ function file_save_draft_area_files($draftitemid, $contextid, $component, $filea
$newhashes = array();
foreach ($draftfiles as $file) {
$newhash = $fs->get_pathname_hash($contextid, $component, $filearea, $itemid, $file->get_filepath(), $file->get_filename());
file_restore_source_field_from_draft_file($file);
$newhashes[$newhash] = $file;
}
$filecount = 0;
Expand All @@ -790,7 +791,6 @@ function file_save_draft_area_files($draftitemid, $contextid, $component, $filea
continue;
}

file_restore_source_field_from_draft_file($newfile);
// Replaced file content
if ($oldfile->get_contenthash() != $newfile->get_contenthash()) {
$oldfile->replace_content_with($newfile);
Expand Down
10 changes: 10 additions & 0 deletions repository/boxnet/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,16 @@ public function get_reference_details($reference) {
return $this->get_name() . ': ' . $reference;
}

/**
* Return the source information
*
* @param stdClass $url
* @return string|null
*/
public function get_file_source_info($url) {
return $url;
}

/**
* Repository method to serve file
*
Expand Down
10 changes: 10 additions & 0 deletions repository/dropbox/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,16 @@ public function get_reference_details($reference) {
return $this->get_name() . ': ' . $ref->path;
}

/**
* Return the source information
*
* @param stdClass $filepath
* @return string|null
*/
public function get_file_source_info($filepath) {
return 'Dropbox:' . $filepath;
}

/**
* Repository method to serve file
*
Expand Down
10 changes: 10 additions & 0 deletions repository/filesystem/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,16 @@ public function get_file($file, $title = '') {
return array('path'=>$file, 'url'=>'');
}

/**
* Return the source information
*
* @param stdClass $filepath
* @return string|null
*/
public function get_file_source_info($filepath) {
return $filepath;
}

public function logout() {
return true;
}
Expand Down
39 changes: 24 additions & 15 deletions repository/flickr/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,13 @@ public function get_listing($path = '', $page = '') {
return $this->search('', $page);
}

public function get_link($photo_id) {
global $CFG;
$result = $this->flickr->photos_getSizes($photo_id);
/**
* Return photo url by given photo id
* @param string $photoid
* @return string
*/
private function build_photo_url($photoid) {
$result = $this->flickr->photos_getSizes($photoid);
$url = '';
if(!empty($result[4])) {
$url = $result[4]['source'];
Expand All @@ -236,23 +240,18 @@ public function get_link($photo_id) {
return $url;
}

public function get_link($photoid) {
return $this->build_photo_url($photoid);
}

/**
*
* @param string $photo_id
* @param string $photoid
* @param string $file
* @return string
*/
public function get_file($photo_id, $file = '') {
global $CFG;
$result = $this->flickr->photos_getSizes($photo_id);
$url = '';
if(!empty($result[4])) {
$url = $result[4]['source'];
} elseif(!empty($result[3])) {
$url = $result[3]['source'];
} elseif(!empty($result[2])) {
$url = $result[2]['source'];
}
public function get_file($photoid, $file = '') {
$url = $this->build_photo_url($photoid);
$path = $this->prepare_file($file);
$fp = fopen($path, 'w');
$c = new curl;
Expand Down Expand Up @@ -315,4 +314,14 @@ public function supported_filetypes() {
public function supported_returntypes() {
return (FILE_INTERNAL | FILE_EXTERNAL);
}

/**
* Return the source information
*
* @param stdClass $url
* @return string|null
*/
public function get_file_source_info($photoid) {
return $this->build_photo_url($photoid);
}
}
32 changes: 25 additions & 7 deletions repository/flickr_public/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,13 @@ public function print_search() {
return $str;
}

public function get_link($photo_id) {
global $CFG;
$result = $this->flickr->photos_getSizes($photo_id);
/**
* Return photo url by given photo id
* @param string $photoid
* @return string
*/
private function build_photo_url($photoid) {
$result = $this->flickr->photos_getSizes($photoid);
$url = '';
if(!empty($result[4])) {
$url = $result[4]['source'];
Expand All @@ -410,23 +414,27 @@ public function get_link($photo_id) {
return $url;
}

public function get_link($photoid) {
return $this->build_photo_id($photoid);
}

/**
*
* @global object $CFG
* @param string $photo_id
* @param string $photoid
* @param string $file
* @return string
*/
public function get_file($photo_id, $file = '') {
public function get_file($photoid, $file = '') {
global $CFG;
$info = $this->flickr->photos_getInfo($photo_id);
$info = $this->flickr->photos_getInfo($photoid);
if ($info['owner']['realname']) {
$author = $info['owner']['realname'];
} else {
$author = $info['owner']['username'];
}
$copyright = get_string('author', 'repository') . ': ' . $author;
$result = $this->flickr->photos_getSizes($photo_id);
$result = $this->flickr->photos_getSizes($photoid);
// download link
$source = '';
// flickr photo page
Expand Down Expand Up @@ -517,4 +525,14 @@ public function supported_filetypes() {
public function supported_returntypes() {
return (FILE_INTERNAL | FILE_EXTERNAL);
}

/**
* Return the source information
*
* @param stdClass $url
* @return string|null
*/
public function get_file_source_info($photoid) {
return $this->build_photo_url($photoid);
}
}
29 changes: 29 additions & 0 deletions repository/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -1133,6 +1133,16 @@ public function get_file_by_reference($reference) {
return null;
}

/**
* Return the source information
*
* @param stdClass $url
* @return string|null
*/
public function get_file_source_info($url) {
return $url;
}

/**
* Move file from download folder to file pool using FILE API
*
Expand Down Expand Up @@ -2190,6 +2200,25 @@ public static function sync_external_file(stored_file $file) {

return true;
}

/**
* Build draft file's source field
*
* {@link file_restore_source_field_from_draft_file()}
* XXX: This is a hack for file manager (MDL-28666)
* For newly created draft files we have to construct
* source filed in php serialized data format.
* File manager needs to know the original file information before copying
* to draft area, so we append these information in mdl_files.source field
*
* @param string $sourcefield
* @param string
*/
public static function build_source_field($source) {
$sourcefield = new stdClass;
$sourcefield->source = $source;
return serialize($sourcefield);
}
}

/**
Expand Down
16 changes: 8 additions & 8 deletions repository/repository_ajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,11 @@
$event['existingfile']->filename = $saveas_filename;
$event['existingfile']->url = moodle_url::make_draftfile_url($itemid, $saveas_path, $saveas_filename)->out();;
} else {

// {@link repository::build_source_field()}
$sourcefield = $repo->get_file_source_info($source);
$record->source = $repo::build_source_field($sourcefield);

$storedfile = $fs->create_file_from_reference($record, $repo_id, $reference);
$event = array(
'url'=>moodle_url::make_draftfile_url($storedfile->get_itemid(), $storedfile->get_filepath(), $storedfile->get_filename())->out(),
Expand Down Expand Up @@ -292,14 +297,9 @@
throw new file_exception('maxbytes');
}

// {@link file_restore_source_field_from_draft_file()}
$sourcefield = '';
if (!empty($downloadedfile['url'])) {
$source = new stdClass;
$source->source = $downloadedfile['url'];
$sourcefield = serialize($source);
}
$record->source = $sourcefield;
// {@link repository::build_source_field()}
$sourcefield = $repo->get_file_source_info($source);
$record->source = $repo::build_source_field($sourcefield);

$info = repository::move_to_filepool($downloadedfile['path'], $record);
if (empty($info)) {
Expand Down
10 changes: 10 additions & 0 deletions repository/s3/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,16 @@ public function get_file($filepath, $file = '') {
return array('path'=>$path);
}

/**
* Return the source information
*
* @param stdClass $url
* @return string|null
*/
public function get_file_source_info($filepath) {
return 's3:' . $filepath;
}

/**
* S3 doesn't require login
*
Expand Down
4 changes: 3 additions & 1 deletion repository/upload/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ public function process_upload($saveas_filename, $maxbytes, $types = '*', $savep
self::antivir_scan_file($_FILES[$elname]['tmp_name'], $_FILES[$elname]['name'], true);
@chmod($_FILES[$elname]['tmp_name'], $permissions);

// {@link repository::build_source_field()}
$record->source = self::build_source_field($_FILES[$elname]['name']);

if (empty($saveas_filename)) {
$record->filename = clean_param($_FILES[$elname]['name'], PARAM_FILE);
} else {
Expand Down Expand Up @@ -186,7 +189,6 @@ public function process_upload($saveas_filename, $maxbytes, $types = '*', $savep
}
$record->contextid = $context->id;
$record->userid = $USER->id;
$record->source = '';

if (repository::draftfile_exists($record->itemid, $record->filepath, $record->filename)) {
$existingfilename = $record->filename;
Expand Down
10 changes: 10 additions & 0 deletions repository/url/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,5 +217,15 @@ public function guess_filename($url, $type) {
public function supported_returntypes() {
return (FILE_INTERNAL | FILE_EXTERNAL);
}

/**
* Return the source information
*
* @param stdClass $url
* @return string|null
*/
public function get_file_source_info($url) {
return $url;
}
}

10 changes: 10 additions & 0 deletions repository/wikimedia/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,14 @@ public function logout() {
public function supported_returntypes() {
return (FILE_INTERNAL | FILE_EXTERNAL);
}

/**
* Return the source information
*
* @param stdClass $url
* @return string|null
*/
public function get_file_source_info($url) {
return $url;
}
}

0 comments on commit 8a28897

Please sign in to comment.