-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
132 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<?php | ||
// This file is part of Moodle - http://moodle.org/ | ||
// | ||
// Moodle is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Moodle is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
namespace tool_s3logs; | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
require_once($CFG->dirroot . '/lib/adminlib.php'); | ||
|
||
/** | ||
* Admin setting for a list of AWS regions. | ||
* | ||
* @package tool_s3logs | ||
* @copyright 2020 Catalyst IT | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
class admin_settings_aws_region extends \admin_setting_configtext { | ||
|
||
/** | ||
* Return part of form with setting. | ||
* | ||
* @param mixed $data array or string depending on setting | ||
* @param string $query | ||
* @return string | ||
*/ | ||
public function output_html($data, $query='') { | ||
global $CFG, $OUTPUT; | ||
|
||
$default = $this->get_defaultsetting(); | ||
$options = []; | ||
// We do require() not require_once() here, as the file returns a value and we may need to get | ||
// this value more than once. | ||
$all = require($CFG->dirroot . '/lib/aws-sdk/src/data/endpoints.json.php'); | ||
$ends = $all['partitions'][0]['regions']; | ||
if ($ends) { | ||
foreach ($ends as $key => $value) { | ||
$options[] = [ | ||
'value' => $key, | ||
'label' => $key . ' - ' . $value['description'], | ||
]; | ||
} | ||
} | ||
|
||
$context = [ | ||
'list' => $this->get_full_name(), | ||
'name' => $this->get_full_name(), | ||
'id' => $this->get_id(), | ||
'value' => $data, | ||
'size' => $this->size, | ||
'options' => $options, | ||
]; | ||
$element = $OUTPUT->render_from_template('tool_s3logs/setting_aws_region', $context); | ||
return format_admin_setting($this, $this->visiblename, $element, $this->description, true, '', $default, $query); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,20 +14,9 @@ | |
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* S3 Client helper class. | ||
* | ||
* @package tool_s3logs | ||
* @copyright 2017 Matt Porritt <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
namespace tool_s3logs\local\client; | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
require_once($CFG->dirroot . '/local/aws/sdk/aws-autoloader.php'); | ||
|
||
use Aws\S3\S3Client; | ||
|
||
/** | ||
|
@@ -103,7 +92,7 @@ private function set_client() { | |
$settings['credentials'] = ['key' => $this->config->keyid, 'secret' => $this->config->secretkey]; | ||
} | ||
|
||
$this->client = S3Client::factory($settings); | ||
$this->client = new S3Client($settings); | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{{! | ||
This file is part of Moodle - http://moodle.org/ | ||
Moodle is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Moodle is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
}} | ||
{{! | ||
@template tool_s3logs/setting_aws_region | ||
Admin aws region setting template. | ||
Context variables required for this template: | ||
* list - form list name | ||
* name - form element name | ||
* id - element id | ||
* value - element value | ||
* size - element size | ||
* options - list of data list options: label, value. | ||
Example context (json): | ||
{ | ||
"list": "test", | ||
"name": "test", | ||
"id": "test0", | ||
"value": "A tall, dark stranger will have more fun than you.", | ||
"size": "21", | ||
"options": [ { "label": "eu-north-1 - Europe (Stockholm)", "value": "eu-north-1" } ] | ||
} | ||
}} | ||
{{! | ||
Setting config aws region | ||
}} | ||
<div class="form-text defaultsnext"> | ||
<input type="text" list="{{list}}" name="{{name}}" value="{{value}}" size="{{size}}" id="{{id}}" class="form-control text-ltr" {{#readonly}}disabled{{/readonly}}> | ||
<datalist id="{{list}}"> | ||
{{#options}} | ||
<option value="{{value}}" label="{{label}}"></option> | ||
{{/options}} | ||
</datalist> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters