alfred_workflow

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

alfred workflow

Alfred Workflow #
A helper library in Dart for authors of workflows for Alfred.











This library is heavily inspired by the excellent Python library deanishe/alfred-workflow.
🚸 Usage #
🎉 Basic example #
import 'dart:io' show exitCode;

import 'package:alfred_workflow/alfred_workflow.dart';
import 'package:args/args.dart';
import 'package:cli_script/cli_script.dart';

void main(List<String> arguments) {
/// It's recommended that all scripts wrap their main() methods in wrapMain.
/// It gracefully exits when an error is unhandled, and (if chainStackTraces is true)
/// tracks stack traces across asynchronous calls to produce better error stacks.
wrapMain(() async {
/// Instantiate an AlfredWorkflow
final workflow = AlfredWorkflow();

try {
exitCode = 0;

/// Define an ArgParser that uses -q/--query to listen to search queries
final ArgParser parser = ArgParser()
..addOption('query', abbr: 'q', defaultsTo: '');

/// Parse the args
final ArgResults args = parser.parse(arguments);

/// Sanitize the query string obtained from the args
final String query = args['query'].replaceAll(RegExp(r'\s+'), ' ').trim();

if (query.isEmpty) {
/// In case of an empty query display a placeholder in the Alfred feedback
workflow.addItem(
const AlfredItem(
title: 'Search for some particular stuff ...',
icon: AlfredItemIcon(path: 'icon.png'),
),
);
} else {
/// When there is a query do something fancy

/// In this case we'll search Google with our query.
final Uri url = Uri.https('www.google.com', '/search', {'q': query});

/// Add an item to the Alfred feedback
workflow.addItem(
AlfredItem(
title: 'Sorry I can\'t help you with that query.',
subtitle: 'Shall I try and search Google?',
arg: url.toString(),
text: AlfredItemText(
copy: url.toString(),
),
quickLookUrl: url.toString(),
icon: AlfredItemIcon(path: 'google.png'),
valid: true,
),
);
}
} catch (err) {
/// Set exit code to a non-zero number
exitCode = 1;

/// In case of errors you can simply output the message in the Alfred feedback
workflow.addItem(
AlfredItem(title: err.toString()),
);
} finally {
/// This will always print JSON to the stdout and send that to Alfred.
workflow.run();
}
});
}
copied to clipboard
To search for the string "hello" simply execute this on the commandline:
dart run example.dart --query 'hello'
copied to clipboard
Check out the basic example here.
⚡️ Speed it up using caching #
The library uses stash_file to cache results in the form of AlfredItems.
All you need to do to enable it is to define a cacheKey.
/// Define a cacheKey. In this case you can just use the query.
workflow.cacheKey = query;

/// Check if anything using that cacheKey is already in the cache.
/// This will automatically add the cached items to the Alfred feedback.
final AlfredItems? cachedItems = await workflow.getItems();

/// If noting was cached simply do as before
if (cachedItems == null) {
final Uri url = Uri.https('www.google.com', '/search', {'q': query});

/// This will now automatically add the AlfredItem to the cache.
workflow.addItem(
AlfredItem(
title: 'Sorry I can\'t help you with that query.',
subtitle: 'Shall I try and search Google?',
arg: url.toString(),
text: AlfredItemText(
copy: url.toString(),
),
quickLookUrl: url.toString(),
icon: AlfredItemIcon(path: 'google.png'),
valid: true,
),
);
}
copied to clipboard
Check out the caching example here.
🔧 Workflow Configuration #
This library supports new Workflow Configuration added in Alfred 5.

Workflow Configuration defaults are stored in info.plist, but changed values are saved to prefs.plist.
Add the latter to your .gitignore so as to not commit your personal configuration to version control.

You can access the user defaults like this:
final Map<String, AlfredUserConfiguration>? userDefaults = await workflow.getUserDefaults();
copied to clipboard
This will return a Map of AlfredUserConfiguration objects keyed by the key you defined in your info.plist.
final AlfredUserConfiguration? defaultCurrencyConfiguration = userDefaults?['default_currency'];
copied to clipboard
You can then access the user set (or default) value of the AlfredUserConfigurationConfig object.
final AlfredUserConfigurationConfig? defaultCurrencyConfigurationConfig = defaultCurrencyConfiguration?.config;
final String? defaultCurrency = defaultCurrencyConfigurationConfig?.value as String?;
copied to clipboard
⬆️ Auto-Update your workflows via GitHub releases #
Setting up Auto-Updating will require that you provide your workflow's Github repository URL and version.
Optionally you can set an interval how frequently the workflow should check for updates.
Once an update is found it's downloaded to the temp and opened.
final AlfredUpdater updater = AlfredUpdater(
/// Declare your workflow's Github repository URL
githubRepositoryUrl: Uri.parse('https://github.com/your/repo'),
/// Declare your workflow's current working version
currentVersion: '1.0.0',
/// Optionally set an interval how frequently it should check for updates
updateInterval: Duration(days: 7),
);

/// Check for updates
if (await updater.updateAvailable()) {
/// Run the update
await updater.update();
}
copied to clipboard
To update the workflow simply run this from the commandline:
dart run example.dart --update
copied to clipboard
Check out the auto-update example here.
🚀 Building the workflow for production #
Dart scripts can be easily compiled to standalone executables eliminating the need for any external prerequisites.
To compile the script above simply run this from the commandline:
dart compile exe example.dart --output example
copied to clipboard
You can then invoke the executable from the commandline:
./example --query 'hello'
copied to clipboard
📄 Signing and notarizing the compiled binary before distribution #
Signing on macOS became available with Dart 2.17.
If you want to distribute your compiled Mach-O binary you should sign and notarize it with Apple.
Use the bash script below as a template to help you with this process.
#!/usr/bin/env bash

# This script should be a starting point to help you sign and notarise a Mach-O binary app.
# Read it carefully and replace any placeholders with actual data.

# Sign the compiled binary
codesign \
--sign="XXXX" \ # replace with hash of "Developer ID Application: Your name (Your Team)"
--identifier="com.example.test" \ # replace with app's bundle id
--deep \
--force \
--options=runtime \
--entitlement="./entitlements.plist" \ # must allow com.apple.security.cs.allow-unsigned-executable-memory
--timestamp \
--verbose=4 \
./path/to/compiled/exe

# Verify the signed binary
codesign -dv --verbose=4 ./path/to/compiled/exe

# ZIP the binary because altool won't accept a raw Mach-O binary
zip -j ./path/to/compiled/exe.zip ./path/to/compiled/exe

# Notarize the binary in ZIP form
# For more info refer to https://developer.apple.com/documentation/security/notarizing_macos_software_before_distribution/customizing_the_notarization_workflow#3087734
xcrun notarytool \
submit path/to/compiled/exe.zip \
--keychain-profile "notarytool-password" \ # replace with an app specific password https://support.apple.com/en-us/HT204397
--wait

# Delete zip file as it's no longer needed at this point
# Apple will notarize the Mach-O binary inside the ZIP
rm ./path/to/compiled/exe.zip

# Wait a while then verify your Mach-O binary
spctl -a -vvv -t install ./path/to/compiled/exe

# In case you encountered an error run and check the output
xcrun altool \
--notarization-info "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" \ # the UUID altool gave you
--username "john.appleseed@apple.com" \ # Apple ID username
--password "@keychain:Developer-altool" # same app-specific password
copied to clipboard
Fore more info please refer to the Apple Code Signing guide as well
as to this exhaustive StackOverflow answer.
🌱 A couple of my Alfred Workflows built using this library #

alfred-flutter-docs
alfred-dart-docs
alfred-react-docs
alfred-vue-docs
alfred-tailwindcss-docs
alfred-django-docs
alfred-flask-docs
alfred-laravel-docs
alfred-nova-docs
alfred-cakephp-docs
alfred-gitmoji
alfred-stackoverflow
alfred-convert

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.