Skip to content
Snippets Groups Projects
Commit b81bae4c authored by furion's avatar furion
Browse files

[api] shared api/db methods

parent 0a11f0b0
No related branches found
No related tags found
No related merge requests found
from funcy.seqs import first from funcy.seqs import first
from hive.db import conn from hive.db import conn
from sqlalchemy import text from hive.db.schema import (
hive_follows,
)
from sqlalchemy import text, select
# generic
# -------
def query(sql): def query(sql):
res = conn.execute(text(sql).execution_options(autocommit=False)) res = conn.execute(text(sql).execution_options(autocommit=False))
return res return res
...@@ -18,3 +23,18 @@ def query_one(sql): ...@@ -18,3 +23,18 @@ def query_one(sql):
def db_last_block(): def db_last_block():
return query_one("SELECT MAX(num) FROM hive_blocks") or 0 return query_one("SELECT MAX(num) FROM hive_blocks") or 0
# api specific
# ------------
def get_followers(account: str, skip: int, limit: int, db=conn):
q = select([hive_follows]). \
where(hive_follows.c.following == account). \
skip(skip).limit(limit)
return db.execute(q)
def get_following(account: str, skip: int, limit: int, db=conn):
q = select([hive_follows]). \
where(hive_follows.c.follower == account). \
skip(skip).limit(limit)
return db.execute(q)
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import click import click
import click_spinner
from click import echo from click import echo
from hive.indexer.core import sync_from_file, sync_from_steemd, head_state from hive.indexer.core import sync_from_file, sync_from_steemd, head_state
from prettytable import PrettyTable from prettytable import PrettyTable
...@@ -20,16 +19,14 @@ def indexer(): ...@@ -20,16 +19,14 @@ def indexer():
def index_from_file(filename): def index_from_file(filename):
"""import blocks from steemd""" """import blocks from steemd"""
echo('Loading blocks from %s...' % filename) echo('Loading blocks from %s...' % filename)
with click_spinner.spinner(): sync_from_file(filename)
sync_from_file(filename)
@indexer.command(name='from-steemd') @indexer.command(name='from-steemd')
def index_from_steemd(): def index_from_steemd():
"""import blocks from .json.lst file""" """import blocks from .json.lst file"""
echo('Loading blocks from steemd...') echo('Loading blocks from steemd...')
with click_spinner.spinner(): sync_from_steemd()
sync_from_steemd()
@indexer.command(name='show-status') @indexer.command(name='show-status')
......
from hive.db.methods import (
get_followers,
get_following,
)
def api_get_followers(db, bottle, app, params):
_ = bottle, app
return get_followers(
account=params.get('account'),
skip=params.get('skip'),
limit=params.get('limit'),
db=db,
)
def api_get_following(db, bottle, app, params):
_ = bottle, app
return get_following(
account=params.get('account'),
skip=params.get('skip'),
limit=params.get('limit'),
db=db,
)
...@@ -5,17 +5,17 @@ import os ...@@ -5,17 +5,17 @@ import os
from datetime import datetime from datetime import datetime
import bottle import bottle
import hive.server.methods as rpcmethods
from bottle import abort from bottle import abort
from bottle_errorsrest import ErrorsRestPlugin from bottle_errorsrest import ErrorsRestPlugin
from bottle_sqlalchemy import Plugin from bottle_sqlalchemy import Plugin
from hive.db.schema import metadata as hive_metadata from hive.db.schema import metadata as hive_metadata
from hive.indexer.core import db_last_block, head_state from hive.indexer.core import db_last_block, head_state
from hive.sbds.jsonrpc import register_endpoint
from hive.sbds.sbds_json import ToStringJSONEncoder
from sqlalchemy import create_engine from sqlalchemy import create_engine
from steem.steemd import Steemd from steem.steemd import Steemd
from hive.sbds.sbds_json import ToStringJSONEncoder
from hive.sbds.jsonrpc import register_endpoint
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
app = bottle.Bottle() app = bottle.Bottle()
...@@ -81,11 +81,12 @@ jsonrpc = register_endpoint(path='/', app=app, namespace='hive') ...@@ -81,11 +81,12 @@ jsonrpc = register_endpoint(path='/', app=app, namespace='hive')
json_rpc_methods = { json_rpc_methods = {
'head_state': head_state, 'head_state': head_state,
'get_followers': rpcmethods.get_followers,
'get_following': rpcmethods.get_following,
} }
for method_name, fn_call in json_rpc_methods.items(): for method_name, fn_call in json_rpc_methods.items():
jsonrpc.register_method(method=fn_call, method_name=method_name) jsonrpc.register_method(method=fn_call, method_name=method_name)
# WSGI application # WSGI application
# ---------------- # ----------------
application = app application = app
......
...@@ -32,7 +32,6 @@ setup( ...@@ -32,7 +32,6 @@ setup(
'sqlalchemy', 'sqlalchemy',
'mysqlclient', 'mysqlclient',
'click', 'click',
'click-spinner',
'funcy', 'funcy',
'toolz', 'toolz',
'maya', 'maya',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment