Skip to content
This repository was archived by the owner on Apr 12, 2018. It is now read-only.

querysets.WorkflowTypeQuerySet.filter() should behave like a class method #4

Open
ggreg opened this issue Apr 3, 2013 · 2 comments

Comments

@ggreg
Copy link
Contributor

ggreg commented Apr 3, 2013

If we filter by domain we should not have to instanciate WorkflowTypeQuerySet with a Domain in argument.

@oleiade
Copy link
Contributor

oleiade commented Apr 4, 2013

How would the method prototype would look like then, would domain_name become mandatory?
Plus, I'm very aware of class methods usage, but queryset depends on their instance connection attribute to go fetch data from amazon, how would it be handled without self instance reference?

current method:

    def filter(self, domain_name=None, registration_status=REGISTERED, name=None):
        """Filters workflows based of their status, and/or name"""

        def get_workflows():
            response = {'nextPageToken': None}
            while 'nextPageToken' in response:
                response = self.connection.list_workflow_types(
                    domain_name,
                    registration_status,
                    name=name,
                    next_page_token=response['nextPageToken']
                )

                for workflow in response['typeInfos']:
                    yield workflow

        # As WorkflowTypeQuery has to be built against a specific domain
        # name, domain filter is disposable, but not mandatory.
        domain_name = domain_name or self.domain.name

        return [self.to_WorkflowType(wf) for wf in get_workflows()]

@ggreg
Copy link
Contributor Author

ggreg commented Apr 4, 2013

If domain_name is a filtering key we should allow to instanciate a queryset without a domain.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Development

No branches or pull requests

2 participants