123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- #!/usr/bin/env ruby
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- dir = File.expand_path(File.join(File.dirname(__FILE__), '..'))
- Dir.chdir dir
- require 'bundler'
- require File.join(dir, 'config', 'environment')
- require 'eventmachine'
- require 'em-websocket'
- require 'json'
- require 'fileutils'
- require 'optparse'
- require 'daemons'
- def before_start
- # remember open file handles
- @files_to_reopen = []
- ObjectSpace.each_object(File) do |file|
- @files_to_reopen << file if !file.closed?
- end
- end
- def after_start(dir)
- Dir.chdir dir
- # Re-open file handles
- @files_to_reopen.each do |file|
- file.reopen file.path, 'a+'
- file.sync = true
- end
- $stdout.reopen("#{dir}/log/websocket-server_out.log", 'w').sync = true
- $stderr.reopen("#{dir}/log/websocket-server_err.log", 'w').sync = true
- end
- before_start
- # Look for -o with argument, and -I and -D boolean arguments
- @options = {
- p: 6042,
- b: '0.0.0.0',
- s: false,
- v: false,
- n: false,
- d: false,
- k: '/path/to/server.key',
- c: '/path/to/server.crt',
- i: "#{dir}/tmp/pids/websocket.pid"
- }
- OptionParser.new do |opts|
- opts.banner = 'Usage: websocket-server.rb start|stop [options]'
- opts.on('-d', '--daemon', 'start as daemon') do |d|
- @options[:d] = d
- end
- opts.on('-v', '--verbose', 'enable debug messages') do |v|
- @options[:v] = v
- end
- opts.on('-n', '--info', 'enable info messages') do |n|
- @options[:n] = n
- end
- opts.on('-p', '--port [OPT]', 'port of websocket server') do |p|
- @options[:p] = p
- end
- opts.on('-b', '--bind [OPT]', 'bind address') do |b|
- @options[:b] = IPAddr.new(b).to_s
- end
- opts.on('-s', '--secure', 'enable secure connections') do |s|
- @options[:s] = s
- end
- opts.on('-i', '--pid [OPT]', 'pid, default is tmp/pids/websocket.pid') do |i|
- @options[:i] = i
- end
- opts.on('-k', '--private-key [OPT]', '/path/to/server.key for secure connections') do |k|
- @options[:tls_options] ||= {}
- @options[:tls_options][:private_key_file] = k
- end
- opts.on('-c', '--certificate [OPT]', '/path/to/server.crt for secure connections') do |c|
- @options[:tls_options] ||= {}
- @options[:tls_options][:cert_chain_file] = c
- end
- opts.on('-l', '--to-logfile', 'enable logging to files') do |l|
- @options[:logfile] = l
- end
- end.parse!
- if ARGV[0] != 'start' && ARGV[0] != 'stop'
- puts "Usage: #{File.basename(__FILE__)} start|stop [options]"
- exit
- end
- if ARGV[0] == 'stop'
- pid = File.read(@options[:i]).to_i
- puts "Stopping websocket server (pid: #{pid})"
- # IMPORTANT: Use SIGTERM (15), not SIGKILL (9)
- # Daemons.rb cleans up the PID file automatically on termination;
- # SIGKILL ends the process immediately and bypasses cleanup.
- # See https://major.io/2010/03/18/sigterm-vs-sigkill/ for more.
- Process.kill(:SIGTERM, pid)
- exit
- end
- if ARGV[0] == 'start'
- if @options[:d]
- puts "Starting websocket server on #{@options[:b]}:#{@options[:p]} (secure: #{@options[:s]}, pidfile: #{@options[:i]})"
- # Use Daemons.rb's built-in facility for generating PID files
- Daemons.daemonize(
- app_name: File.basename(@options[:i], '.pid'),
- dir_mode: :normal,
- dir: File.dirname(@options[:i])
- )
- end
- if @options[:d] || @options[:logfile]
- after_start(dir)
- end
- end
- if %w[1 true].include? ENV['WEBSOCKET_SERVER_LOG_TO_STDOUT']
- Zammad::Logging.extend_logging_to_stdout
- elsif Rails.env.development?
- puts 'WebsocketServer do not log to STDOUT. You can enable this by setting WEBSOCKET_SERVER_LOG_TO_STDOUT=1.'
- end
- WebsocketServer.run(@options)
|