2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/guix-cuirass.git synced 2023-12-14 06:03:04 +01:00
guix-cuirass/src/cuirass/mastodon.scm
Mathieu Othacehe 342c5edfe8
Use parameters for the Mastodon crendentials.
* src/cuirass/parameters.scm (%mastodon-instance-name, %mastodon-instance-url,
%mastodon-instance-token): New variables.
* src/cuirass/mastodon.scm (send-status): Remove "instance-name",
"instance-url" and "instance-token" parameters.
* src/cuirass/notification (notification-mastodon): Adapt accordingly.
2021-02-22 10:15:58 +01:00

32 lines
1.3 KiB
Scheme

;;; mastodon.scm -- Send new statuses.
;;; Copyright © 2021 Mathieu Othacehe <othacehe@gnu.org>
;;;
;;; This file is part of Cuirass.
;;;
;;; GNU Guix 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.
;;;
;;; GNU Guix 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 GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (cuirass mastodon)
#:use-module (cuirass parameters)
#:use-module (mastodon)
#:use-module (mastodon types)
#:export (send-status))
(define (send-status text)
"Send a new status with the given TEXT to the instance named INSTANCE-NAME
at the INSTANCE-URL address. Use the given INSTANCE-TOKEN to authenticate."
(let ((instance (make-mastodon (%mastodon-instance-name)
(%mastodon-instance-url)
(%mastodon-instance-token))))
(new-status instance #:status text)))