Module: DiscourseApi::API::Categories

Included in:
Client
Defined in:
lib/discourse_api/api/categories.rb

Instance Method Summary collapse

Instance Method Details

#categories(params = {}) ⇒ Object



81
82
83
# File 'lib/discourse_api/api/categories.rb', line 81

def categories(params = {})
  categories_full(params)["category_list"]["categories"]
end

#categories_full(params = {}) ⇒ Object



85
86
87
88
# File 'lib/discourse_api/api/categories.rb', line 85

def categories_full(params = {})
  response = get("/categories.json", params)
  response[:body]
end

#category(id) ⇒ Object



131
132
133
134
# File 'lib/discourse_api/api/categories.rb', line 131

def category(id)
  response = get("/c/#{id}/show")
  response[:body]["category"]
end

#category_latest_topics(args = {}) ⇒ Object



90
91
92
93
94
95
96
97
# File 'lib/discourse_api/api/categories.rb', line 90

def category_latest_topics(args = {})
  response = category_latest_topics_full(args)
  if response["errors"]
    response["errors"]
  else
    response["topic_list"]["topics"]
  end
end

#category_latest_topics_full(args = {}) ⇒ Object



99
100
101
102
103
104
105
# File 'lib/discourse_api/api/categories.rb', line 99

def category_latest_topics_full(args = {})
  params = API.params(args).required(:category_slug).optional(:page).to_h
  url = "/c/#{params[:category_slug]}/l/latest.json"
  url = "#{url}?page=#{params[:page]}" if params.include?(:page)
  response = get(url)
  response[:body]
end

#category_new_topics(category_slug) ⇒ Object



121
122
123
124
# File 'lib/discourse_api/api/categories.rb', line 121

def category_new_topics(category_slug)
  response = category_new_topics_full(category_slug)
  response["topic_list"]["topics"]
end

#category_new_topics_full(category_slug) ⇒ Object



126
127
128
129
# File 'lib/discourse_api/api/categories.rb', line 126

def category_new_topics_full(category_slug)
  response = get("/c/#{category_slug}/l/new.json")
  response[:body]
end

#category_set_user_notification(args = {}) ⇒ Object

TODO: Deprecated. Remove after 20210727



137
138
139
140
141
# File 'lib/discourse_api/api/categories.rb', line 137

def category_set_user_notification(args = {})
  category_id = args[:id]
  args = API.params(args).required(:notification_level)
  post("/category/#{category_id}/notifications", args)
end

#category_set_user_notification_level(category_id, params) ⇒ Object



143
144
145
146
# File 'lib/discourse_api/api/categories.rb', line 143

def category_set_user_notification_level(category_id, params)
  params = API.params(params).required(:notification_level)
  post("/category/#{category_id}/notifications", params)
end

#category_top_topics(category_slug) ⇒ Object



107
108
109
110
111
112
113
114
# File 'lib/discourse_api/api/categories.rb', line 107

def category_top_topics(category_slug)
  response = category_top_topics_full(category_slug)
  if response["errors"]
    response["errors"]
  else
    response["topic_list"]["topics"]
  end
end

#category_top_topics_full(category_slug) ⇒ Object



116
117
118
119
# File 'lib/discourse_api/api/categories.rb', line 116

def category_top_topics_full(category_slug)
  response = get("/c/#{category_slug}/l/top.json")
  response[:body]
end

#create_category(args = {}) ⇒ Object

:color and :text_color are RGB hexadecimal strings :permissions is a hash with the group name and permission_type which is an integer 1 = Full 2 = Create Post 3 = Read Only



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
# File 'lib/discourse_api/api/categories.rb', line 8

def create_category(args = {})
  args =
    API
      .params(args)
      .required(:name, :color, :text_color)
      .optional(
        :slug,
        :permissions,
        :auto_close_hours,
        :auto_close_based_on_last_post,
        :position,
        :email_in,
        :email_in_allow_strangers,
        :logo_url,
        :background_url,
        :allow_badges,
        :topic_template,
        :custom_fields,
        :description,
        :reviewable_by_group_name,
        :show_subcategory_list,
        :subcategory_list_style,
        :allowed_tags,
        :allowed_tag_groups,
        :required_tag_group_name,
      )
      .default(parent_category_id: nil)
  response = post("/categories", args)
  response["category"]
end

#delete_category(id) ⇒ Object



76
77
78
79
# File 'lib/discourse_api/api/categories.rb', line 76

def delete_category(id)
  response = delete("/categories/#{id}")
  response[:body]["success"]
end

#reorder_categories(args = {}) ⇒ Object



71
72
73
74
# File 'lib/discourse_api/api/categories.rb', line 71

def reorder_categories(args = {})
  params = API.params(args).required(:mapping)
  post("/categories/reorder", params)
end

#update_category(args = {}) ⇒ Object



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
# File 'lib/discourse_api/api/categories.rb', line 39

def update_category(args = {})
  category_id = args[:id]
  args =
    API
      .params(args)
      .required(:id, :name, :color, :text_color)
      .optional(
        :slug,
        :permissions,
        :auto_close_hours,
        :auto_close_based_on_last_post,
        :position,
        :email_in,
        :email_in_allow_strangers,
        :logo_url,
        :background_url,
        :allow_badges,
        :topic_template,
        :custom_fields,
        :description,
        :reviewable_by_group_name,
        :show_subcategory_list,
        :subcategory_list_style,
        :allowed_tags,
        :allowed_tag_groups,
        :required_tag_group_name,
      )
      .default(parent_category_id: nil)
  response = put("/categories/#{category_id}", args)
  response["body"]["category"] if response["body"]
end