Home

Awesome

#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:

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):

##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.

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

<p style="color: red;"><strong>NOTE:</strong> 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).</p>
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:

##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].