summaryrefslogtreecommitdiff
path: root/lib/lsg_irc/last_fm_plugin.ex
blob: 5bf582d80b216d1b5164422aff7fd9f5b946cbf9 (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
defmodule LSG.IRC.LastFmPlugin do
  require Logger

  @moduledoc """
  # last.fm

  * **!lastfm|np `[nick|username]`**
  * **.lastfm|np**
  * **+lastfm, -lastfm `<username last.fm>; ?lastfm`** Configurer un nom d'utilisateur last.fm
  """

  @single_trigger ~w(lastfm np)
  @pubsub_topics ~w(trigger:lastfm trigger:np)

  defstruct dets: nil

  def irc_doc, do: @moduledoc

  def start_link() do
    GenServer.start_link(__MODULE__, [], name: __MODULE__)
  end

  def init([]) do
    regopts = [type: __MODULE__]
    for t <- @pubsub_topics, do: {:ok, _} = Registry.register(IRC.PubSub, t, type: __MODULE__)
    dets_filename = (LSG.data_path() <> "/" <> "lastfm.dets") |> String.to_charlist
    {:ok, dets} = :dets.open_file(dets_filename, [])
    {:ok, %__MODULE__{dets: dets}}
  end

  def handle_info({:irc, :trigger, "lastfm", message = %{trigger: %{type: :plus, args: [username]}}}, state) do
    username = String.strip(username)
    :ok = :dets.insert(state.dets, {message.account.id, username})
    message.replyfun.("#{message.sender.nick}: nom d'utilisateur last.fm configuré: \"#{username}\".")
    {:noreply, state}
  end

  def handle_info({:irc, :trigger, "lastfm", message = %{trigger: %{type: :minus, args: []}}}, state) do
    text = case :dets.lookup(state.dets, message.account.id) do
             [{_nick, _username}] ->
               :dets.delete(state.dets, message.account.id)
               message.replyfun.("#{message.sender.nick}: nom d'utilisateur last.fm enlevé.")
             _ -> nil
           end
    {:noreply, state}
  end

  def handle_info({:irc, :trigger, "lastfm", message = %{trigger: %{type: :query, args: []}}}, state) do
    text = case :dets.lookup(state.dets, message.account.id) do
      [{_nick, username}] ->
        message.replyfun.("#{message.sender.nick}: #{username}.")
      _ -> nil
    end
    {:noreply, state}
  end

  def handle_info({:irc, :trigger, _, message = %{trigger: %{type: :bang, args: []}}}, state) do
    irc_now_playing(message.account.id, message, state)
    {:noreply, state}
  end

  def handle_info({:irc, :trigger, _, message = %{trigger: %{type: :bang, args: [nick_or_user]}}}, state) do
    irc_now_playing(nick_or_user, message, state)
    {:noreply, state}
  end

  def handle_info({:irc, :trigger, _, message = %{trigger: %{type: :dot}}}, state) do
    members = IRC.Membership.members(message.network, message.channel)
    foldfun = fn({nick, user}, acc) -> [{nick,user}|acc] end
    usernames = :dets.foldl(foldfun, [], state.dets)
                |> Enum.uniq()
                |> Enum.filter(fn({acct,_}) -> Enum.member?(members, acct) end)
                |> Enum.map(fn({_, u}) -> u end)
    for u <- usernames, do: irc_now_playing(u, message, state)
    {:noreply, state}
  end

  def handle_info(info, state) do
    {:noreply, state}
  end

  def terminate(_reason, state) do
    if state.dets do
      :dets.sync(state.dets)
      :dets.close(state.dets)
    end
    :ok
  end

  defp irc_now_playing(nick_or_user, message, state) do
    nick_or_user = String.strip(nick_or_user)
    id_or_user = if account = IRC.Account.find_always_by_nick(message.network, message.channel, nick_or_user) do
      account.id
    else
      nick_or_user
    end

    username = case :dets.lookup(state.dets, id_or_user) do
      [{_, username}] -> username
      _ -> id_or_user
    end

    case now_playing(username) do
      {:error, text} when is_binary(text) ->
        message.replyfun.(text)
      {:ok, map} when is_map(map) ->
        text = format_now_playing(map)
        user = lookup_nick(username, state)
        if user && text do
          message.replyfun.("#{user} #{text}")
        else
          message.replyfun.("#{username}: pas de résultat")
        end
      other ->
        message.replyfun.("erreur :(")
    end
  end

  defp now_playing(user) do
    api = Application.get_env(:lsg, :lastfm)[:api_key]
    url = "http://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&format=json&limit=1" <> "&api_key=" <> api <> "&user="<> user
    case HTTPoison.get(url) do
      {:ok, %HTTPoison.Response{status_code: 200, body: body}} -> Jason.decode(body)
      {:ok, %HTTPoison.Response{status_code: 400}} -> {:error, "last.fm: utilisateur #{user} inexistant"}
      {:ok, %HTTPoison.Response{status_code: code}} -> {:error, "last.fm: erreur #{to_string(code)}"}
      error ->
        Logger.error "Lastfm http error: #{inspect error}"
        :error
    end
  end

  defp format_now_playing(%{"recenttracks" => %{"track" => [track = %{"@attr" => %{"nowplaying" => "true"}}, _old]}}) do
    format_track(true, track)
  end

  defp format_now_playing(%{"recenttracks" => %{"track" => [track]}}) do
    format_track(false, track)
  end

  defp format_now_playing(%{"error" => err, "message" => message}) do
    "last.fm error #{err}: #{message}"
  end

  defp format_now_playing(miss) do
    nil
  end

  defp format_track(np, track) do
    album = if track["album"]["#text"] do
      " (" <> track["album"]["#text"] <> ")"
    else
      ""
    end
    action = if np, do: "écoute ", else: "a écouté "
    action <> track["artist"]["#text"] <> " - " <> track["name"] <> album <> " — " <> track["url"]
  end

  defp lookup_nick(username, state) do
    case :dets.match(state.dets, {:'$1', username}) do
      [[match]] -> match
      [[match] | _many] -> match
      _ -> username
    end
  end

end