aboutsummaryrefslogtreecommitdiff
path: root/lib/zendex/user.ex
blob: 9112b7fa2b3d5feb89ebe573625c027dcfe75300 (plain)
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
167
168
169
170
171
172
173
174
175
defmodule Zendex.User do
  @moduledoc """
  Interact with Zendesk user.
  """

  alias Zendex.CommonHelpers

  @url "/api/v2/users"
  @http_client Application.get_env(:zendex, :http_client)

  @doc """
  List all users.
  """
  @spec list(Zendex.Connection.t) :: map
  def list(connection) do
    "#{connection.base_url}#{@url}.json"
    |> @http_client.get!(CommonHelpers.get_headers(connection.authentication))
    |> CommonHelpers.decode_response
  end

  @doc """
  Show a specific user, given their id.

  ## Examples

      iex> conn = Zendex.Connection.setup("http://test.zendesk.com", "ZendeskUser", "Password1")
      %{authentication: "WmVuZGVza1VzZXI6UGFzc3dvcmQx", base_url: "http://test.zendesk.com"}
      iex> Zendex.User.show(conn, 295204)
      %{"user" => %{"ticket_restriction" => nil,
                    "chat_only" => false,
                    "shared_phone_number" => nil,
                    "notes" => "",
                    "phone" => nil,
                    "organization_id" => 11129520411,
                    "last_login_at" => "2016-10-28T21:08:23Z",
                    "moderator" => true,
                    "shared" => false,
                    "id" => 295204,
                    "role" => "admin",
                    "external_id" => nil,
                    "shared_agent" => false,
                    "photo" => nil,
                    "verified" => true,
                    "active" => true,
                    "locale_id" => 1,
                    "suspended" => false,
                    "created_at" => "2015-05-28T09:12:45Z",
                    "name" => "Nikolao Aikema",
                    "restricted_agent" => false,
                    "locale" => "en-US",
                    "details" => "",
                    "alias" => nil,
                    "url" => "https://test.zendesk.com/api/v2/users/295204.json",
                    "custom_role_id" => nil,
                    "email" => "nikolao.aikema@test.com",
                    "signature" => nil,
                    "two_factor_auth_enabled" => nil,
                    "time_zone" => "London",
                    "only_private_comments" => false,
                    "user_fields" => %{"customer_complaint" => nil},
                    "tags" => [],
                    "updated_at" => "2016-10-28T21:08:23Z"}}

  """
  @spec show(Zendex.Connection.t, integer) :: map
  def show(connection, id) do
    "#{connection.base_url}#{@url}/#{id}.json"
    |> @http_client.get!(CommonHelpers.get_headers(connection.authentication))
    |> CommonHelpers.decode_response
  end

  @doc """
  Show many user, given their ids.
  """
  @spec show_many(Zendex.Connection.t, [integer]) :: map
  def show_many(connection, ids) do
    ids = Enum.join(ids, ",")

    "#{connection.base_url}#{@url}/show_many.json?ids=#{ids}"
    |> @http_client.get!(CommonHelpers.get_headers(connection.authentication))
    |> CommonHelpers.decode_response
  end

  @doc """
  Show information relating to the user, example: number of assigned tickets.

  ## Examples

      iex> conn = Zendex.Connection.setup("http://test.zendesk.com", "ZendeskUser", "Password1")
      %{authentication: "WmVuZGVza1VzZXI6UGFzc3dvcmQx", base_url: "http://test.zendesk.com"}
      iex> Zendex.User.related_information(conn, 649267)
      %{"user_related" => %{"assigned_tickets" => 12,
                            "ccd_tickets" => 5,
                            "entry_subscriptions" => 1,
                            "forum_subscriptions" => 3,
                            "organization_subscriptions" => 1,
                            "requested_tickets" => 7,
                            "subscriptions" => 6,
                            "topic_comments" => 116,
                            "topics" => 5,
                            "votes" => 2001}}

  """
  @spec related_information(Zendex.Connection.t, integer) :: map
  def related_information(connection, id) do
    "#{connection.base_url}#{@url}/#{id}/related.json"
    |> @http_client.get!(CommonHelpers.get_headers(connection.authentication))
    |> CommonHelpers.decode_response
  end

  @doc """
  Create a new user.
  """
  @spec create(Zendex.Connection.t, map) :: map
  def create(connection, user) do
    "#{connection.base_url}#{@url}.json"
    |> @http_client.post!(Poison.encode!(user),
                          CommonHelpers.get_headers(connection.authentication,
                                                    %{content_type: :json}))
    |> CommonHelpers.decode_response
  end

  @doc """
  Delete a user.

  ## Examples

      iex> conn = Zendex.Connection.setup("http://test.zendesk.com", "ZendeskUser", "Password1")
      %{authentication: "WmVuZGVza1VzZXI6UGFzc3dvcmQx", base_url: "http://test.zendesk.com"}
      iex> Zendex.User.delete(conn, 49043)
      %{"user" => %{"ticket_restriction" => nil,
                    "chat_only" => false,
                    "shared_phone_number" => nil,
                    "notes" => "",
                    "phone" => nil,
                    "organization_id" => 149043,
                    "last_login_at" => "2016-10-28T21:08:23Z",
                    "moderator" => true,
                    "shared" => false,
                    "id" => 49043,
                    "role" => "admin",
                    "external_id" => nil,
                    "shared_agent" => false,
                    "photo" => nil,
                    "verified" => true,
                    "active" => false,
                    "locale_id" => 1,
                    "suspended" => false,
                    "created_at" => "2015-05-28T09:12:45Z",
                    "name" => "Rian Hawkins",
                    "restricted_agent" => false,
                    "locale" => "en-US",
                    "details" => "",
                    "alias" => nil,
                    "url" => "https://test.zendesk.com/api/v2/users/49043.json",
                    "custom_role_id" => nil,
                    "email" => "rian.hawkins@test.com",
                    "signature" => nil,
                    "two_factor_auth_enabled" => nil,
                    "time_zone" => "London",
                    "only_private_comments" => false,
                    "user_fields" => %{"customer_complaint" => nil},
                    "tags" => [],
                    "updated_at" => "2016-10-28T21:08:23Z"}}


  """
  @spec show(Zendex.Connection.t, integer) :: map
  def delete(connection, id) do
    "#{connection.base_url}#{@url}/#{id}.json"
    |> @http_client.delete!(CommonHelpers.get_headers(connection.authentication))
    |> CommonHelpers.decode_response
  end

end