aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-media.el
blob: 93ff1b7cc424bf06e57de08d55d050dfe1499a27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
;;; mastodon-media.el --- Functions for inlining Mastodon media  -*- lexical-binding: t -*-

;; Copyright (C) 2017 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
;; Version: 0.6.2
;; 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 <http://www.gnu.org/licenses/>.

;;; Commentary:

;; mastodon-media.el provides functions for inlining media.

;; Known bug gnutls -12 when trying to access images on some systems.
;; It looks like their may be a version mismatch between the encryption
;; required by the server and client.

;;; Code:
(require 'mastodon-http  nil t)
(require 'mastodon)

(defgroup mastodon-media nil
  "Inline Mastadon media."
  :prefix "mastodon-media-"
  :group 'mastodon)

(defvar mastodon-media-show-avatars-p
  (image-type-available-p 'imagemagick)
  "A boolean value stating whether to show avatars in timelines.")

(defun mastodon-media--image-from-url (url media-type)
  "Takes a URL and MEDIA-TYPE and return an image.

MEDIA-TYPE is a symbol and either 'avatar or 'media-link."
  ;; TODO: Cache the avatars 
  (let* ((url-automatic-caching t)
         (buffer (url-retrieve-synchronously url))
         (image-options (when (image-type-available-p 'imagemagick)
                          (case media-type
                            ('avatar `(:height ,mastodon-avatar-height))
                            ('media-link `(:max-height ,mastodon-preview-max-height))))))
    (unwind-protect
        (let ((data (with-current-buffer buffer
                      (goto-char (point-min))
                      (search-forward "\n\n")
                      (buffer-substring (point) (point-max)))))
          (apply #'create-image data (when image-options 'imagemagick)
                 t image-options))
      (kill-buffer buffer))))

(defun mastodon-media--select-next-media-line ()
  "Find coordinates of the next media to load.

Returns the list of (`start' . `end', `media-symbol') points of
that line and string found or nil no more media links were
found."
  (let ((next-pos (point)))
    (while (and (setq next-pos (next-single-property-change next-pos 'media-state))
                (or (not (eq 'needs-loading (get-text-property next-pos 'media-state)))
                    (null (get-text-property next-pos 'media-url))
                    (null (get-text-property next-pos 'media-type))))
      ;; do nothing - the loop will proceed
      )
    (when next-pos
      (case (get-text-property next-pos 'media-type)
        ;; Avatars are just one character in the buffer
        ('avatar (list next-pos (+ next-pos 1) 'avatar))
        ;; Media links are 5 character ("[img]")
        ('media-link (list next-pos (+ next-pos 5) 'media-link))))))

(defun mastodon-media--valid-link-p (link)
  "Checks to make sure that the missing string has

not been returned."
  (let ((missing "/files/small/missing.png"))
    (and link
         (not (equal link missing)))))

(defun mastodon-media--inline-images ()
  "Find all `Media_Links:' in the buffer replacing them with the referenced image."
  (interactive)
  (goto-char (point-min))
  (let (line-details)
    (while (setq line-details (mastodon-media--select-next-media-line))
      (let* ((start (car line-details))
             (end (cadr line-details))
             (media-type (caddr line-details))
             (image-url (get-text-property start 'media-url)))
       
        (if (not (mastodon-media--valid-link-p image-url))
            (put-text-property start end 'media-state 'invalid-url)
          (put-text-property start end 'media-state 'loading)
          (let ((image (mastodon-media--image-from-url image-url media-type)))
            (put-text-property start end 'media-state 'loaded)
            (put-text-property start end
                               'display (or
                                         image
                                         (format "Failed to load %s" image-url)))))))))

(provide 'mastodon-media)
;;; mastodon-media.el ends here