Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
05f1a459
Commit
05f1a459
authored
8 years ago
by
Mark Haines
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into develop
parents
13517e29
774f3a69
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/app/synctl.py
+151
-27
151 additions, 27 deletions
synapse/app/synctl.py
synapse/config/captcha.py
+1
-0
1 addition, 0 deletions
synapse/config/captcha.py
with
152 additions
and
27 deletions
synapse/app/synctl.py
+
151
−
27
View file @
05f1a459
...
...
@@ -14,11 +14,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
sys
import
argparse
import
collections
import
glob
import
os
import
os.path
import
subprocess
import
signal
import
subprocess
import
sys
import
yaml
SYNAPSE
=
[
"
python
"
,
"
-B
"
,
"
-m
"
,
"
synapse.app.homeserver
"
]
...
...
@@ -28,60 +31,181 @@ RED = "\x1b[1;31m"
NORMAL
=
"
\x1b
[m
"
def
write
(
message
,
colour
=
NORMAL
,
stream
=
sys
.
stdout
):
if
colour
==
NORMAL
:
stream
.
write
(
message
+
"
\n
"
)
else
:
stream
.
write
(
colour
+
message
+
NORMAL
+
"
\n
"
)
def
start
(
configfile
):
p
ri
nt
(
"
Starting ...
"
)
w
ri
te
(
"
Starting ...
"
)
args
=
SYNAPSE
args
.
extend
([
"
--daemonize
"
,
"
-c
"
,
configfile
])
try
:
subprocess
.
check_call
(
args
)
print
(
GREEN
+
"
started
"
+
NORMAL
)
write
(
"
started synapse.app.homeserver(%r)
"
%
(
configfile
,),
colour
=
GREEN
)
except
subprocess
.
CalledProcessError
as
e
:
write
(
"
error starting (exit code: %d); see above for logs
"
%
e
.
returncode
,
colour
=
RED
,
)
def
start_worker
(
app
,
configfile
,
worker_configfile
):
args
=
[
"
python
"
,
"
-B
"
,
"
-m
"
,
app
,
"
-c
"
,
configfile
,
"
-c
"
,
worker_configfile
]
try
:
subprocess
.
check_call
(
args
)
write
(
"
started %s(%r)
"
%
(
app
,
worker_configfile
),
colour
=
GREEN
)
except
subprocess
.
CalledProcessError
as
e
:
print
(
RED
+
"
error starting (exit code: %d); see above for logs
"
%
e
.
returncode
+
NORMAL
write
(
"
error starting %s(%r) (exit code: %d); see above for logs
"
%
(
app
,
worker_configfile
,
e
.
returncode
,
),
colour
=
RED
,
)
def
stop
(
pidfile
):
def
stop
(
pidfile
,
app
):
if
os
.
path
.
exists
(
pidfile
):
pid
=
int
(
open
(
pidfile
).
read
())
os
.
kill
(
pid
,
signal
.
SIGTERM
)
print
(
GREEN
+
"
stopped
"
+
NORMAL
)
write
(
"
stopped %s
"
%
(
app
,),
colour
=
GREEN
)
Worker
=
collections
.
namedtuple
(
"
Worker
"
,
[
"
app
"
,
"
configfile
"
,
"
pidfile
"
,
"
cache_factor
"
])
def
main
():
configfile
=
sys
.
argv
[
2
]
if
len
(
sys
.
argv
)
==
3
else
"
homeserver.yaml
"
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
"
action
"
,
choices
=
[
"
start
"
,
"
stop
"
,
"
restart
"
],
help
=
"
whether to start, stop or restart the synapse
"
,
)
parser
.
add_argument
(
"
configfile
"
,
nargs
=
"
?
"
,
default
=
"
homeserver.yaml
"
,
help
=
"
the homeserver config file, defaults to homserver.yaml
"
,
)
parser
.
add_argument
(
"
-w
"
,
"
--worker
"
,
metavar
=
"
WORKERCONFIG
"
,
help
=
"
start or stop a single worker
"
,
)
parser
.
add_argument
(
"
-a
"
,
"
--all-processes
"
,
metavar
=
"
WORKERCONFIGDIR
"
,
help
=
"
start or stop all the workers in the given directory
"
"
and the main synapse process
"
,
)
options
=
parser
.
parse_args
()
if
options
.
worker
and
options
.
all_processes
:
write
(
'
Cannot use
"
--worker
"
with
"
--all-processes
"'
,
stream
=
sys
.
stderr
)
sys
.
exit
(
1
)
configfile
=
options
.
configfile
if
not
os
.
path
.
exists
(
configfile
):
sys
.
stderr
.
write
(
write
(
"
No config file found
\n
"
"
To generate a config file, run
'
%s -c %s --generate-config
"
"
--server-name=<server name>
'
\n
"
%
(
"
"
.
join
(
SYNAPSE
),
configfile
)
"
"
.
join
(
SYNAPSE
),
options
.
configfile
),
stream
=
sys
.
stderr
,
)
sys
.
exit
(
1
)
config
=
yaml
.
load
(
open
(
configfile
))
with
open
(
configfile
)
as
stream
:
config
=
yaml
.
load
(
stream
)
pidfile
=
config
[
"
pid_file
"
]
cache_factor
=
config
.
get
(
"
synctl_cache_factor
"
,
None
)
cache_factor
=
config
.
get
(
"
synctl_cache_factor
"
)
start_stop_synapse
=
True
if
cache_factor
:
os
.
environ
[
"
SYNAPSE_CACHE_FACTOR
"
]
=
str
(
cache_factor
)
action
=
sys
.
argv
[
1
]
if
sys
.
argv
[
1
:]
else
"
usage
"
if
action
==
"
start
"
:
start
(
configfile
)
elif
action
==
"
stop
"
:
stop
(
pidfile
)
elif
action
==
"
restart
"
:
stop
(
pidfile
)
start
(
configfile
)
else
:
sys
.
stderr
.
write
(
"
Usage: %s [start|stop|restart] [configfile]
\n
"
%
(
sys
.
argv
[
0
],))
sys
.
exit
(
1
)
worker_configfiles
=
[]
if
options
.
worker
:
start_stop_synapse
=
False
worker_configfile
=
options
.
worker
if
not
os
.
path
.
exists
(
worker_configfile
):
write
(
"
No worker config found at %r
"
%
(
worker_configfile
,),
stream
=
sys
.
stderr
,
)
sys
.
exit
(
1
)
worker_configfiles
.
append
(
worker_configfile
)
if
options
.
all_processes
:
worker_configdir
=
options
.
all_processes
if
not
os
.
path
.
isdir
(
worker_configdir
):
write
(
"
No worker config directory found at %r
"
%
(
worker_configdir
,),
stream
=
sys
.
stderr
,
)
sys
.
exit
(
1
)
worker_configfiles
.
extend
(
sorted
(
glob
.
glob
(
os
.
path
.
join
(
worker_configdir
,
"
*.yaml
"
)
)))
workers
=
[]
for
worker_configfile
in
worker_configfiles
:
with
open
(
worker_configfile
)
as
stream
:
worker_config
=
yaml
.
load
(
stream
)
worker_app
=
worker_config
[
"
worker_app
"
]
worker_pidfile
=
worker_config
[
"
worker_pid_file
"
]
worker_daemonize
=
worker_config
[
"
worker_daemonize
"
]
assert
worker_daemonize
# TODO print something more user friendly
worker_cache_factor
=
worker_config
.
get
(
"
synctl_cache_factor
"
)
workers
.
append
(
Worker
(
worker_app
,
worker_configfile
,
worker_pidfile
,
worker_cache_factor
,
))
action
=
options
.
action
if
action
==
"
stop
"
or
action
==
"
restart
"
:
for
worker
in
workers
:
stop
(
worker
.
pidfile
,
worker
.
app
)
if
start_stop_synapse
:
stop
(
pidfile
,
"
synapse.app.homeserver
"
)
# TODO: Wait for synapse to actually shutdown before starting it again
if
action
==
"
start
"
or
action
==
"
restart
"
:
if
start_stop_synapse
:
start
(
configfile
)
for
worker
in
workers
:
if
worker
.
cache_factor
:
os
.
environ
[
"
SYNAPSE_CACHE_FACTOR
"
]
=
str
(
worker
.
cache_factor
)
start_worker
(
worker
.
app
,
configfile
,
worker
.
configfile
)
if
cache_factor
:
os
.
environ
[
"
SYNAPSE_CACHE_FACTOR
"
]
=
str
(
cache_factor
)
else
:
os
.
environ
.
pop
(
"
SYNAPSE_CACHE_FACTOR
"
,
None
)
if
__name__
==
"
__main__
"
:
...
...
This diff is collapsed.
Click to expand it.
synapse/config/captcha.py
+
1
−
0
View file @
05f1a459
...
...
@@ -27,6 +27,7 @@ class CaptchaConfig(Config):
def
default_config
(
self
,
**
kwargs
):
return
"""
\
## Captcha ##
# See docs/CAPTCHA_SETUP for full details of configuring this.
# This Home Server
'
s ReCAPTCHA public key.
recaptcha_public_key:
"
YOUR_PUBLIC_KEY
"
...
...
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