Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
252e6f68
Commit
252e6f68
authored
9 years ago
by
Mark Haines
Browse files
Options
Downloads
Plain Diff
Merge pull request #130 from matrix-org/server_rename_check
Fix for SYN-266
parents
0bc71103
8a5be236
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/app/homeserver.py
+18
-1
18 additions, 1 deletion
synapse/app/homeserver.py
synapse/storage/__init__.py
+10
-0
10 additions, 0 deletions
synapse/storage/__init__.py
with
28 additions
and
1 deletion
synapse/app/homeserver.py
+
18
−
1
View file @
252e6f68
...
...
@@ -18,7 +18,8 @@ import sys
sys
.
dont_write_bytecode
=
True
from
synapse.storage
import
(
prepare_database
,
prepare_sqlite3_database
,
UpgradeDatabaseException
,
prepare_database
,
prepare_sqlite3_database
,
are_all_users_on_domain
,
UpgradeDatabaseException
,
)
from
synapse.server
import
HomeServer
...
...
@@ -241,6 +242,21 @@ class SynapseHomeServer(HomeServer):
)
logger
.
info
(
"
Metrics now running on 127.0.0.1 port %d
"
,
config
.
metrics_port
)
def
run_startup_checks
(
self
,
db_conn
):
all_users_native
=
are_all_users_on_domain
(
db_conn
,
self
.
hostname
)
if
not
all_users_native
:
sys
.
stderr
.
write
(
"
\n
"
"
******************************************************
\n
"
"
Found users in database not native to %s!
\n
"
"
You cannot changed a synapse server_name after it
'
s been configured
\n
"
"
******************************************************
\n
"
"
\n
"
%
(
self
.
hostname
,)
)
sys
.
exit
(
1
)
def
get_version_string
():
try
:
...
...
@@ -375,6 +391,7 @@ def setup(config_options):
with
sqlite3
.
connect
(
db_name
)
as
db_conn
:
prepare_sqlite3_database
(
db_conn
)
prepare_database
(
db_conn
)
hs
.
run_startup_checks
(
db_conn
)
except
UpgradeDatabaseException
:
sys
.
stderr
.
write
(
"
\n
Failed to upgrade database.
\n
"
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/__init__.py
+
10
−
0
View file @
252e6f68
...
...
@@ -421,3 +421,13 @@ def prepare_sqlite3_database(db_conn):
"
VALUES (?,?)
"
,
(
row
[
0
],
False
)
)
def
are_all_users_on_domain
(
txn
,
domain
):
sql
=
"
SELECT COUNT(*) FROM users WHERE name NOT LIKE ?
"
pat
=
"
%:
"
+
domain
cursor
=
txn
.
execute
(
sql
,
(
pat
,))
num_not_matching
=
cursor
.
fetchall
()[
0
][
0
]
if
num_not_matching
==
0
:
return
True
return
False
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment