This file is indexed.

/usr/share/weechat/python/giphy.py is in weechat-scripts 20180330-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
# -*- coding: utf-8 -*-
#
# Insert a giphy URL based on a command and search
# Use giphys random, search and translate from weechat
# Usage: /giphy search Search Term
# Usage: /giphy msg message
# Usage: /giphy random Search Term
# Usage: /gipgy Search Term
#
# History:
#
# 2017-04-19, butlerx
#   Version 1.0.1: remove + from message
# 2017-04-18, butlerx
#   Version 1.0.0: initial version
#

import requests
import weechat

SCRIPT_NAME = "giphy"
SCRIPT_AUTHOR = "butlerx <butlerx@redbrick.dcu.ie>"
SCRIPT_VERSION = "1.0.1"
SCRIPT_LICENSE = "GPL3"
SCRIPT_DESC = "Insert giphy gif"

URL = "http://api.giphy.com/v1/gifs/"
API = "&api_key=dc6zaTOxFJmzC"
RANDOM = "random?tag=%s"
TRANSLATE = "translate?s=%s"
SEARCH = "search?limit=1&q=%s"


def giphy(data, buf, args):
    """ Parse args to decide what api to use """
    search_string = args.split()
    arg = search_string.pop(0)
    search_string = "+".join(search_string)
    if arg == "search":
        image_url = search(URL + SEARCH + API, search_string)
    elif arg == "msg":
        image_url = translate(URL + TRANSLATE + API, search_string)
    elif arg == "random":
        image_url = random(URL + RANDOM + API, search_string)
    else:
        search_string = arg + "+" + search_string
        image_url = random(URL + RANDOM + API, search_string)
    weechat.command(buf, "giphy %s -- %s" %
                    (search_string.replace("+", " ").strip(), image_url))
    return weechat.WEECHAT_RC_OK


def translate(api, search_term):
    """Query giphy translate api for search"""
    response = requests.get(api % search_term)
    data = response.json()
    try:
        # Translate
        image_url = data["data"]["images"]["original"]["url"]
    except TypeError:
        image_url = "No GIF good enough"
    return image_url


def random(api, search_term):
    """Query giphy random api for search"""
    response = requests.get(api % search_term)
    data = response.json()
    try:
        # Random
        image_url = data["data"]["image_url"]
    except TypeError:
        image_url = "No GIF good enough"
    return image_url


def search(api, search_term):
    """Query giphy search api for search"""
    response = requests.get(api % search_term)
    data = response.json()
    try:
        image_url = data["data"][0]["images"]["original"]["url"]
    except TypeError:
        image_url = "No GIF good enough"
    return image_url


if __name__ == "__main__":
    if weechat.register(SCRIPT_NAME, SCRIPT_AUTHOR, SCRIPT_VERSION,
                        SCRIPT_LICENSE, SCRIPT_DESC, "", ""):
        weechat.hook_command("giphy", "Insert a giphy GIF", "",
                             "", "", "giphy", "")