docs » Leanpub

Spoon to track and notify about Leanpub builds.

Download: https://github.com/Hammerspoon/Spoons/raw/master/Spoons/Leanpub.spoon.zip

API Overview

API Documentation

Variables

api_key
Signature Leanpub.api_key
Type Variable
Description

String containing the key to use for Leanpub API requests.

Notes
  • Get it from your Leanpub account under the "Author / Your API Key" menu section. No default.
Source Source/Leanpub.spoon/init.lua line 43
books_sync_to_dropbox
Signature Leanpub.books_sync_to_dropbox
Type Variable
Description

Boolean that specifies whether all your books are being synced to Dropbox.

Notes
  • If true, the "Book generation complete" notification will include a "Show" button to open the book's directory in Dropbox.
  • Setting this is equivalent to setting the syncs_to_dropbox attribute for each book in watch_books. Default value: false.
Source Source/Leanpub.spoon/init.lua line 34
check_interval
Signature Leanpub.check_interval
Type Variable
Description

Integer containing the interval (in seconds) at which the book status is checked. Default 5.

Source Source/Leanpub.spoon/init.lua line 51
dropbox_path
Signature Leanpub.dropbox_path
Type Variable
Description

String containing the base Dropbox path to which the books are synced, if the corresponding parameters are set.

Notes
  • If unset, the path is determined automatically by reading the ~/.dropbox/info.json file and choosing the path corresponding to the profile specified in Leanpub.dropbox_profile.
  • If for some reason your synced files are somewhere else, you can store in this variable the final path to use. Most users should be fine with the defaults.
Source Source/Leanpub.spoon/init.lua line 72
dropbox_type
Signature Leanpub.dropbox_type
Type Variable
Description

String containing the name of the Dropbox account type to use for determining the base path of the Dropbox directory.

Notes
  • Valid values are "personal" and "business". See https://help.dropbox.com/installs-integrations/desktop/locate-dropbox-folder for the details.
  • Default value: "personal".
Source Source/Leanpub.spoon/init.lua line 81
fetch_leanpub_covers
Signature Leanpub.fetch_leanpub_covers
Type Variable
Description

Boolean indicating whether we should try to fetch book covers from Leanpub.

Notes
  • Default value: true.
Source Source/Leanpub.spoon/init.lua line 56
logger
Signature Leanpub.logger
Type Variable
Description

Logger object used within the Spoon. Can be accessed to set the default log level for the messages coming from the Spoon.

Source Source/Leanpub.spoon/init.lua line 18
persistent_notification
Signature Leanpub.persistent_notification
Type Variable
Description

Table specifying the Leanpub status for which notifications should not disappear automatically.

Notes
  • The indices correspond to the values of the status field returned by the Leanpub API. Possible values are working and complete. Default { complete = true } to keep the "Book generation complete" messages.
Source Source/Leanpub.spoon/init.lua line 64
watch_books
Signature Leanpub.watch_books
Type Variable
Description

List of books to watch (by default an empty list).

Notes
  • Each element of the list must be a table containing the following keys:
  • slug - the web page "slug" of the book to watch. The slug of a book can be set under the "Book Web Page / Web Page URL" menu section in Leanpub.
  • icon - optional icon to show in the notifications for the book, as an hs.image object. If not specified, and if fetch_leanpub_covers is true, then the icon is generated automatically from the book cover.
  • syncs_to_dropbox - optional boolean to indicate whether the book is configured in Leanpub to sync to Dropbox (you can find this option in your books "Writing mode" screen, as "Send output to Dropbox". If true, the "Book generation complete" notification will include a "Show" button to open the book's directory in Dropbox. If you have multiple books and all of them are synced to Dropbox, you can set the main Leanpub.books_sync_to_dropbox variable instead of setting it for each book. Default value: false
Source Source/Leanpub.spoon/init.lua line 23

Methods

displayAllBookStatus
Signature Leanpub:displayAllBookStatus()
Type Method
Description

Check and display (if needed) the status of all the books in watch_books

Parameters
  • None
Returns
Source Source/Leanpub.spoon/init.lua line 282
displayBookStatus
Signature Leanpub:displayBookStatus(book)
Type Method
Description

Display a notification with the current build status of a book.

Parameters
  • book - table containing the information of the book to check. The table must contain the following fields:
    • slug - URL "slug" of the book to check. The slug is the part of the book URL after https://leanpub.com/.
    • icon - optional icon to show in the notifications for the book, as an hs.image object. If this field is not specified but fetch_leanpub_covers is true (the default value), this method attempts to fetch the book cover from Leanpub. If the cover can be retrieved, it gets stored in the icon field so it doesn't get fetched every time. You can disable cover fetching for individual books by setting this field explicitly to false
Returns
  • A Lua table containing the status (may be empty), nil if an error occurred
Notes
  • Only produce a notification if the current status is different than the last known one (from the last time displayBookStatus was run for the same book).
Source Source/Leanpub.spoon/init.lua line 144
fetchBookCover
Signature Leanpub:fetchBookCover(book)
Type Method
Description

Fetch the cover of a book.

Parameters
  • book - table containing the book information. The icon gets stored in its icon field when it can be fetched.
Returns
  • No return value
Notes
  • Side effects:
  • Stores the icon in the book data structure
Source Source/Leanpub.spoon/init.lua line 240
getBookStatus
Signature Leanpub:getBookStatus(slug, callback)
Type Method
Description

Asynchronously get the status of a book given its slug.

Parameters
  • slug - URL "slug" of the book to check. The slug of a book is the part of the URL for your book after https://leanpub.com/.
  • callback - function to which the book status will be passed when the data is received. This function will be passed a single argument, a table containing the fields returned by the Leanpub API. If the book is not being built at the moment, an empty table is passed. If an error occurs, the value passed will be nil. Samples of the return values can be found at https://leanpub.com/help/api#getting-the-job-status
Returns
  • No return value
Source Source/Leanpub.spoon/init.lua line 107
start
Signature Leanpub:start()
Type Method
Description

Start periodic check for book status, checking every check_interval seconds.

Parameters
  • None
Returns
Source Source/Leanpub.spoon/init.lua line 296
stop
Signature Leanpub:stop()
Type Method
Description

Stops periodic check for book status, if enabled.

Parameters
  • None
Returns
Source Source/Leanpub.spoon/init.lua line 309