Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webhooks: make port configurable #37

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions webhooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,23 +34,26 @@

application = Flask(__name__)

def get_path():
return normpath(abspath(dirname(__file__)))

def get_config():
with open(join(get_path(), 'config.json'), 'r') as cfg:
config = loads(cfg.read())
return config

@application.route('/', methods=['GET', 'POST'])
def index():
"""
Main WSGI application entry.
"""

path = normpath(abspath(dirname(__file__)))

# Only POST is implemented
if request.method != 'POST':
abort(501)

# Load config
with open(join(path, 'config.json'), 'r') as cfg:
config = loads(cfg.read())

path = get_path()
config = get_config()
hooks = config.get('hooks_path', join(path, 'hooks'))

# Allow Github IPs only
Expand Down Expand Up @@ -203,4 +206,4 @@ def index():


if __name__ == '__main__':
application.run(debug=True, host='0.0.0.0')
application.run(debug=True, host='0.0.0.0', port=get_config().get('port', 5000))