-
Notifications
You must be signed in to change notification settings - Fork 81
/
aliyun-oss.php
55 lines (42 loc) · 1.67 KB
/
aliyun-oss.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* Plugin Name: Aliyun OSS
* Description: 使用阿里云 OSS 作为附件的存储空间。 This is a plugin that used Aliyun OSS for attachments remote saving.
* Author: Ivan Chou
* Author URI: https://yii.im/
* Version: 3.4.2
* Updated_at: 2023-01-14
*/
/* Copyright 2016 Ivan Chou (email : yiichou@gmail.com)
This program 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 2 of the License, or
(at your option) any later version.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
define('ALIYUN_OSS_PATH', dirname(__FILE__));
define('ALIYUN_OSS_MATEDATA_URL', 'https://chou.oss-cn-hangzhou.aliyuncs.com/aliyun-oss/plugin.json');
require(ALIYUN_OSS_PATH . '/autoload.php');
use OSS\WP\Config;
Config::init(ALIYUN_OSS_PATH);
if (Config::$staticHost) {
new OSS\WP\UrlHelper();
}
function init() {
Config::initOssClient();
if (is_admin()) {
new OSS\WP\Setting();
}
if (Config::$ossClient) {
Config::$disableUpload || new OSS\WP\Upload(Config::$ossClient);
new OSS\WP\Delete(Config::$ossClient);
}
}
add_filter('admin_init', 'init');
add_filter('rest_api_init', 'init', 800);