es.py 1.28 KB
# -*- coding: utf-8 -*-
#

from jms_es_sdk import ESStore
from .base import CommandBase
from .models import AbstractSessionCommand


class CommandStore(CommandBase, ESStore):
    def __init__(self, params):
        hosts = params.get('HOSTS', ['http://localhost'])
        ESStore.__init__(self, hosts=hosts)

    def save(self, command):
        return ESStore.save(self, command)

    def bulk_save(self, commands):
        return ESStore.bulk_save(self, commands)

    def filter(self, date_from=None, date_to=None,
               user=None, asset=None, system_user=None,
               input=None, session=None):

        data = ESStore.filter(
            self, date_from=date_from, date_to=date_to,
            user=user, asset=asset, system_user=system_user,
            input=input, session=session
        )
        return AbstractSessionCommand.from_multi_dict(
            [item["_source"] for item in data["hits"] if item]
        )

    def count(self, date_from=None, date_to=None,
              user=None, asset=None, system_user=None,
              input=None, session=None):
        amount = ESStore.count(
            self, date_from=date_from, date_to=date_to,
            user=user, asset=asset, system_user=system_user,
            input=input, session=session
        )
        return amount