Page MenuHomePhabricator

D11378.id27332.diff
No OneTemporary

D11378.id27332.diff

diff --git a/src/applications/oauthserver/storage/PhabricatorOAuthServerClient.php b/src/applications/oauthserver/storage/PhabricatorOAuthServerClient.php
--- a/src/applications/oauthserver/storage/PhabricatorOAuthServerClient.php
+++ b/src/applications/oauthserver/storage/PhabricatorOAuthServerClient.php
@@ -2,7 +2,9 @@
final class PhabricatorOAuthServerClient
extends PhabricatorOAuthServerDAO
- implements PhabricatorPolicyInterface {
+ implements
+ PhabricatorPolicyInterface,
+ PhabricatorDestructibleInterface {
protected $secret;
protected $name;
@@ -89,4 +91,21 @@
return null;
}
+/* -( PhabricatorDestructibleInterface )----------------------------------- */
+
+ public function destroyObjectPermanently(
+ PhabricatorDestructionEngine $engine) {
+
+ $this->openTransaction();
+ $this->delete();
+
+ $authorizations = id(new PhabricatorOAuthClientAuthorization())
+ ->loadAllWhere('clientPHID = %s', $this->getPHID());
+ foreach ($authorizations as $authorization) {
+ $authorization->delete();
+ }
+
+ $this->saveTransaction();
+
+ }
}

File Metadata

Mime Type
text/plain
Expires
Tue, Mar 25, 1:39 PM (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7717148
Default Alt Text
D11378.id27332.diff (1 KB)

Event Timeline