karadav/lib/KaraDAV/Server.php

49 lines
1 KiB
PHP
Raw Normal View History

2022-08-30 05:01:39 +00:00
<?php
namespace KaraDAV;
class Server
2022-08-30 05:01:39 +00:00
{
public Users $users;
public WebDAV $dav;
2022-08-30 05:01:39 +00:00
2022-08-31 06:06:27 +00:00
public function __construct()
{
2022-09-29 23:39:24 +00:00
$users = new Users;
2022-08-31 06:06:27 +00:00
$this->users = new Users;
$this->dav = new WebDAV;
$this->dav->setStorage(new Storage($this->users));
2022-08-31 06:06:27 +00:00
}
2022-08-30 05:01:39 +00:00
public function route(?string $uri = null): bool
{
$nc = new NextCloud($this->dav, $this->users);
2022-08-30 05:01:39 +00:00
2022-09-29 23:39:24 +00:00
if ($r = $nc->route($uri)) {
// NextCloud route already replied something, stop here
return true;
2022-08-30 05:01:39 +00:00
}
// If NextCloud layer didn't return anything
// it means we fall back to the default WebDAV server
// available on the root path. We need to handle a
// classic login/password auth here.
2022-08-30 05:01:39 +00:00
if (0 !== strpos($uri, '/files/')) {
return false;
2022-08-30 05:01:39 +00:00
}
$user = $this->users->login($_SERVER['PHP_AUTH_USER'] ?? null, $_SERVER['PHP_AUTH_PW'] ?? null);
2022-08-30 05:01:39 +00:00
if (!$user) {
http_response_code(401);
header('WWW-Authenticate: Basic realm="Please login"');
return true;
2022-08-31 07:57:49 +00:00
}
2022-08-31 06:06:27 +00:00
$this->dav->setBaseURI('/files/' . $user->login . '/');
return $this->dav->route($uri);
2022-08-31 06:06:27 +00:00
}
2022-08-30 05:01:39 +00:00
}