Exemple #1
0
    def create_table(schema: Schema):
        with schema.connection().create(Vehicle.__table__) as table:
            table: Blueprint

            table.string("uid").unique().primary()
            table.integer("type")
            table.json("locations")
            table.json("packages")

            # Required by default, you can disable these columns, check orator docs
            table.timestamp("created_at")
            table.timestamp("updated_at")
Exemple #2
0
class Database(DatabaseManager):
    instance = None

    def __init__(self, *args, **kwargs):

        if not os.path.exists(_databaseDir):
            print("Database not yet created...")
            print("Creating database...")
            os.mkdir(_databaseDir)

        super(DatabaseManager, self).__init__(*args, **kwargs, config=config)

        Model.set_connection_resolver(self)

        self.schema = Schema(self)

        if not os.path.exists(_databaseLocation):
            self._create()

        Database.instance = self

    def _create(self):
        Vehicle.create_table(self.schema)

    def delete(self):
        print("Warning! Only use this if you are absolutely sure!")
        ans = input("Are you sure you want to delete the database? (y/n)")
        ans2 = input("Double check. Are you sure???!!? (y/n)")
        if ans == "y" and ans2 == "y":
            print("Deleting database...")
            self._delete()
        else:
            print("Exiting...")

    def _delete(self):
        self.schema.connection().drop(Vehicle.__table__)
Exemple #3
0
    def __new__(self, name):
        #If we've already made this connection, return the existing one.
        if name in DBSchema.connections:
            return DBSchema.connections[name]
        else:
            #Make sure this connection has a configuration
            if name not in database_config:
                raise Exception('Database connection not configured: ' + name)

            from orator import Schema

            db = builder(name)
            schema = Schema(db)
            DBSchema.connections[name] = dbschema = schema.connection(
                'default')

            return dbschema
from orator import Schema

from config import db


schema = Schema(db)
# with schema.create('test') as table:
#     table.increments('id')

with schema.connection('mysql1').create('user') as table:
    table.increments('id')
    table.string('uid', 32).unique()
    table.string('name', 20)
    table.string('email', 100)

with schema.connection('mysql1').create('terminal') as table:
    table.increments('id')
    table.string('tid', 32)
    table.string('uid', 32)
    table.foreign('uid').references('uid').on('user')
class DatabaseUtilities:
    def __init__(self):

        self.sego_home = Path.home() / ".sego"
        self.database = self.sego_home / "sego_database.db"
        self.config = {
            'sqlite': {
                'driver': 'sqlite',
                'database': str(self.database),
                'prefix': '',
            }
        }
        self.db = DatabaseManager(self.config)
        self.schema = Schema(self.db)
        Model.set_connection_resolver(self.db)

    def create_connection(self, db_file):
        """ create a database connection to a SQLite database """
        conn = None
        try:
            conn = sqlite3.connect(db_file)
            print(sqlite3.version)
        except Error as e:
            print(e)
        finally:
            if conn:
                conn.close()

    def get_database_path(self):
        return self.database

    def create_applications_table(self):
        with self.schema.connection('sqlite').create('applications') as table:
            table.increments('id')

        with self.schema.table('applications') as table:
            table.string('app_name').nullable()
            table.string('description').nullable()
            table.string('developer').nullable()
            table.string('version').nullable()
            table.string('app_directory').nullable()
            table.string("application_identifier").nullable()
            table.big_integer('application_type').nullable()
            table.timestamp("created_at").nullable()
            table.timestamp("updated_at").nullable()
            table.big_integer("active").default(0)

    def create_plugins_table(self):
        with self.schema.connection('sqlite').create('plugins') as table:
            table.increments('id')

        with self.schema.table('plugins') as table:
            table.string("name").nullable()
            table.string("description").nullable()
            table.string("version").nullable()

    def create_targets_table(self):
        with self.schema.connection('sqlite').create('targets') as table:
            table.increments('id')

        with self.schema.table('targets') as table:
            table.string('target').nullable()
            table.string('description').nullable()
            table.string('list_action').nullable()
            table.string('generate_action').nullable()
            table.timestamp("created_at").nullable()
            table.timestamp("updated_at").nullable()

    def register_targets(self):
        target = Targets()
        target.target = "Routes"
        target.description = "This generator target manages application routes"
        target.save()
        target = Targets()
        target.target = "Controllers"
        target.description = "This generator target manages application controllers"
        target.save()
        target = Targets()
        target.target = "Applications"
        target.description = "This generator target manages applications"
        target.save()

    def register_application(self, app_data):
        new_app = Applications()
        new_app.app_name = app_data["app_name"]
        new_app.description = app_data["description"]
        new_app.developer = app_data["developer"]
        new_app.version = app_data["version"]
        new_app.app_directory = app_data["app_directory"]
        new_app.application_identifier = app_data["application_identifier"]
        new_app.application_type = 1
        new_app.save()

    def list_applications(self):
        return Applications.all()

    def setup(self):

        self.create_connection(str(self.database))
        self.create_applications_table()
        self.create_plugins_table()
        self.create_targets_table()
        self.register_targets()