aboutsummaryrefslogtreecommitdiffhomepage
path: root/Digitigrade/Model
diff options
context:
space:
mode:
authorwinter2024-12-14 21:24:48 +0000
committerwinter2024-12-14 21:45:59 +0000
commit2f4c1de3509141880df019ef1a6cc65981b3f6ea (patch)
tree0021f3a860d6c80869d4af5d366393f1d0eea288 /Digitigrade/Model
parent0c6497ff02b8118bcefee37cc6fe0cbc02df4bb4 (diff)
implement outbound auth? untested
untested because i don't have another instance to test it against ....
Diffstat (limited to 'Digitigrade/Model')
-rw-r--r--Digitigrade/Model/FetchableModel.php8
-rw-r--r--Digitigrade/Model/Instance.php69
-rw-r--r--Digitigrade/Model/InstanceAuth.php21
3 files changed, 93 insertions, 5 deletions
diff --git a/Digitigrade/Model/FetchableModel.php b/Digitigrade/Model/FetchableModel.php
index 0b67599..e091a87 100644
--- a/Digitigrade/Model/FetchableModel.php
+++ b/Digitigrade/Model/FetchableModel.php
@@ -58,16 +58,20 @@ abstract class FetchableModel extends Model implements RemoteFetchable {
}
}
- $obj->beforeSave($uri);
+ $obj->finaliseAfterFetch($uri);
if ($autoSave) {
$obj->save();
+ $obj->finaliseAfterSave();
}
return $obj;
}
- protected function beforeSave(string $uri) {
+ protected function finaliseAfterFetch(string $uri) {
+ }
+
+ protected function finaliseAfterSave() {
}
public static function findByUri(string $uri, bool $autoSave = true, bool $forceRefetch = false): ?static {
diff --git a/Digitigrade/Model/Instance.php b/Digitigrade/Model/Instance.php
index de3ff9d..5f33e6d 100644
--- a/Digitigrade/Model/Instance.php
+++ b/Digitigrade/Model/Instance.php
@@ -1,7 +1,7 @@
<?php
namespace Digitigrade\Model;
-use Digitigrade\Model;
+use Digitigrade\Job\RefreshOutboundAuthToken;
class Instance extends FetchableModel {
public ?int $id;
@@ -15,6 +15,7 @@ class Instance extends FetchableModel {
public ?string $softwareHomepage;
public InstanceEndpoints $endpoints;
+ public InstanceAuth $auth;
protected function getUpdateWhereClause(\PDO $db): ?string {
if (self::findWhere('domain = ?', [$this->domain]) != null)
@@ -28,14 +29,25 @@ class Instance extends FetchableModel {
return self::findByUri("https://$domain/.well-known/pawpub-instance", $autoSave, $forceRefetch);
}
- public function hydrate() {
+ protected function hydrate() {
$this->endpoints = InstanceEndpoints::findWhere('instance_id = ?', [$this->id]);
+ $auth = InstanceAuth::findWhere('instance_id = ?', [$this->id]);
+ if ($auth == null) {
+ $auth = new InstanceAuth();
+ $auth->setOwnerId($this->id);
+ }
+ $this->auth = $auth;
}
- protected function beforeSave(string $uri) {
+ protected function finaliseAfterFetch(string $uri) {
$this->domain = explode('/', $uri)[2];
}
+ protected function finaliseAfterSave() {
+ // this has to be done after saving because we didn't have an id before
+ $this->auth = InstanceAuth::findWhere('instance_id = ?', [$this->id]) ?? new InstanceAuth();
+ }
+
public static function findByUri(string $uri, bool $autoSave = true, bool $forceRefetch = false): ?static {
if (!$forceRefetch) {
$domain = explode('/', $uri)[2];
@@ -45,4 +57,55 @@ class Instance extends FetchableModel {
}
return self::fetchFromRemote($uri, $autoSave);
}
+
+ public function beginOutboundAuth() {
+ $authEndpoint = $this->endpoints->auth;
+ if (!isset($authEndpoint)) {
+ throw new \RuntimeException("can't authenticate with $this->domain because it doesn't have an auth endpoint");
+ }
+ file_get_contents($authEndpoint . '?phase=dialback&target=' . urlencode(path_to_uri('/auth/dialback')));
+ }
+
+ public function requestOutboundAuthToken(string $secret) {
+ $authEndpoint = $this->endpoints->auth;
+ if (!isset($authEndpoint)) {
+ throw new \RuntimeException("can't authenticate with $this->domain because it doesn't have an auth endpoint");
+ }
+ $response = file_get_contents($authEndpoint . '?phase=token&secret=' . urlencode($secret));
+ if ($response === false) {
+ throw new \RuntimeException("requesting a token from $this->domain failed");
+ }
+ $data = json_decode($response);
+ if ($data === false || !isset($data->token, $data->expires)) {
+ throw new \RuntimeException("$this->domain sent bogus json in response to token request");
+ }
+
+ $this->auth->outboundToken = $data->token;
+ $this->save();
+
+ (new RefreshOutboundAuthToken($this->domain, new \DateTimeImmutable($data->expires)))->submit();
+ }
+
+ public function refreshOutboundAuthToken() {
+ $authEndpoint = $this->endpoints->auth;
+ if (!isset($authEndpoint)) {
+ throw new \RuntimeException("can't authenticate with $this->domain because it doesn't have an auth endpoint");
+ }
+ if (!isset($this->auth->outboundToken)) {
+ throw new \RuntimeException("can't refresh outbound token for $this->domain because i don't already have one");
+ }
+ $response = file_get_contents($authEndpoint . '?phase=refresh&token=' . urlencode($this->auth->outboundToken));
+ if ($response === false) {
+ throw new \RuntimeException("requesting a new token from $this->domain failed");
+ }
+ $data = json_decode($response);
+ if ($data === false || !isset($data->token, $data->expires)) {
+ throw new \RuntimeException("$this->domain sent bogus json in response to token refresh request");
+ }
+
+ $this->auth->outboundToken = $data->token;
+ $this->save();
+
+ (new RefreshOutboundAuthToken($this->domain, new \DateTimeImmutable($data->expires)))->submit();
+ }
} \ No newline at end of file
diff --git a/Digitigrade/Model/InstanceAuth.php b/Digitigrade/Model/InstanceAuth.php
new file mode 100644
index 0000000..616d4c5
--- /dev/null
+++ b/Digitigrade/Model/InstanceAuth.php
@@ -0,0 +1,21 @@
+<?php
+namespace Digitigrade\Model;
+
+use Digitigrade\Model;
+
+class InstanceAuth extends Model {
+ public ?int $instanceId;
+ public ?string $outboundToken;
+ public ?string $inboundToken;
+
+ protected function setOwnerId(int $id) {
+ $this->instanceId = $id;
+ }
+
+ protected function getUpdateWhereClause($db): ?string {
+ if (self::findWhere('instance_id = ?', [$this->instanceId]) != null) {
+ return "instance_id = $this->instanceId";
+ }
+ return null;
+ }
+} \ No newline at end of file