Skip to content

AppleScript implementation of the Workflow object class for Alfred 5: adds Quicklookurl XML support

Notifications You must be signed in to change notification settings

dotson/qWorkflow

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

qWorkflow Library

A. Introduction

This is an AppleScript library for creating workflows with Alfred 2. This library provides an object-oriented class with functions for working with plist settings files, reading and writing data to files, generating Alfred feedback results, requesting remote data, and more (make sure you read the FULL DOCUMENTATION to get a grip on how to properly use this library).

It was originally created by David Ferguson using PHP, and was entirely rewritten by me using AppleScript to provide the same functionality to all my fellow AppleScript lovers.

So you may be asking yourself:

  • why on Earth would I use AppleScript when I already have PHP, Python, Ruby, Bash, etc.? - yes, it's true, Alfred can be scripted using all those languages, but ask yourself this: are you able to control MacOS and its Apps using those languages? I'm afraid not, and this is where AppleScript comes to help.

  • but isn't it simpler to use my PHP / Python / etc. skills and combine them with AppleScript inside Alfred? Actually no, it isn't simpler - I've tried it, and it becomes really messy, not to mention that Alfred's workflow system doesn't allow that much mixing.

NOTE: the compiled source folder contains the ready-to-use library script (the files inside this folder should be put inside your Alfred workflow's folder); the uncompiled source folder contains the plain .applescript file that you can view online, and it contains fully commented code to better understand what I did there.

B. Features

There are a lot of things you can do with this library to make your life a lot easier when creating & programming your Alfred Workflows, so here's a list of the most important features (the list will grow while I improve the library):

  • object-oriented approach to write less & more readable code
  • internal workflow introspection (finding the bundle ID, cache & storage paths)
  • generate Alfred-compatible XML feedback with ease
  • saving & retrieving workflow-related settings
  • remote data requests, as well as JSON support (thanks to David @Mousedown Software)
  • sending notifications through the Notification Center (thanks to Daji-Djan)
  • various internal utilities that improve AppleScript (string and date manipulation, file system utilities)

C. Known Limitations

Now, because AppleScript is a bit limited in terms of capabilities, some functionality isn't available right now, but I will try to improve this library further.

  • no JSONP support yet - AppleScript doesn't know anything about JSON or JSONP, so I had to get help from Mousedown Software, and they provided me with a fully functional and really fast JSON helper for which I've made a wrapper to embed it inside my library, and hopefully they will add JSONP support in the near feature; but until then you will have to make sure you're only working with JSON data

  • strict syntax for accessing JSON properties - the JSON Helper that I'm using to add JSON capabilities to this library parses JSON data and converts it to native AppleScript lists and records, and it's obvious that some JSON properties will have the same name as AppleScript's reserved keywords, so to avoid any syntax issues it's highly recommended that you enclose all JSON property names in vertical bar characters, like so: |text| of |result| of item 1 of json (both text and result are reserved keywords in the AppleScript language, and not using the vertical bars would trigger errors in your code)

  • bigger file size - since AppleScript requires extra coding for text manipulation and object handling, the file size is a bit large compared to the PHP equivalent, and it will probably increase as I add new features to it (features that are totally worth the size increase)

  • strict syntax for plist records - it's known that AppleScript's records are a bit clumsy since they lack so many features, that's why when saving a list of records as a PList settings file you should adhere to the following strict record notation:

      { 
        {theKey:"someKeyName", theValue: "textValue"}, 
        {theKey:"mynum", theValue: 2},
        {theKey: "booltest", theValue: false},
        {theKey:"na", theValue: missing value} 
      }
    

D. Initialization

Before you write any code, it's imperative that you copy the q_workflow.scpt library file.

NOTE: If you plan to use the NotificationCenter methods to trigger notifications or if you plan on using the JSON capabilities of this library, then it's vital that you also copy the `bin` folder to your Workflow folder "as is" since it contains the helper utilities that provide these extra features. Note that trying to send notifications or read JSON without having the bin folder in your Workflow folder will produce no result (and yes, the utilities have to stay inside the bin folder at all time with the current filenames for this to work).

set workflowFolder to do shell script "pwd"
set wlib to load script POSIX file (workflowFolder & "/q_workflow.scpt")
set wf to wlib's new_workflow()

or by specifying a bundle name:

...
set wf to wlib's new_workflow_with_bundle("com.mycompany.mybundlename")

Explanations:

  • the first line determines the Alfred workflow's bundle path because this is where the "q_workflow.scpt" library should be placed in order to work

  • the second line loads the library from the bundle's path assuming that you already placed it there

  • the last line creates a new script object (the equivalent of a class in other languages) with all the required functionality

  • since AppleScript doesn't support optional parameters, there are 2 constructors: new_workflow() with no parameters, which creates a new class that automatically fetches the bundle name from Alfred, and new_workflow_with_bundle(<name>), which takes 1 parameter with the desired bundle name if none was specified in Alfred.

E. Methods

For more info, tips and examples on how to use the following methods, please consult the accompanying documentation (again, it is vital that you look at the FULL DOCUMENTATION to get a grip on how to properly use this library).

This library provides 2 categories of methods, namely workflow methods and utility methods. Workflow methods can be used only after creating a new workflow class (these are also known as instance methods), and provide basic handlers to deal with Alfred Workflows. Utility methods, on the other hand, contain handlers that are used internally by the workflow methods, as well as useful handlers for regular use that enhance AppleScript's capabilities (these include string and date manipulation, file system checks, sending notification, etc.)

Workflow Methods

  1. get_bundle()
  2. get_data()
  3. get_cache()
  4. get_path()
  5. get_home()
  6. set_value(key, value, plistfile)
  7. set_values(listofrecords, plistfile)
  8. get_value(key, plistfile)
  9. request(url)
  10. request_json(url)
  11. mdfind(query)
  12. write_file(textorlist, cachefile)
  13. read_file(cachefile)
  14. add_result with(out) isValid given theUid, theArg, theTitle, theSubtitle, theAutocomplete, theIcon, theType
  15. get_results()
  16. to_xml(listofrecords)

Utility Methods

  1. q_trim(text)
  2. q_join(list, delimiter or string of delimiters)
  3. q_split(text, delimiter or string of delimiters or list of delimiters)
  4. q_is_empty(string or list)
  5. q_file_exists(file path)
  6. q_folder_exists(folder path)
  7. q_path_exists(file or folder path)
  8. q_clean_list(list)
  9. q_encode(text)
  10. q_date_to_unixdate(date)
  11. q_unixdate_to_date(text)
  12. q_date_to_timestamp(date)
  13. q_timestamp_to_date(text)
  14. q_send_notification(message, details, extra)
  15. q_notify()
  16. q_encode_url(str)
  17. q_decode_url(str)

F. Licensing

This library is free to use, copy and modify, and is provided "AS IS", without warranty of any kind. However, I will greatly appreciate it if you'd give me credit and mention me in your works or anywhere you use this library.

The use of the helper utilities shipped with this library is subject to each author's license, which can be read at the links provided in [section B].

About

AppleScript implementation of the Workflow object class for Alfred 5: adds Quicklookurl XML support

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 63.4%
  • AppleScript 29.4%
  • C 7.2%