This repository was archived by the owner on Feb 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathWebdavServiceProvider.php
79 lines (67 loc) · 1.92 KB
/
WebdavServiceProvider.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php namespace PanaKour\Backup;
//use Storage;
//use League\Flysystem\Filesystem;
//use Spatie\Dropbox\Client as DropboxClient;
//use Illuminate\Support\ServiceProvider;
//use Spatie\FlysystemDropbox\DropboxAdapter;
use Storage;
use Sabre\DAV\Client;
use Sabre\DAV\Exception\NotFound;
use League\Flysystem\Filesystem;
use League\Flysystem\WebDAV\WebDAVAdapter;
use Illuminate\Support\ServiceProvider;
class WebDAVAdapterExt extends WebDAVAdapter {
public $fsConfig;
public function __construct($client, $fsConfig)
{
$this->fsConfig = $fsConfig;
parent::__construct($client);
}
public function getUrl($path)
{
if (!empty($this->fsConfig['path_alias'])) {
// with this feature you can use symlink to folder
return $this->fsConfig['baseUri'] . $this->fsConfig['path_alias'] . $path;
} else {
return $this->fsConfig['baseUri'] . $this->fsConfig['path_prefix'] . $path;
}
}
public function deleteDir($dirname)
{
$location = $this->applyPathPrefix($this->encodePath($dirname));
try {
$this->client->request('DELETE', $location . '/');
return true;
} catch (NotFound $e) {
return false;
}
}
}
class WebdavServiceProvider extends ServiceProvider
{
/**
* Perform post-registration booting of services.
*
* @return void
*/
public function boot()
{
Storage::extend('webdav', function ($app, $config) {
$client = new Client($config);
$adapter = new WebDAVAdapterExt($client, $config);
if (!empty($config['path_prefix'])) {
$adapter->setPathPrefix($config['path_prefix']);
}
return new Filesystem($adapter);
});
}
/**
* Register bindings in the container.
*
* @return void
*/
public function register()
{
//
}
}