123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724 |
- # encoding: utf-8
- #
- # Copyright (c) 2016 Dean Jackson <[email protected]>
- #
- # MIT Licence. See http://opensource.org/licenses/MIT
- #
- # Created on 2016-06-25
- #
- """An Alfred 3+ version of :class:`~workflow.Workflow`.
- :class:`~workflow.Workflow3` supports new features, such as
- setting :ref:`workflow-variables` and
- :class:`the more advanced modifiers <Modifier>` supported by Alfred 3+.
- In order for the feedback mechanism to work correctly, it's important
- to create :class:`Item3` and :class:`Modifier` objects via the
- :meth:`Workflow3.add_item()` and :meth:`Item3.add_modifier()` methods
- respectively. If you instantiate :class:`Item3` or :class:`Modifier`
- objects directly, the current :class:`Workflow3` object won't be aware
- of them, and they won't be sent to Alfred when you call
- :meth:`Workflow3.send_feedback()`.
- """
- from __future__ import print_function, unicode_literals, absolute_import
- import json
- import os
- import sys
- from .workflow import ICON_WARNING, Workflow
- class Variables(dict):
- """Workflow variables for Run Script actions.
- .. versionadded: 1.26
- This class allows you to set workflow variables from
- Run Script actions.
- It is a subclass of :class:`dict`.
- >>> v = Variables(username='deanishe', password='hunter2')
- >>> v.arg = u'output value'
- >>> print(v)
- See :ref:`variables-run-script` in the User Guide for more
- information.
- Args:
- arg (unicode, optional): Main output/``{query}``.
- **variables: Workflow variables to set.
- Attributes:
- arg (unicode): Output value (``{query}``).
- config (dict): Configuration for downstream workflow element.
- """
- def __init__(self, arg=None, **variables):
- """Create a new `Variables` object."""
- self.arg = arg
- self.config = {}
- super(Variables, self).__init__(**variables)
- @property
- def obj(self):
- """Return ``alfredworkflow`` `dict`."""
- o = {}
- if self:
- d2 = {}
- for k, v in self.items():
- d2[k] = v
- o['variables'] = d2
- if self.config:
- o['config'] = self.config
- if self.arg is not None:
- o['arg'] = self.arg
- return {'alfredworkflow': o}
- def __unicode__(self):
- """Convert to ``alfredworkflow`` JSON object.
- Returns:
- unicode: ``alfredworkflow`` JSON object
- """
- if not self and not self.config:
- if self.arg:
- return self.arg
- else:
- return u''
- return json.dumps(self.obj)
- def __str__(self):
- """Convert to ``alfredworkflow`` JSON object.
- Returns:
- str: UTF-8 encoded ``alfredworkflow`` JSON object
- """
- return unicode(self).encode('utf-8')
- class Modifier(object):
- """Modify :class:`Item3` arg/icon/variables when modifier key is pressed.
- Don't use this class directly (as it won't be associated with any
- :class:`Item3`), but rather use :meth:`Item3.add_modifier()`
- to add modifiers to results.
- >>> it = wf.add_item('Title', 'Subtitle', valid=True)
- >>> it.setvar('name', 'default')
- >>> m = it.add_modifier('cmd')
- >>> m.setvar('name', 'alternate')
- See :ref:`workflow-variables` in the User Guide for more information
- and :ref:`example usage <example-variables>`.
- Args:
- key (unicode): Modifier key, e.g. ``"cmd"``, ``"alt"`` etc.
- subtitle (unicode, optional): Override default subtitle.
- arg (unicode, optional): Argument to pass for this modifier.
- valid (bool, optional): Override item's validity.
- icon (unicode, optional): Filepath/UTI of icon to use
- icontype (unicode, optional): Type of icon. See
- :meth:`Workflow.add_item() <workflow.Workflow.add_item>`
- for valid values.
- Attributes:
- arg (unicode): Arg to pass to following action.
- config (dict): Configuration for a downstream element, such as
- a File Filter.
- icon (unicode): Filepath/UTI of icon.
- icontype (unicode): Type of icon. See
- :meth:`Workflow.add_item() <workflow.Workflow.add_item>`
- for valid values.
- key (unicode): Modifier key (see above).
- subtitle (unicode): Override item subtitle.
- valid (bool): Override item validity.
- variables (dict): Workflow variables set by this modifier.
- """
- def __init__(self, key, subtitle=None, arg=None, valid=None, icon=None,
- icontype=None):
- """Create a new :class:`Modifier`.
- Don't use this class directly (as it won't be associated with any
- :class:`Item3`), but rather use :meth:`Item3.add_modifier()`
- to add modifiers to results.
- Args:
- key (unicode): Modifier key, e.g. ``"cmd"``, ``"alt"`` etc.
- subtitle (unicode, optional): Override default subtitle.
- arg (unicode, optional): Argument to pass for this modifier.
- valid (bool, optional): Override item's validity.
- icon (unicode, optional): Filepath/UTI of icon to use
- icontype (unicode, optional): Type of icon. See
- :meth:`Workflow.add_item() <workflow.Workflow.add_item>`
- for valid values.
- """
- self.key = key
- self.subtitle = subtitle
- self.arg = arg
- self.valid = valid
- self.icon = icon
- self.icontype = icontype
- self.config = {}
- self.variables = {}
- def setvar(self, name, value):
- """Set a workflow variable for this Item.
- Args:
- name (unicode): Name of variable.
- value (unicode): Value of variable.
- """
- self.variables[name] = value
- def getvar(self, name, default=None):
- """Return value of workflow variable for ``name`` or ``default``.
- Args:
- name (unicode): Variable name.
- default (None, optional): Value to return if variable is unset.
- Returns:
- unicode or ``default``: Value of variable if set or ``default``.
- """
- return self.variables.get(name, default)
- @property
- def obj(self):
- """Modifier formatted for JSON serialization for Alfred 3.
- Returns:
- dict: Modifier for serializing to JSON.
- """
- o = {}
- if self.subtitle is not None:
- o['subtitle'] = self.subtitle
- if self.arg is not None:
- o['arg'] = self.arg
- if self.valid is not None:
- o['valid'] = self.valid
- if self.variables:
- o['variables'] = self.variables
- if self.config:
- o['config'] = self.config
- icon = self._icon()
- if icon:
- o['icon'] = icon
- return o
- def _icon(self):
- """Return `icon` object for item.
- Returns:
- dict: Mapping for item `icon` (may be empty).
- """
- icon = {}
- if self.icon is not None:
- icon['path'] = self.icon
- if self.icontype is not None:
- icon['type'] = self.icontype
- return icon
- class Item3(object):
- """Represents a feedback item for Alfred 3+.
- Generates Alfred-compliant JSON for a single item.
- Don't use this class directly (as it then won't be associated with
- any :class:`Workflow3 <workflow.Workflow3>` object), but rather use
- :meth:`Workflow3.add_item() <workflow.Workflow3.add_item>`.
- See :meth:`~workflow.Workflow3.add_item` for details of arguments.
- """
- def __init__(self, title, subtitle='', arg=None, autocomplete=None,
- match=None, valid=False, uid=None, icon=None, icontype=None,
- type=None, largetext=None, copytext=None, quicklookurl=None):
- """Create a new :class:`Item3` object.
- Use same arguments as for
- :class:`Workflow.Item <workflow.Workflow.Item>`.
- Argument ``subtitle_modifiers`` is not supported.
- """
- self.title = title
- self.subtitle = subtitle
- self.arg = arg
- self.autocomplete = autocomplete
- self.match = match
- self.valid = valid
- self.uid = uid
- self.icon = icon
- self.icontype = icontype
- self.type = type
- self.quicklookurl = quicklookurl
- self.largetext = largetext
- self.copytext = copytext
- self.modifiers = {}
- self.config = {}
- self.variables = {}
- def setvar(self, name, value):
- """Set a workflow variable for this Item.
- Args:
- name (unicode): Name of variable.
- value (unicode): Value of variable.
- """
- self.variables[name] = value
- def getvar(self, name, default=None):
- """Return value of workflow variable for ``name`` or ``default``.
- Args:
- name (unicode): Variable name.
- default (None, optional): Value to return if variable is unset.
- Returns:
- unicode or ``default``: Value of variable if set or ``default``.
- """
- return self.variables.get(name, default)
- def add_modifier(self, key, subtitle=None, arg=None, valid=None, icon=None,
- icontype=None):
- """Add alternative values for a modifier key.
- Args:
- key (unicode): Modifier key, e.g. ``"cmd"`` or ``"alt"``
- subtitle (unicode, optional): Override item subtitle.
- arg (unicode, optional): Input for following action.
- valid (bool, optional): Override item validity.
- icon (unicode, optional): Filepath/UTI of icon.
- icontype (unicode, optional): Type of icon. See
- :meth:`Workflow.add_item() <workflow.Workflow.add_item>`
- for valid values.
- Returns:
- Modifier: Configured :class:`Modifier`.
- """
- mod = Modifier(key, subtitle, arg, valid, icon, icontype)
- # Add Item variables to Modifier
- mod.variables.update(self.variables)
- self.modifiers[key] = mod
- return mod
- @property
- def obj(self):
- """Item formatted for JSON serialization.
- Returns:
- dict: Data suitable for Alfred 3 feedback.
- """
- # Required values
- o = {
- 'title': self.title,
- 'subtitle': self.subtitle,
- 'valid': self.valid,
- }
- # Optional values
- if self.arg is not None:
- o['arg'] = self.arg
- if self.autocomplete is not None:
- o['autocomplete'] = self.autocomplete
- if self.match is not None:
- o['match'] = self.match
- if self.uid is not None:
- o['uid'] = self.uid
- if self.type is not None:
- o['type'] = self.type
- if self.quicklookurl is not None:
- o['quicklookurl'] = self.quicklookurl
- if self.variables:
- o['variables'] = self.variables
- if self.config:
- o['config'] = self.config
- # Largetype and copytext
- text = self._text()
- if text:
- o['text'] = text
- icon = self._icon()
- if icon:
- o['icon'] = icon
- # Modifiers
- mods = self._modifiers()
- if mods:
- o['mods'] = mods
- return o
- def _icon(self):
- """Return `icon` object for item.
- Returns:
- dict: Mapping for item `icon` (may be empty).
- """
- icon = {}
- if self.icon is not None:
- icon['path'] = self.icon
- if self.icontype is not None:
- icon['type'] = self.icontype
- return icon
- def _text(self):
- """Return `largetext` and `copytext` object for item.
- Returns:
- dict: `text` mapping (may be empty)
- """
- text = {}
- if self.largetext is not None:
- text['largetype'] = self.largetext
- if self.copytext is not None:
- text['copy'] = self.copytext
- return text
- def _modifiers(self):
- """Build `mods` dictionary for JSON feedback.
- Returns:
- dict: Modifier mapping or `None`.
- """
- if self.modifiers:
- mods = {}
- for k, mod in self.modifiers.items():
- mods[k] = mod.obj
- return mods
- return None
- class Workflow3(Workflow):
- """Workflow class that generates Alfred 3+ feedback.
- It is a subclass of :class:`~workflow.Workflow` and most of its
- methods are documented there.
- Attributes:
- item_class (class): Class used to generate feedback items.
- variables (dict): Top level workflow variables.
- """
- item_class = Item3
- def __init__(self, **kwargs):
- """Create a new :class:`Workflow3` object.
- See :class:`~workflow.Workflow` for documentation.
- """
- Workflow.__init__(self, **kwargs)
- self.variables = {}
- self._rerun = 0
- # Get session ID from environment if present
- self._session_id = os.getenv('_WF_SESSION_ID') or None
- if self._session_id:
- self.setvar('_WF_SESSION_ID', self._session_id)
- @property
- def _default_cachedir(self):
- """Alfred 4's default cache directory."""
- return os.path.join(
- os.path.expanduser(
- '~/Library/Caches/com.runningwithcrayons.Alfred/'
- 'Workflow Data/'),
- self.bundleid)
- @property
- def _default_datadir(self):
- """Alfred 4's default data directory."""
- return os.path.join(os.path.expanduser(
- '~/Library/Application Support/Alfred/Workflow Data/'),
- self.bundleid)
- @property
- def rerun(self):
- """How often (in seconds) Alfred should re-run the Script Filter."""
- return self._rerun
- @rerun.setter
- def rerun(self, seconds):
- """Interval at which Alfred should re-run the Script Filter.
- Args:
- seconds (int): Interval between runs.
- """
- self._rerun = seconds
- @property
- def session_id(self):
- """A unique session ID every time the user uses the workflow.
- .. versionadded:: 1.25
- The session ID persists while the user is using this workflow.
- It expires when the user runs a different workflow or closes
- Alfred.
- """
- if not self._session_id:
- from uuid import uuid4
- self._session_id = uuid4().hex
- self.setvar('_WF_SESSION_ID', self._session_id)
- return self._session_id
- def setvar(self, name, value, persist=False):
- """Set a "global" workflow variable.
- .. versionchanged:: 1.33
- These variables are always passed to downstream workflow objects.
- If you have set :attr:`rerun`, these variables are also passed
- back to the script when Alfred runs it again.
- Args:
- name (unicode): Name of variable.
- value (unicode): Value of variable.
- persist (bool, optional): Also save variable to ``info.plist``?
- """
- self.variables[name] = value
- if persist:
- from .util import set_config
- set_config(name, value, self.bundleid)
- self.logger.debug('saved variable %r with value %r to info.plist',
- name, value)
- def getvar(self, name, default=None):
- """Return value of workflow variable for ``name`` or ``default``.
- Args:
- name (unicode): Variable name.
- default (None, optional): Value to return if variable is unset.
- Returns:
- unicode or ``default``: Value of variable if set or ``default``.
- """
- return self.variables.get(name, default)
- def add_item(self, title, subtitle='', arg=None, autocomplete=None,
- valid=False, uid=None, icon=None, icontype=None, type=None,
- largetext=None, copytext=None, quicklookurl=None, match=None):
- """Add an item to be output to Alfred.
- Args:
- match (unicode, optional): If you have "Alfred filters results"
- turned on for your Script Filter, Alfred (version 3.5 and
- above) will filter against this field, not ``title``.
- See :meth:`Workflow.add_item() <workflow.Workflow.add_item>` for
- the main documentation and other parameters.
- The key difference is that this method does not support the
- ``modifier_subtitles`` argument. Use the :meth:`~Item3.add_modifier()`
- method instead on the returned item instead.
- Returns:
- Item3: Alfred feedback item.
- """
- item = self.item_class(title, subtitle, arg, autocomplete,
- match, valid, uid, icon, icontype, type,
- largetext, copytext, quicklookurl)
- # Add variables to child item
- item.variables.update(self.variables)
- self._items.append(item)
- return item
- @property
- def _session_prefix(self):
- """Filename prefix for current session."""
- return '_wfsess-{0}-'.format(self.session_id)
- def _mk_session_name(self, name):
- """New cache name/key based on session ID."""
- return self._session_prefix + name
- def cache_data(self, name, data, session=False):
- """Cache API with session-scoped expiry.
- .. versionadded:: 1.25
- Args:
- name (str): Cache key
- data (object): Data to cache
- session (bool, optional): Whether to scope the cache
- to the current session.
- ``name`` and ``data`` are the same as for the
- :meth:`~workflow.Workflow.cache_data` method on
- :class:`~workflow.Workflow`.
- If ``session`` is ``True``, then ``name`` is prefixed
- with :attr:`session_id`.
- """
- if session:
- name = self._mk_session_name(name)
- return super(Workflow3, self).cache_data(name, data)
- def cached_data(self, name, data_func=None, max_age=60, session=False):
- """Cache API with session-scoped expiry.
- .. versionadded:: 1.25
- Args:
- name (str): Cache key
- data_func (callable): Callable that returns fresh data. It
- is called if the cache has expired or doesn't exist.
- max_age (int): Maximum allowable age of cache in seconds.
- session (bool, optional): Whether to scope the cache
- to the current session.
- ``name``, ``data_func`` and ``max_age`` are the same as for the
- :meth:`~workflow.Workflow.cached_data` method on
- :class:`~workflow.Workflow`.
- If ``session`` is ``True``, then ``name`` is prefixed
- with :attr:`session_id`.
- """
- if session:
- name = self._mk_session_name(name)
- return super(Workflow3, self).cached_data(name, data_func, max_age)
- def clear_session_cache(self, current=False):
- """Remove session data from the cache.
- .. versionadded:: 1.25
- .. versionchanged:: 1.27
- By default, data belonging to the current session won't be
- deleted. Set ``current=True`` to also clear current session.
- Args:
- current (bool, optional): If ``True``, also remove data for
- current session.
- """
- def _is_session_file(filename):
- if current:
- return filename.startswith('_wfsess-')
- return filename.startswith('_wfsess-') \
- and not filename.startswith(self._session_prefix)
- self.clear_cache(_is_session_file)
- @property
- def obj(self):
- """Feedback formatted for JSON serialization.
- Returns:
- dict: Data suitable for Alfred 3 feedback.
- """
- items = []
- for item in self._items:
- items.append(item.obj)
- o = {'items': items}
- if self.variables:
- o['variables'] = self.variables
- if self.rerun:
- o['rerun'] = self.rerun
- return o
- def warn_empty(self, title, subtitle=u'', icon=None):
- """Add a warning to feedback if there are no items.
- .. versionadded:: 1.31
- Add a "warning" item to Alfred feedback if no other items
- have been added. This is a handy shortcut to prevent Alfred
- from showing its fallback searches, which is does if no
- items are returned.
- Args:
- title (unicode): Title of feedback item.
- subtitle (unicode, optional): Subtitle of feedback item.
- icon (str, optional): Icon for feedback item. If not
- specified, ``ICON_WARNING`` is used.
- Returns:
- Item3: Newly-created item.
- """
- if len(self._items):
- return
- icon = icon or ICON_WARNING
- return self.add_item(title, subtitle, icon=icon)
- def send_feedback(self):
- """Print stored items to console/Alfred as JSON."""
- if self.debugging:
- json.dump(self.obj, sys.stdout, indent=2, separators=(',', ': '))
- else:
- json.dump(self.obj, sys.stdout)
- sys.stdout.flush()
|