예제 #1
0
파일: update.py 프로젝트: YJH16120/Web-API
class Update(Resource):
    """
    # Important
    This endpoint has not been used or maintained in a long time due to lack of use.

    Updates the MySQL database to reflect changes

    # Functions
    - __init__
    - post
    """
    def __init__(self):
        """Handles initialization, connects to database"""
        password = Database().getPassword()
        self.schema = "testing"

        parser = reqparse.RequestParser()
        parser.add_argument("user", type=str, location="headers")
        parser.add_argument("key", type=str, location="headers")
        parser.add_argument("change", type=str)
        parser.add_argument("previous", type=str)

        self.parsed = parser.parse_args()

        user, key = self.parsed["user"], self.parsed["key"]
        """Verify user"""
        K = Key()
        K.verifyKey(user, key)

        try:
            self.conn, self.cursor = Database().connect(
                "localhost", "root", password[0], self.schema)
        except Exception:
            self.conn, self.cursor = Database().connect(
                "localhost", "root", password[1], self.schema)

    def post(self, salesperson):
        """Handles the POST request

        ---
        # Parameters
        ### salesperson
        The id of the salesperson 
        """
        self.cursor.execute(
            f"SELECT * FROM {self.schema}.trans WHERE salesperson = {salesperson}"
        )
        res = self.cursor.fetchall()
        if len(res) == 0:
            abort(
                404,
                message=
                f"The entry with the id of {salesperson} doesnt not exist. Check if you had a typo."
            )

        self.change, self.prev = self.parsed["change"], self.parsed["previous"]
        try:
            sqlQuery = f"UPDATE {self.schema}.trans SET fbydate = '{self.change}' WHERE fbydate = '{self.prev}'"
            self.cursor.execute(sqlQuery)
            self.conn.commit()
        except (TYPE_DATA_ERROR, TYPE_PROGRAMMING_ERROR):
            abort(
                400,
                message=
                "Make sure your date format is in YYYY-MM-DD. i.e. 2021-01-01 not 2021-1-1"
            )

        return {200: "New Entry Added"}
예제 #2
0
파일: sync.py 프로젝트: YJH16120/Web-API
class Sync(Resource):
    """This class handles syncing data between a MySQL database hosted on the server, and a local SQLite3 database hosted on the mobile application.
    
    ---
    # Functions
    ### public
    - __init__
    - put

    ### private
    - __join
    - __dataProcessing
    - __updateCounter
    - __insertStatement

    
    """
    def __init__(self):
        """
        Handles initilization, and connects to a MySQL database on the server, as well as, a local SQLite database. 
        """
        password = Database().getPassword()
        try:
            self.sqlConn, self.sqlCursor = Database.connect(
                "localhost", "root", password[0], self.schema)
            self.schema = "testing"
            self.table = "trans"
        except TYPE_INTERFACE_ERROR:
            self.sqlConn, self.sqlCursor = Database().connect(
                "localhost", "root", password[1], "tsc_office")
            self.schema = "tsc_office"
            self.table = ""
        """
        These are the arguments the Sync endpoint will accept. If a request is sent through postman (Google it if you don't know what it is), it doesn't matter if
        its from the 'Params' tab or a 'Body' tab. The only difference is the parameters will show up in the url if you choose 'Params', and it won't
        shop up if you choose 'Body'
        """

        parser = reqparse.RequestParser()
        parser.add_argument("key", type=str, location='headers')
        parser.add_argument("user", type=str, location='headers')

        parsed = parser.parse_args()
        key, user = parsed["key"], parsed["user"]

        verified = Key().verifyKey(user, key)  # add key, user
        abort(406, message="Invalid credentials", code=406,
              inside="sync.py") if verified == False else ""

        try:
            sqliteDb = "env-api\\endpoints\\databases\\syncDb.db"  # Path to the local SQLite database stored in the device.
            self.liteCon = sqlite3.connect(sqliteDb)
            print("connecting to sqlite3")
            os.chdir("..\\env-api\\endpoints\\databases")
            PATH = os.getcwd() + "\\syncDb.db"

            self.liteCon = sqlite3.connect(PATH)
            self.liteCursor = self.liteCon.cursor()

        except FileNotFoundError as e:
            error = e.strerror
            abort(400,
                  message=f"{error}. One should be created now. Try again.")

    def __join(self, *values: list) -> Union[str, int]:
        """
        Strips all whitespace in front, and after the conditions. To make it cleaner, spaces between words will not be stripped.
        Add quotes to all values, then joins them all with ", " between each word.

        ---
        # Parameters
        ### values  
        The list of values that you wish to form into a string.

        ---
        # Example
        ```python3
        values = ["one", "two", "three"]
        result = self.__join(values)
        print(result) # "one, two, three"
        ```
        Keep in mind that this is a private method, so you cannot call it outside of the class.
        """
        strippedValues = [
            str(value).strip() for value in values
            if len(str(value).strip()) != 0
        ]
        quotedValues = [f"'{value}'" for value in strippedValues]
        joinedValues = (", ").join(quotedValues)

        return joinedValues

    def put(self, salesperson):
        """Processes the PUT request. And syncs the data between the user's sqlite table, and the server's MySQL table.
        
        ---
        # Parameters
        ### salesperson
        The client's id. This id is used to sync entries for that specific client.
        """
        self.person = salesperson

        valid = self.__dataProcessing()
        list(map(self.__insertStatement, valid))
        self.__updateCounter()

        return [{201: f"Successfully synced."}]

    def __dataProcessing(self) -> Union[list, None]:
        """Fetchs all entries that are at most 3 days old from the current date."""
        sqlString = f"SELECT * FROM {self.schema}.{self.table} WHERE salesperson = '{self.person}' and fbydate >= CURDATE() - INTERVAL 3 day"  # This causes an extra element in a tuple in a list
        self.sqlCursor.execute(sqlString)
        resSql = self.sqlCursor.fetchall()

        try:
            liteString = f"SELECT * FROM `transaction` WHERE salesperson = '{self.person}' and fbydate >= date('now', '-3 days')"
            self.liteCursor.execute(liteString)
            resLite = self.liteCursor.fetchall()

        except Exception as e:
            print(e)
            abort(404, message="SQLite3 table not found.")

        if len(resSql) == len(resLite) and (len(resLite) != 0):
            abort(403, message="Cannot make duplicate entries.")

        elif len(resLite) == 0:
            abort(403, message="You have zero entries.")

        resSql = Database().formatEntries(resSql)

        valid = [lite for lite in resLite if lite not in resSql]

        return valid

    def __updateCounter(self) -> None:
        """Updates the hidden element `counter` from 0 to 1 then to 2. When `counter` is set from 0 to 1,
        nothing seems wrong on the surface. If it goes to 2 from 1, it's absolutely valid."""

        liteQuery = f"UPDATE `transaction` SET counter = '1' WHERE counter = '0' AND salesperson = '{self.person}' AND fbydate >= date('now', '-3 day')"
        self.liteCursor.execute(liteQuery)
        self.liteCon.commit()

        sqlQuery = f"UPDATE {self.schema}.{self.table} SET counter = '1' WHERE counter = '0' AND salesperson = '{self.person}' AND fbydate >= CURDATE() - INTERVAL 3 day"
        self.sqlCursor.execute(sqlQuery)
        self.sqlConn.commit()

        liteQuery = f"UPDATE `transaction` SET counter = '2' WHERE counter = '1' AND salesperson = '{self.person}' AND fbydate >= date('now', '-3 day')"
        self.liteCursor.execute(liteQuery)
        self.liteCon.commit()

        sqlQuery = f"UPDATE {self.schema}.{self.table} SET counter = '2' WHERE counter = '1' AND salesperson = '{self.person}' AND fbydate >= CURDATE() - INTERVAL 3 day"
        self.sqlCursor.execute(sqlQuery)
        self.sqlConn.commit()

    def __insertStatement(self, values: list) -> None:
        """Creates an insert statement from a list of values, and with the column names with a sql cursor
        
        ---
        # Parameters
        ### values
        The list of values to be used in the insert statement.

        ---
        # Example
        ```python3
        values = ["one", "two", "three"]
        result = self.__insertStatement(values)
        print(result) # "INSERT INTO schema.table (`number1`, `number2`, `number3`) VALUES ("one", "two", "three")"
        ```

        Again this is a private method, and cannot be used outside of the class. 
        """
        columns = Database.columnNamesForInsert(self.sqlCursor)
        quotedValues = self.__join(*values)
        sqlQuery = f"INSERT INTO {self.schema}.{self.table} ({columns}) VALUES ({quotedValues})"

        self.sqlCursor.execute(sqlQuery)
        self.sqlConn.commit()