;;; mastodon-toot.el --- Minor mode for sending Mastodon toots ;; Copyright (C) 2017 Johnson Denen ;; Author: Johnson Denen ;; Version: 0.6.0 ;; Homepage: https://github.com/jdenen/mastodon.el ;; This file is not part of GNU Emacs. ;; This file is part of mastodon.el. ;; mastodon.el is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; mastodon.el is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with mastodon.el. If not, see . ;;; Commentary: ;; mastodon-toot.el supports POSTing status data to Mastodon. ;;; Code: (require 'mastodon-auth nil t) (defgroup mastodon-toot nil "Capture Mastodon toots." :prefix "mastodon-toot-" :group 'mastodon) (defvar mastodon-toot--reply-to-id nil) (defvar mastodon-toot--content-warning nil) (defun mastodon-toot--action-success (marker &optional rm) "Insert MARKER with 'success face in byline. Remove MARKER if RM is non-nil." (let ((inhibit-read-only t) (bol (progn (move-beginning-of-line '()) (point))) (eol (progn (move-end-of-line '()) (point)))) (when rm (replace-regexp (format "(%s) " marker) "" '() bol eol)) (move-beginning-of-line '()) (mastodon-tl--goto-next-toot) (unless rm (insert (format "(%s) " (propertize marker 'face 'success)))))) (defun mastodon-toot--action (action callback) "Take ACTION on toot at point, then execute CALLBACK." (let* ((id (mastodon-tl--property 'toot-id)) (url (mastodon-http--api (concat "statuses/" (number-to-string id) "/" action)))) (let ((response (mastodon-http--post url nil nil))) (mastodon-http--triage response callback)))) (defun mastodon-toot--toggle-favourite (faved) "Favourite/unfavourite toot based on current state. If FAVED is nil, favourite the toot. If FAVED is non-nil, unfavourite the toot." (interactive) (let ((action (if faved "unfavourite" "favourite")) (remove (when faved t)) (id (mastodon-tl--property 'toot-id))) (mastodon-toot--action action (lambda () (mastodon-toot--action-success "F" remove))) (message (format "%sd #%s" action id)))) (defun mastodon-toot--kill () "Kill `mastodon-toot-mode' buffer and window. Set `mastodon-toot--reply-to-id' to nil. Set `mastodon-toot--content-warning' to nil." (kill-buffer-and-window) (setq mastodon-toot--reply-to-id nil mastodon-toot--content-warning nil)) (defun mastodon-toot--cancel () "Kill new-toot buffer/window. Does not POST content to Mastodon." (interactive) (mastodon-toot--kill)) (defun mastodon-toot--send () "Kill new-toot buffer/window and POST contents to the Mastodon instance." (interactive) (let* ((toot (buffer-string)) (endpoint (mastodon-http--api "statuses")) (spoiler (when mastodon-toot--content-warning (read-string "Warning: "))) (args `(("status" . ,toot) ("in_reply_to_id" . ,mastodon-toot--reply-to-id) ("sensitive" . ,(when mastodon-toot--content-warning (symbol-name t))) ("spoiler_text" . ,spoiler)))) (progn (mastodon-toot--kill) (let ((response (mastodon-http--post endpoint args nil))) (mastodon-http--triage response (lambda () (message "Toot toot!"))))))) (defun mastodon-toot--boost () "Boost toot at `point'." (interactive) (let ((callback (lambda () (mastodon-toot--action-success "B"))) (id (mastodon-tl--property 'toot-id))) (mastodon-toot--action "reblog" callback) (message (format "Boosted #%s" id)))) (defun mastodon-toot--reply () "Reply to toot at `point'." (interactive) (let* ((toot (mastodon-tl--property 'toot-json)) (id (number-to-string (mastodon-tl--field 'id toot))) (account (mastodon-tl--field 'account toot)) (user (cdr (assoc 'username account)))) (mastodon-toot user id))) (defun mastodon-toot--toggle-warning () "Toggle `mastodon-toot--content-warning'." (interactive) (setq mastodon-toot--content-warning (not mastodon-toot--content-warning))) (defvar mastodon-toot-mode-map (let ((map (make-sparse-keymap))) (define-key map (kbd "C-c C-c") #'mastodon-toot--send) (define-key map (kbd "C-c C-k") #'mastodon-toot--cancel) (define-key map (kbd "C-c C-w") #'mastodon-toot--toggle-warning) map) "Keymap for `mastodon-toot'.") (define-minor-mode mastodon-toot-mode "Minor mode to capture Mastodon toots." :group 'mastodon-toot :keymap mastodon-toot-mode-map :global nil) (provide 'mastodon-toot) ;;; mastodon-toot.el ends here