Skip to content

Commit

Permalink
add gh_pr_worker
Browse files Browse the repository at this point in the history
Signed-off-by: Parth Sharma <parth261297@gmail.com>
  • Loading branch information
parthsharma2 committed Jul 18, 2019
1 parent 16f3e16 commit 4314d0e
Show file tree
Hide file tree
Showing 9 changed files with 1,056 additions and 0 deletions.
36 changes: 36 additions & 0 deletions workers/gh_pr_worker/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
*.py[cod]

# C extensions
*.so

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
lib
lib64
__pycache__

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox
nosetests.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject
21 changes: 21 additions & 0 deletions workers/gh_pr_worker/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2019 Augur Team

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
32 changes: 32 additions & 0 deletions workers/gh_pr_worker/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
augur_worker_github
===================

.. image:: https://img.shields.io/pypi/v/augur_worker_github.svg
:target: https://pypi.python.org/pypi/augur_worker_github
:alt: Latest PyPI version

.. image:: False.png
:target: False
:alt: Latest Travis CI build status

Augur Worker that collects GitHub data

Usage
-----

Installation
------------

Requirements
^^^^^^^^^^^^

Compatibility
-------------

Licence
-------

Authors
-------

`augur_worker_github` was written by `Augur Team <s@goggins.com>`_.
5 changes: 5 additions & 0 deletions workers/gh_pr_worker/gh_pr_worker/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""gh_pr_worker - Augur Worker that collects GitHub Pull Request data"""

__version__ = '0.0.1'
__author__ = 'Augur Team <s@goggins.com>'
__all__ = []
166 changes: 166 additions & 0 deletions workers/gh_pr_worker/gh_pr_worker/runtime.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
import json
import logging
import os

import click
import requests
from flask import Flask, Response, jsonify, request

from gh_pr_worker.worker import GHPullRequestWorker


logging.basicConfig(filename='worker.log', filemode='w', level=logging.INFO)


def create_server(app, gw):
""" Consists of AUGWOP endpoints for the broker to communicate to this worker
Can post a new task to be added to the workers queue
Can retrieve current status of the worker
Can retrieve the workers config object
"""

@app.route("/AUGWOP/task", methods=['POST', 'GET'])
def augwop_task():
""" AUGWOP endpoint that gets hit to add a task to the workers queue or is used to get the heartbeat/status of worker
"""
# POST a task to be added to the queue
if request.method == 'POST':
logging.info("Sending to work on task: {}".format(str(request.json)))
app.gh_pr_worker.task = request.json
return Response(response=request.json,
status=200,
mimetype="application/json")
if request.method == 'GET': #will retrieve the current tasks/status of the worker
return jsonify({
"status": "not implemented"
})
return Response(response=request.json,
status=200,
mimetype="application/json")

@app.route("/AUGWOP/config")
def augwop_config():
""" Retrieve worker's config
"""
return app.gh_pr_worker.config

@click.command()
@click.option('--augur-url', default='http://localhost:5000/', help='Augur URL')
@click.option('--host', default='localhost', help='Host')
@click.option('--port', default=51239, help='Port')
def main(augur_url, host, port):
""" Declares singular worker and creates the server and flask app that it will be running on
"""
app = Flask(__name__)

#load credentials
credentials = read_config("Database", use_main_config=1)
server = read_config("Server", use_main_config=1)
# worker_info = read_config("PullRequestWorker", use_main_config=1)

# worker_port = worker_info['port'] if 'port' in worker_info else port
worker_port = port

while True:
try:
r = requests.get("http://localhost:{}".format(worker_port) + '/AUGWOP/task')
if r.status == 200:
worker_port += 1
except:
break

config = {
"id": "com.augurlabs.core.gh_pr_worker.{}".format(worker_port),
"broker_port": server['port'],
"location": "http://localhost:{}".format(worker_port),
"zombie_id": credentials["zombie_id"],
"host": credentials["host"],
"key": credentials["key"],
"password": credentials["password"],
"port": credentials["port"],
"user": credentials["user"],
"database": credentials["database"],
"table": "pull_requests",
"endpoint": "api.github.com",
"display_name": "Pull Request Worker",
"description": "A GitHub worker to fetch PR data",
"required": 1,
"type": "string"
}

#create instance of the worker

app.gh_pr_worker = GHPullRequestWorker(config) # declares the worker that will be running on this server with specified config

create_server(app, None)
logging.info("Starting Flask App with pid: " + str(os.getpid()) + "...")


app.run(debug=app.debug, host=host, port=worker_port)
if app.gh_pr_worker._child is not None:
app.gh_pr_worker._child.terminate()
try:
requests.post('http://localhost:{}/api/unstable/workers/remove'.format(server['port']), json={"id": config['id']})
except:
pass

logging.info("Killing Flask App: " + str(os.getpid()))
os.kill(os.getpid(), 9)



def read_config(section, name=None, environment_variable=None, default=None, config_file='augur.config.json', no_config_file=0, use_main_config=0):
"""
Read a variable in specified section of the config file, unless provided an environment variable
:param section: location of given variable
:param name: name of variable
"""


__config_bad = False
if use_main_config == 0:
__config_file_path = os.path.abspath(os.getenv('AUGUR_CONFIG_FILE', config_file))
else:
__config_file_path = os.path.abspath(os.path.dirname(os.path.dirname(os.getcwd())) + '/augur.config.json')

__config_location = os.path.dirname(__config_file_path)
__export_env = os.getenv('AUGUR_ENV_EXPORT', '0') == '1'
__default_config = { 'Database': {"host": "nekocase.augurlabs.io"} }

if os.getenv('AUGUR_ENV_ONLY', '0') != '1' and no_config_file == 0:
try:
__config_file = open(__config_file_path, 'r+')
except:
# logger.info('Couldn\'t open {}, attempting to create. If you have a augur.cfg, you can convert it to a json file using "make to-json"'.format(config_file))
if not os.path.exists(__config_location):
os.makedirs(__config_location)
__config_file = open(__config_file_path, 'w+')
__config_bad = True


# Options to export the loaded configuration as environment variables for Docker

if __export_env:

export_filename = os.getenv('AUGUR_ENV_EXPORT_FILE', 'augur.cfg.sh')
__export_file = open(export_filename, 'w+')
# logger.info('Exporting {} to environment variable export statements in {}'.format(config_file, export_filename))
__export_file.write('#!/bin/bash\n')

# Load the config file and return [section][name]
try:
config_text = __config_file.read()
__config = json.loads(config_text)
if name is not None:
return(__config[section][name])
else:
return(__config[section])

except json.decoder.JSONDecodeError as e:
if not __config_bad:
__using_config_file = False
# logger.error('%s could not be parsed, using defaults. Fix that file, or delete it and run this again to regenerate it. Error: %s', __config_file_path, str(e))

__config = __default_config
return(__config[section][name])
Loading

0 comments on commit 4314d0e

Please sign in to comment.