mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
[IMP] base_external_dbsource: Refactor & Split by source
* Heavily refactor code for reusability * Split all sources into independent modules * Add more test coverage * Add CRUD methods * Add iterator execute return to roadmap
This commit is contained in:
committed by
Pedro M. Baeza
parent
a656e75d38
commit
3402fedc00
@@ -0,0 +1,59 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2011 Daniel Reis
|
||||
# Copyright 2016 LasLabs Inc.
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
||||
|
||||
import logging
|
||||
|
||||
from odoo import api, models
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
try:
|
||||
from odoo.addons.base_external_dbsource.models import (
|
||||
base_external_dbsource,
|
||||
)
|
||||
CONNECTORS = base_external_dbsource.BaseExternalDbsource.CONNECTORS
|
||||
try:
|
||||
import sqlalchemy
|
||||
CONNECTORS.append(('sqlite', 'SQLite'))
|
||||
except ImportError:
|
||||
_logger.info('SQLAlchemy library not available. Please '
|
||||
'install "sqlalchemy" python package.')
|
||||
except ImportError:
|
||||
_logger.info('base_external_dbsource Odoo module not found.')
|
||||
|
||||
|
||||
class BaseExternalDbsource(models.Model):
|
||||
""" It provides logic for connection to a SQLite data source. """
|
||||
|
||||
_inherit = "base.external.dbsource"
|
||||
|
||||
PWD_STRING_SQLITE = 'Password=%s;'
|
||||
|
||||
@api.multi
|
||||
def connection_close_sqlite(self, connection):
|
||||
return connection.close()
|
||||
|
||||
@api.multi
|
||||
def connection_open_sqlite(self):
|
||||
return self._connection_open_sqlalchemy()
|
||||
|
||||
@api.multi
|
||||
def execute_sqlite(self, sqlquery, sqlparams, metadata):
|
||||
return self._execute_sqlalchemy(sqlquery, sqlparams, metadata)
|
||||
|
||||
@api.multi
|
||||
def _connection_open_sqlalchemy(self):
|
||||
return sqlalchemy.create_engine(self.conn_string_full).connect()
|
||||
|
||||
@api.multi
|
||||
def _execute_sqlalchemy(self, sqlquery, sqlparams, metadata):
|
||||
rows, cols = list(), list()
|
||||
for record in self:
|
||||
with record.connection_open() as connection:
|
||||
cur = connection.execute(sqlquery, sqlparams)
|
||||
if metadata:
|
||||
cols = cur.keys()
|
||||
rows = [r for r in cur]
|
||||
return rows, cols
|
||||
Reference in New Issue
Block a user