diff options
author | Joas Schilling <coding@schilljs.com> | 2019-09-20 11:33:02 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-09-27 14:29:56 +0200 |
commit | 653628c8fb69dc3f9d26751520f91e43a18f17ae (patch) | |
tree | ef2dfb5f01bc19e09386364895ec9c8620ec3257 /lib/private/Group/Database.php | |
parent | 45506adc5c2a34a8c812a2a3c9273a8447b450af (diff) | |
download | nextcloud-server-653628c8fb69dc3f9d26751520f91e43a18f17ae.tar.gz nextcloud-server-653628c8fb69dc3f9d26751520f91e43a18f17ae.zip |
Allow to set the group display name in the database backend
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Group/Database.php')
-rw-r--r-- | lib/private/Group/Database.php | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/lib/private/Group/Database.php b/lib/private/Group/Database.php index 5e39398c60d..4aab8b8eaec 100644 --- a/lib/private/Group/Database.php +++ b/lib/private/Group/Database.php @@ -52,6 +52,7 @@ use OCP\Group\Backend\IDeleteGroupBackend; use OCP\Group\Backend\IGetDisplayNameBackend; use OCP\Group\Backend\IGroupDetailsBackend; use OCP\Group\Backend\IRemoveFromGroupBackend; +use OCP\Group\Backend\ISetDisplayNameBackend; use OCP\IDBConnection; /** @@ -65,7 +66,8 @@ class Database extends ABackend IDeleteGroupBackend, IGetDisplayNameBackend, IGroupDetailsBackend, - IRemoveFromGroupBackend { + IRemoveFromGroupBackend, + ISetDisplayNameBackend { /** @var string[] */ private $groupCache = []; @@ -450,4 +452,24 @@ class Database extends ABackend return []; } + /** + * @param string $gid + * @param string $displayName + * @return bool + * @since 18.0.0 + */ + public function setDisplayName(string $gid, string $displayName): bool { + if (!$this->groupExists($gid)) { + return false; + } + + $query = $this->dbConn->getQueryBuilder(); + $query->update('groups') + ->set('displayname', $query->createNamedParameter($displayName)) + ->where($query->expr()->eq('gid', $query->createNamedParameter($gid))); + $query->execute(); + + return true; + } + } |