Skip to content

Commit

Permalink
MDL-36456 repository: S3 handles errors in a nicer way
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederic Massart committed Dec 14, 2012
1 parent 4bd6f71 commit 1fefd1f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
1 change: 1 addition & 0 deletions lang/en/repository.php
Expand Up @@ -100,6 +100,7 @@
$string['errornotyourfile'] = 'You cannot pick file which is not added by your';
$string['erroruniquename'] = 'Repository instance name should be unique';
$string['errorpostmaxsize'] = 'The uploaded file may exceed max_post_size directive in php.ini.';
$string['errorwhilecommunicatingwith'] = 'Error while communicating with the repository \'{$a}\'.';
$string['errorwhiledownload'] = 'An error occured while downloading the file: {$a}';
$string['existingrepository'] = 'This repository already exists';
$string['federatedsearch'] = 'Federated search';
Expand Down
21 changes: 17 additions & 4 deletions repository/s3/lib.php
Expand Up @@ -47,6 +47,7 @@ public function __construct($repositoryid, $context = SYSCONTEXTID, $options = a
$this->access_key = get_config('s3', 'access_key');
$this->secret_key = get_config('s3', 'secret_key');
$this->s = new S3($this->access_key, $this->secret_key);
$this->s->setExceptions(true);
}

/**
Expand Down Expand Up @@ -75,7 +76,7 @@ protected function explode_path($path) {
public function get_listing($path = '', $page = '') {
global $CFG, $OUTPUT;
if (empty($this->access_key)) {
die(json_encode(array('e'=>get_string('needaccesskey', 'repository_s3'))));
throw new moodle_exception('needaccesskey', 'repository_s3');
}

$list = array();
Expand All @@ -97,7 +98,11 @@ public function get_listing($path = '', $page = '') {
$tree = array();

if (empty($path)) {
$buckets = $this->s->listBuckets();
try {
$buckets = $this->s->listBuckets();
} catch (S3Exception $e) {
throw new moodle_exception('errorwhilecommunicatingwith', 'repository', '', $this->get_name());
}
foreach ($buckets as $bucket) {
$folder = array(
'title' => $bucket,
Expand All @@ -112,7 +117,11 @@ public function get_listing($path = '', $page = '') {
$folders = array();
list($bucket, $uri) = $this->explode_path($path);

$contents = $this->s->getBucket($bucket, $uri, null, null, '/', true);
try {
$contents = $this->s->getBucket($bucket, $uri, null, null, '/', true);
} catch (S3Exception $e) {
throw new moodle_exception('errorwhilecommunicatingwith', 'repository', '', $this->get_name());
}
foreach ($contents as $object) {

// If object has a prefix, it is a 'CommonPrefix', which we consider a folder
Expand Down Expand Up @@ -183,7 +192,11 @@ public function get_listing($path = '', $page = '') {
public function get_file($filepath, $file = '') {
list($bucket, $uri) = $this->explode_path($filepath);
$path = $this->prepare_file($file);
$this->s->getObject($bucket, $uri, $path);
try {
$this->s->getObject($bucket, $uri, $path);
} catch (S3Exception $e) {
throw new moodle_exception('errorwhilecommunicatingwith', 'repository', '', $this->get_name());
}
return array('path' => $path);
}

Expand Down

0 comments on commit 1fefd1f

Please sign in to comment.