diff options
author | Matthew Hodgson <matthew@arasphere.net> | 2018-05-03 18:19:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-03 18:19:48 +0100 |
commit | ad0424bab0f67a31146373089c67389c0be68475 (patch) | |
tree | 42f36a3ac2377316fb74f6e542e4c0d077ac1b3b /synapse/handlers/profile.py | |
parent | Merge pull request #3185 from matrix-org/dbkr/change_profile_replication_uri (diff) | |
parent | fix defaults in example config (diff) | |
download | synapse-ad0424bab0f67a31146373089c67389c0be68475.tar.xz |
Merge pull request #3179 from matrix-org/matthew/disable-set-profile
options to disable setting profile info
Diffstat (limited to 'synapse/handlers/profile.py')
-rw-r--r-- | synapse/handlers/profile.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/synapse/handlers/profile.py b/synapse/handlers/profile.py index 195684c88c..29ccf23849 100644 --- a/synapse/handlers/profile.py +++ b/synapse/handlers/profile.py @@ -215,6 +215,11 @@ class ProfileHandler(BaseHandler): if not by_admin and target_user != requester.user: raise AuthError(400, "Cannot set another user's displayname") + if not by_admin and self.hs.config.disable_set_displayname: + profile = yield self.store.get_profileinfo(target_user.localpart) + if profile.display_name: + raise SynapseError(400, "Changing displayname is disabled on this server") + if new_displayname == '': new_displayname = None @@ -277,6 +282,11 @@ class ProfileHandler(BaseHandler): if not by_admin and target_user != requester.user: raise AuthError(400, "Cannot set another user's avatar_url") + if not by_admin and self.hs.config.disable_set_avatar_url: + profile = yield self.store.get_profileinfo(target_user.localpart) + if profile.avatar_url: + raise SynapseError(400, "Changing avatar url is disabled on this server") + if len(self.hs.config.replicate_user_profiles_to) > 0: cur_batchnum = yield self.store.get_latest_profile_replication_batch_number() new_batchnum = 0 if cur_batchnum is None else cur_batchnum + 1 |