32 lines
1.4 KiB
PHP
32 lines
1.4 KiB
PHP
<?php
|
|
if (!class_exists('Onedrive')) require 'Onedrive.php';
|
|
|
|
class SharepointCN extends Onedrive {
|
|
|
|
function __construct($tag) {
|
|
$this->disktag = $tag;
|
|
$this->redirect_uri = 'https://scfonedrive.github.io';
|
|
if (getConfig('client_id', $tag) && getConfig('client_secret', $tag)) {
|
|
$this->client_id = getConfig('client_id', $tag);
|
|
$this->client_secret = getConfig('client_secret', $tag);
|
|
} else {
|
|
$this->client_id = '31f3bed5-b9d9-4173-86a4-72c73d278617';
|
|
$this->client_secret = 'P5-ZNtFK-tT90J.We_-DcsuB8uV7AfjL8Y';
|
|
}
|
|
$this->oauth_url = 'https://login.partner.microsoftonline.cn/common/oauth2/v2.0/';
|
|
$this->api_url = 'https://microsoftgraph.chinacloudapi.cn/v1.0';
|
|
$this->scope = 'https://microsoftgraph.chinacloudapi.cn/Files.ReadWrite.All https://microsoftgraph.chinacloudapi.cn/Sites.ReadWrite.All offline_access';
|
|
$res = $this->get_access_token(getConfig('refresh_token', $tag));
|
|
|
|
$this->client_secret = urlencode($this->client_secret);
|
|
$this->scope = urlencode($this->scope);
|
|
$this->DownurlStrName = '@microsoft.graph.downloadUrl';
|
|
$this->ext_api_url = '/sites/' . getConfig('siteid', $tag) . '/drive/root';
|
|
}
|
|
|
|
public function ext_show_innerenv()
|
|
{
|
|
return [ 'sharepointSite', 'siteid' ];
|
|
}
|
|
}
|