示例#1
0
    def loginControl(self, username, password):
        ac = AuthController()
        print('Username', username)
        print('Password', password)
        message = ac.login(username, password)

        if message:
            messagebox.showinfo('Alert', message)
示例#2
0
 def loginControl(self,username,password):
     ac = AuthController()
     message = ac.login(username,password)
     if message == 1:
         self.window.destroy()
         self.next()
     else:
         messagebox.showinfo('Message',message)
示例#3
0
    def registerControl(self, name, phone, email, username, password):
        ac = AuthController()
        status = ac.register(name, phone, email, username, password)

        if status['code']:
            messagebox.showinfo('Success', status['message'])
        else:
            messagebox.showerror('Error', status['message'])
示例#4
0
    def registerControl(self, name, phone, email, username, password):

        ac = AuthController()
        message = ac.register(name, phone, email, username, password,
                              'student')

        if message:
            messagebox.showinfo('Alert', message)
示例#5
0
 def loginControl(self, username, password):
     ac = AuthController()
     message = ac.login(username, password)
     if message == 1:
         self.window.destroy()
         # print("window destroyed")
         self.transfer_control()
     else:
         messagebox.showinfo('Message', message)
    def login_control(self, username, password):
        ac = AuthController()
        message = ac.login(username, password)

        if (message == 1):
            self.window.destroy()
            self.transfer_control()
        else:
            messagebox.showinfo('Information', message)
示例#7
0
    def loginControl(self, username, password):
        ac = AuthController()
        status = ac.login(username, password)

        if status['code']:
            if status['role'] == 'admin':
                self.transfer_control_admin()
            else:
                self.transfer_control_student()
        else:
            message = status['message']
            messagebox.showwarning('Login Error', message)
    def __init__(self):
        self.TAG = "ScrapingController"

        self.logger = Logger()
        self.netUtils = NetworkingUtils()
        self.constUtils = ConstantUtils()
        self.strUtils = StringUtils()
        self.authController = AuthController()
        self.gitController = GithubController()

        self.idxNextInstance = 0
        self.locations = [
            "rio de janeiro", "belo horizonte", "manaus", "porto alegre",
            "curitiba", "fortaleza", "recife", "sao paulo", "são paulo",
            "berlin", "london", "new york", "san francisco", "tokyo",
            "amsterdam", "ottawa", "zurich", "abu dhabi"
        ]
示例#9
0
    def registerControl(self, name, phone, email, username, password):

        ac = AuthController()
        message = ac.register(name, phone, email, username, password)
        messagebox.showinfo('Message', message)
示例#10
0
from flask_cors import CORS
from random import randint
from controllers.AuthController import AuthController
from controllers.WatchTitleController import WatchTitleController
from controllers.SeasonController import SeasonController
from models.WatchTitle import WatchTitle
import os
import requests

app = Flask(__name__,
            static_folder='./dist/static',
            template_folder='./dist')
app.secret_key = os.environ.get('ANTRACKER_SECRET_KEY')
CORS(app, origins=[os.environ.get('CLIENT_HOST')])
watch_title_controller = WatchTitleController()
auth_controller = AuthController()
season_controller = SeasonController()


@app.route('/api/random')
def random_number():
    response = {
        'randomNumber': randint(1, 100)
    }
    return jsonify(response)


@app.route('/', defaults={'path': ''})
@app.route('/<path:path>')
def catch_all(path):
    if app.debug:
class ScrapingController():
    def __init__(self):
        self.TAG = "ScrapingController"

        self.logger = Logger()
        self.netUtils = NetworkingUtils()
        self.constUtils = ConstantUtils()
        self.strUtils = StringUtils()
        self.authController = AuthController()
        self.gitController = GithubController()

        self.idxNextInstance = 0
        self.locations = [
            "rio de janeiro", "belo horizonte", "manaus", "porto alegre",
            "curitiba", "fortaleza", "recife", "sao paulo", "são paulo",
            "berlin", "london", "new york", "san francisco", "tokyo",
            "amsterdam", "ottawa", "zurich", "abu dhabi"
        ]

    ## ------------- ##
    ## Data scraping ##
    ## ------------- ##
    '''
        Scrap the basic profile info of Github users from a given city
    '''

    def scrapBasicProfileGithubUsers(self, username, password, location,
                                     initialPage, numPages):
        response = {
            "success": False,
            "msg":
            "Failed to scrap basic profile info of Github users from the given location",
            "instances": "",
            "last_page": "",
            "num_successes": 0,
            "num_fails": 0,
            "failed_pages": [],
            "started_at": self.logger.get_utc_iso_timestamp(),
            "finished_at": ""
        }

        try:

            if not username or not password or not location or not initialPage or not numPages:
                response["msg"] = "{0}. {1}".format(
                    response["msg"], "Invalid input parameters.")
            else:
                token = self.authController.login(username, password)
                location = self.strUtils.getCleanedJsonVal(location)

                if token != "":
                    print(
                        "\nRequesting basic Github profiles of users from location: {0} ..."
                        .format(location))
                    self.netUtils.updateListRemainingRequestsGithubAPI()

                    for currentPage in range(int(initialPage), int(numPages)):
                        # Hold the process until we have more requests, if needed
                        self.netUtils.waitRequestGithubApiIfNeeded()
                        apiInstance = self.netUtils.getInstanceForRequestToGithubAPI(
                        )

                        try:
                            # Make a request to the Github API and verify if the limit of requests per hour has been exceeded
                            connection = http.client.HTTPSConnection(
                                apiInstance.getBaseUrl())
                            headers = self.netUtils.getRequestHeaders(
                                self.constUtils.HEADERS_TYPE_AUTH_TOKEN, token)
                            endpoint = "/get_github_users_from_location/?store_in_db={0}&location={1}&page_number={2}".format(
                                True, urllib.parse.quote(location),
                                currentPage)
                            connection.request("GET",
                                               endpoint,
                                               headers=headers)

                            print(
                                "\nGET list of users from a location and store on DB \nurl: {0}{1}"
                                .format(apiInstance.getBaseUrl(), endpoint))

                            res = connection.getresponse()
                            data = res.read()
                            githubApiResponse = json.loads(
                                data.decode(self.constUtils.UTF8_DECODER))
                            apiInstance.remainingCallsGithub -= 1

                            # Process the response
                            succesfulResponse = False

                            if githubApiResponse is not None:

                                if "success" in githubApiResponse:

                                    if githubApiResponse["success"]:
                                        succesfulResponse = True
                                        response["num_successes"] += 1
                                    else:
                                        print(githubApiResponse["msg"])

                            if not succesfulResponse:
                                response["num_fails"] += 1
                                response["failed_pages"].append(currentPage)

                        except Exception as e:
                            print(
                                "{0} Failed to process a Github user profile: {1}"
                                .format(self.TAG, e))

                    print("\n{0}:{1} Done! \n".format(
                        self.TAG, self.logger.get_utc_iso_timestamp()))

                    # Fetch a successful response
                    response["success"] = True
                    response[
                        "msg"] = "The script scrapBasicProfileGithubUsers executed correctly"
                    response[
                        "instances"] = self.netUtils.getSerializableApiInstances(
                        )
                    response["last_page"] = currentPage
                    response[
                        "finished_at"] = self.logger.get_utc_iso_timestamp()
                else:
                    response["msg"] = "{0}. {1}".format(
                        response["msg"], "Wrong username or password.")

        except ValueError as e:
            print("{0} Failed to scrapBasicProfileGithubUsers {1}".format(
                self.TAG, e))

        return json.dumps(response)

    '''
        Scrap repositories and skills of Github users from a location
    '''

    def scrapGithubUsersRepositoriesSkills(self, username, password, location):
        response = {
            "success": False,
            "msg":
            "Failed to scrap the repositories and skills of Github users from a location",
            "instances": "",
            "num_successes": 0,
            "failed_user_ids": [],
            "num_fails": 0,
            "started_at": self.logger.get_utc_iso_timestamp(),
            "finished_at": ""
        }

        try:

            if not username or not password:
                response["msg"] = "{0}. {1}".format(
                    response["msg"], "Invalid input parameters.")
            else:
                # Make a request to the Linkehub database and return all the Github user ids from a location
                token = self.authController.login(username, password)
                location = self.strUtils.getCleanedJsonVal(location)

                if token != "":
                    print(
                        "\nRequesting repositories and skills of Github users from : {0} ..."
                        .format(location))
                    self.netUtils.updateListRemainingRequestsGithubAPI()

                    try:
                        # Request a list of userIds from the service Database
                        userIds = self.gitController.getGithubUserIdsFromLocation(
                            token, location)

                        # Request the list of repositories and skills associated to a Github user
                        for githubUserId in userIds:

                            try:
                                githubUserId = self.strUtils.getCleanedJsonVal(
                                    githubUserId)

                                # Hold the process until we have more requests, if needed
                                self.netUtils.waitRequestGithubApiIfNeeded()
                                apiInstance = self.netUtils.getInstanceForRequestToGithubAPI(
                                )

                                print(
                                    "{0} Number of remaining requests to the Github API: {1}"
                                    .format(
                                        self.logger.get_utc_iso_timestamp(),
                                        self.netUtils.
                                        getNumRemaningRequestToGithub()))

                                if apiInstance.remainingCallsGithub > 0:
                                    # This endpoint requests the repositories from the Github API, process the response and
                                    # stores the list of repos and skills in the service Database
                                    connection = http.client.HTTPSConnection(
                                        apiInstance.getBaseUrl())
                                    headers = self.netUtils.getRequestHeaders(
                                        self.constUtils.
                                        HEADERS_TYPE_AUTH_TOKEN, token)
                                    endpoint = "/scrap_user_repositories_skills_from_github/?githubUserId={0}&location={1}".format(
                                        urllib.parse.quote(githubUserId),
                                        urllib.parse.quote(location))
                                    connection.request("GET",
                                                       endpoint,
                                                       headers=headers)

                                    print(
                                        "\nGET repositories and skills of the Github user: {0}"
                                        .format(githubUserId))
                                    print("url: {0}{1}".format(
                                        apiInstance.getBaseUrl(), endpoint))

                                    res = connection.getresponse()
                                    data = res.read()
                                    githubUserReposSkillsResponse = json.loads(
                                        data.decode(
                                            self.constUtils.UTF8_DECODER))
                                    apiInstance.remainingCallsGithub -= 1

                                    # Process the response
                                    successfulResponse = False

                                    if githubUserReposSkillsResponse is not None:

                                        if "success" in githubUserReposSkillsResponse:

                                            if githubUserReposSkillsResponse[
                                                    "success"]:
                                                response["num_successes"] += 1
                                                successfulResponse = True

                                            elif "msg" in githubUserReposSkillsResponse:
                                                print(
                                                    githubUserReposSkillsResponse[
                                                        "msg"])

                                    if not successfulResponse:
                                        response["num_fails"] += 1
                                        response["failed_user_ids"].append(
                                            githubUserId)

                            except Exception as e:
                                print(
                                    "{0} Failed to process the repositories and skills of the user: {1} \ncause: {2}"
                                    .format(self.TAG, githubUserId, e))

                        print("\n{0}:{1} Done! \n".format(
                            self.TAG, self.logger.get_utc_iso_timestamp()))

                    except Exception as e:
                        print(
                            "{0} Failed to process the list of repositories and skills of Github users from: {1} \ncause:{2}"
                            .format(self.TAG, location, e))

                else:
                    response["msg"] = "{0}. {1}".format(
                        response["msg"], "Wrong username or password.")

            # Fetch a successful response
            response["success"] = True
            response[
                "msg"] = "The script scrapGithubUsersRepositoriesSkills executed correctly"
            response["instances"] = self.netUtils.getSerializableApiInstances()
            response["finished_at"] = self.logger.get_utc_iso_timestamp()

        except ValueError as e:
            print(
                "{0} Failed to scrapGithubUsersRepositoriesSkills: {1}".format(
                    self.TAG, e))

        return json.dumps(response)

    '''
        Scrap list of commits of Github users from a location, the users are gathered from the Linkehub database 
        and them complemented with Github data
    '''

    def scrapCommitsCodeSamplesGithubUsersFromLocation(self, username,
                                                       password, location,
                                                       skill):
        response = {
            "success": False,
            "msg":
            "Failed to scrap the commits and code samples of the Github users from the location",
            "instances": "",
            "num_successes": 0,
            "num_fails": 0,
            "started_at": self.logger.get_utc_iso_timestamp(),
            "finished_at": ""
        }

        try:

            if not username or not password or not location or not skill:
                response["msg"] = "{0}. {1}".format(
                    response["msg"], "Invalid input parameters.")
            else:
                token = self.authController.login(username, password)
                location = self.strUtils.getCleanedJsonVal(location)
                skill = self.strUtils.getCleanedJsonVal(skill)

                if token != "":
                    print(
                        "\nRequesting commits and code samples of Github users from : {0} ..."
                        .format(location))
                    self.netUtils.updateListRemainingRequestsGithubAPI()

                    # Request a list of userIds from the service Database
                    userIds = self.gitController.getGithubUserIdsFromLocation(
                        token, location)

                    # Request the list of repositories and skills associated to a Github user
                    for githubUserId in userIds:

                        try:
                            # Hold the process until we have more requests, if needed
                            self.netUtils.waitRequestGithubApiIfNeeded()
                            apiInstance = self.netUtils.getInstanceForRequestToGithubAPI(
                            )

                            print(
                                "Number of remaining requests to the Github API: {0}"
                                .format(self.netUtils.
                                        getNumRemaningRequestToGithub()))

                            if apiInstance.remainingCallsGithub > 0:
                                # This endpoint requests the repositories from the Github API, process the response and
                                # stores the list of repos and skills in the service Database
                                connection = http.client.HTTPSConnection(
                                    apiInstance.getBaseUrl())
                                headers = self.netUtils.getRequestHeaders(
                                    self.constUtils.HEADERS_TYPE_AUTH_TOKEN,
                                    token)
                                endpoint = "/scrap_user_commits_language_github/?githubUserId={0}&language={1}".format(
                                    urllib.parse.quote(githubUserId),
                                    urllib.parse.quote(skill),
                                )
                                connection.request("GET",
                                                   endpoint,
                                                   headers=headers)

                                print(
                                    "\nGET repositories and skills of the Github user: {0}"
                                    .format(githubUserId))
                                print("url: {0}{1}".format(
                                    apiInstance.getBaseUrl(), endpoint))

                                res = connection.getresponse()
                                data = res.read()
                                githubUserReposSkillsResponse = json.loads(
                                    data.decode(self.constUtils.UTF8_DECODER))

                                apiInstance.remainingCallsGithub -= 1

                                # Process the response
                                if githubUserReposSkillsResponse is not None:

                                    if "success" in githubUserReposSkillsResponse:

                                        if githubUserReposSkillsResponse[
                                                "success"]:
                                            response["num_successes"] += 1
                                        else:
                                            if "msg" in githubUserReposSkillsResponse:
                                                print(
                                                    githubUserReposSkillsResponse[
                                                        "msg"])

                                            response["num_fails"] += 1
                                    else:
                                        response["num_fails"] += 1
                                else:
                                    response["num_fails"] += 1

                        except Exception as e:
                            print(
                                "{0} Failed to process the repositories and skills of the user: {1} \ncause: {2}"
                                .format(self.TAG, githubUserId, e))

                    print("\n{0}:{1} Done! \n".format(
                        self.TAG, self.logger.get_utc_iso_timestamp()))

                    # Fetch a successful response
                    response["success"] = True
                    response[
                        "msg"] = "The script scrapCommitsCodeSamplesGithubUsersFromLocation executed correctly"
                    response[
                        "instances"] = self.netUtils.getSerializableApiInstances(
                        )
                    response[
                        "finished_at"] = self.logger.get_utc_iso_timestamp()
                else:
                    response["msg"] = "{0}. {1}".format(
                        response["msg"], "Wrong username or password.")

        except ValueError as e:
            print(
                "{0} Failed to scrapCommitsCodeSamplesGithubUsersFromLocation: {1}"
                .format(self.TAG, e))

        return json.dumps(response)
示例#12
0
 def loginControl(self, username, password):
     ac = AuthController()
     message = ac.login(username, password)
     messagebox.showinfo('Message', message)
示例#13
0
def index():
    e = bottle.request.POST.get('email')
    p = bottle.request.POST.get('password')

    return AuthController().login_mobile(e, p)
示例#14
0
def index():
    return AuthController().logout()
示例#15
0
def index():
    return AuthController().index()
示例#16
0
class TransformationController():
    def __init__(self):
        self.TAG = "TransformationController"

        self.logger = Logger()
        self.netUtils = NetworkingUtils()
        self.constUtils = ConstantUtils()
        self.strUtils = StringUtils()
        self.dataFrameUtils = DataframeUtils()
        self.authController = AuthController()
        self.gitController = GithubController()
        self.dbManager = DBManager()

        self.locations = [
            "rio de janeiro", "belo horizonte", "manaus", "porto alegre",
            "curitiba", "fortaleza", "recife", "sao paulo", "são paulo",
            "berlin", "london", "new york", "san francisco", "tokyo",
            "amsterdam", "ottawa", "zurich", "abu dhabi"
        ]

    def transformAppendTimestampLatestReposSkills(self, username, password):

        response = {
            "status": False,
            "msg":
            "Failed to append the language and date of the latest repositories into the github_profiles_skills_location dataset",
            "user_ids": [],
            "num_profiles": 0,
        }

        try:

            if not username or not password:
                response[
                    "msg"] = "Invalid username and password, please login and try again."

            else:

                for location in self.locations:
                    token = self.authController.login(username, password)

                    if token != "":
                        githubUserIds = self.gitController.getGithubUserIdsFromLocation(
                            token, location)

                        if githubUserIds is not None:

                            for userId in githubUserIds:
                                response["user_ids"].append("{0} : {1}".format(
                                    location, userId))
                                response["num_profiles"] += 1

                                userRepos = self.dbManager.getListReposGithubUser(
                                    userId)

                                if userRepos is not None:

                                    if len(userRepos):
                                        reposDataFrame = pd.DataFrame(
                                            userRepos)
                                        toDrop = self.dataFrameUtils.getColumnsToDrop(
                                            reposDataFrame, [
                                                'description', 'homepage',
                                                'id', 'name', 'url', 'owner',
                                                'is_owner', 'private',
                                                'watchers_count',
                                                'forks_count',
                                                'open_issues_count',
                                                'stargazers_count',
                                                'has_downloads', 'has_issues',
                                                'has_pages', 'has_projects',
                                                'has_wiki'
                                            ])
                                        reposDataFrame.drop(toDrop,
                                                            inplace=True,
                                                            axis=1)
                                        reposDataFrame.dropna()
                                        reposDataFrame[
                                            "created_at"] = pd.to_numeric(
                                                reposDataFrame["created_at"],
                                                downcast="integer")
                                        reposDataFrame[
                                            "updated_at"] = pd.to_numeric(
                                                reposDataFrame["updated_at"],
                                                downcast="integer")
                                        reposDataFrame[
                                            "pushed_at"] = pd.to_numeric(
                                                reposDataFrame["pushed_at"],
                                                downcast="integer")
                                        dfGrouped = reposDataFrame.groupby(
                                            ['language']).agg([
                                                'max'
                                            ]).apply(lambda x: x.tail(len(x)))

                                        reposMax = dfGrouped.to_dict()
                                        newDbFields = {}

                                        print(userId)

                                        for keyColumnMax in reposMax.keys():
                                            rows = reposMax[keyColumnMax]

                                            for keyRowMax in rows.keys():
                                                newDbKey = self.strUtils.getCleanedJsonVal(
                                                    "latest_{0}_{1}".format(
                                                        keyColumnMax[0],
                                                        keyRowMax))

                                                print(newDbKey)

                                                newDbFields[newDbKey] = rows[
                                                    keyRowMax]

                                        self.dbManager.appendTimestampsGithubProfilesSkills(
                                            token, userId, newDbFields)

                                        print()

                response["status"] = True
                response[
                    "msg"] = "We added the attributes that can be used as timestamps on github_profiles_skills"

        except ValueError as ve:
            print(
                "{0} Failed to transformAppendTimestampLatestReposSkills: {1}".
                format(self.TAG, ve))

        return json.dumps(response)

    '''
        Remove all keys that contains a certain pattern from all objects in githut_profile_skills 
    '''

    def removeAllKeysWithPatternFrom(self, username, password, pattern):
        response = {
            "status": False,
            "msg": "Failed to remove keys from github_profile_skills",
            "user_ids": [],
            "num_profiles_fixed": 0,
        }

        try:

            if not username or not password:
                response[
                    "msg"] = "Invalid username and password, please login and try again."

            else:

                for location in self.locations:
                    token = self.authController.login(username, password)

                    if token != "":
                        print("{0}\n".format(location))

                        githubUserIds = self.gitController.getGithubUserIdsFromLocation(
                            token, location)

                        if githubUserIds is not None:

                            for userId in githubUserIds:

                                if response["num_profiles_fixed"] % 100 == 0:
                                    token = self.authController.login(
                                        username, password)

                                if token != "":
                                    print(userId)

                                    self.dbManager.removeAllKeysWithPatternFrom(
                                        token, userId, pattern)
                                    response["user_ids"].append(userId)
                                    response["num_profiles_fixed"] += 1

                        print("")

                        response["status"] = True
                        response[
                            "msg"] = "Removed keys with the given pattern from github_profile_skills"

                    else:
                        response[
                            "msg"] = "Invalid access token, please login and try again."

        except Exception as err:
            print("{0} Failed to removeAllKeysWithPatternFrom {1}".format(
                self.TAG, err))

        return json.dumps(response)