mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:04:03 +08:00
411 lines
14 KiB
Ruby
411 lines
14 KiB
Ruby
# frozen_string_literal: true
|
|
require "swagger_helper"
|
|
|
|
RSpec.describe "private messages" do
|
|
let(:admin) { Fabricate(:admin) }
|
|
|
|
before do
|
|
Jobs.run_immediately!
|
|
sign_in(admin)
|
|
end
|
|
|
|
path "/topics/private-messages/{username}.json" do
|
|
get "Get a list of private messages for a user" do
|
|
tags "Private Messages"
|
|
operationId "listUserPrivateMessages"
|
|
parameter name: :username, in: :path, schema: { type: :string }
|
|
|
|
produces "application/json"
|
|
response "200", "private messages" do
|
|
schema type: :object,
|
|
properties: {
|
|
users: {
|
|
type: :array,
|
|
items: {
|
|
type: :object,
|
|
properties: {
|
|
id: {
|
|
type: :integer,
|
|
},
|
|
username: {
|
|
type: :string,
|
|
},
|
|
name: {
|
|
type: :string,
|
|
},
|
|
avatar_template: {
|
|
type: :string,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
primary_groups: {
|
|
type: :array,
|
|
items: {
|
|
},
|
|
},
|
|
topic_list: {
|
|
type: :object,
|
|
properties: {
|
|
can_create_topic: {
|
|
type: :boolean,
|
|
},
|
|
draft: {
|
|
type: %i[string null],
|
|
},
|
|
draft_key: {
|
|
type: :string,
|
|
},
|
|
draft_sequence: {
|
|
type: :integer,
|
|
},
|
|
per_page: {
|
|
type: :integer,
|
|
},
|
|
topics: {
|
|
type: :array,
|
|
items: {
|
|
type: :object,
|
|
properties: {
|
|
id: {
|
|
type: :integer,
|
|
},
|
|
title: {
|
|
type: :string,
|
|
},
|
|
fancy_title: {
|
|
type: :string,
|
|
},
|
|
slug: {
|
|
type: :string,
|
|
},
|
|
posts_count: {
|
|
type: :integer,
|
|
},
|
|
reply_count: {
|
|
type: :integer,
|
|
},
|
|
highest_post_number: {
|
|
type: :integer,
|
|
},
|
|
image_url: {
|
|
type: %i[string null],
|
|
},
|
|
created_at: {
|
|
type: :string,
|
|
},
|
|
last_posted_at: {
|
|
type: :string,
|
|
},
|
|
bumped: {
|
|
type: :boolean,
|
|
},
|
|
bumped_at: {
|
|
type: :string,
|
|
},
|
|
archetype: {
|
|
type: :string,
|
|
},
|
|
unseen: {
|
|
type: :boolean,
|
|
},
|
|
last_read_post_number: {
|
|
type: :integer,
|
|
},
|
|
unread_posts: {
|
|
type: :integer,
|
|
},
|
|
pinned: {
|
|
type: :boolean,
|
|
},
|
|
unpinned: {
|
|
type: %i[string null],
|
|
},
|
|
visible: {
|
|
type: :boolean,
|
|
},
|
|
closed: {
|
|
type: :boolean,
|
|
},
|
|
archived: {
|
|
type: :boolean,
|
|
},
|
|
notification_level: {
|
|
type: :integer,
|
|
},
|
|
bookmarked: {
|
|
type: :boolean,
|
|
},
|
|
liked: {
|
|
type: :boolean,
|
|
},
|
|
views: {
|
|
type: :integer,
|
|
},
|
|
like_count: {
|
|
type: :integer,
|
|
},
|
|
has_summary: {
|
|
type: :boolean,
|
|
},
|
|
last_poster_username: {
|
|
type: :string,
|
|
},
|
|
category_id: {
|
|
type: %i[string null],
|
|
},
|
|
pinned_globally: {
|
|
type: :boolean,
|
|
},
|
|
featured_link: {
|
|
type: %i[string null],
|
|
},
|
|
allowed_user_count: {
|
|
type: :integer,
|
|
},
|
|
posters: {
|
|
type: :array,
|
|
items: {
|
|
type: :object,
|
|
properties: {
|
|
extras: {
|
|
type: :string,
|
|
},
|
|
description: {
|
|
type: :string,
|
|
},
|
|
user_id: {
|
|
type: :integer,
|
|
},
|
|
primary_group_id: {
|
|
type: %i[string null],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
participants: {
|
|
type: :array,
|
|
items: {
|
|
type: :object,
|
|
properties: {
|
|
extras: {
|
|
type: :string,
|
|
},
|
|
description: {
|
|
type: %i[string null],
|
|
},
|
|
user_id: {
|
|
type: :integer,
|
|
},
|
|
primary_group_id: {
|
|
type: %i[string null],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
let(:username) { Fabricate(:user).username }
|
|
run_test!
|
|
end
|
|
end
|
|
end
|
|
|
|
path "/topics/private-messages-sent/{username}.json" do
|
|
get "Get a list of private messages sent for a user" do
|
|
tags "Private Messages"
|
|
operationId "getUserSentPrivateMessages"
|
|
parameter name: :username, in: :path, schema: { type: :string }
|
|
|
|
produces "application/json"
|
|
response "200", "private messages" do
|
|
schema type: :object,
|
|
properties: {
|
|
users: {
|
|
type: :array,
|
|
items: {
|
|
type: :object,
|
|
properties: {
|
|
id: {
|
|
type: :integer,
|
|
},
|
|
username: {
|
|
type: :string,
|
|
},
|
|
name: {
|
|
type: %i[string null],
|
|
},
|
|
avatar_template: {
|
|
type: :string,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
primary_groups: {
|
|
type: :array,
|
|
items: {
|
|
},
|
|
},
|
|
topic_list: {
|
|
type: :object,
|
|
properties: {
|
|
can_create_topic: {
|
|
type: :boolean,
|
|
},
|
|
draft: {
|
|
type: %i[string null],
|
|
},
|
|
draft_key: {
|
|
type: :string,
|
|
},
|
|
draft_sequence: {
|
|
type: :integer,
|
|
},
|
|
per_page: {
|
|
type: :integer,
|
|
},
|
|
topics: {
|
|
type: :array,
|
|
items: {
|
|
type: :object,
|
|
properties: {
|
|
id: {
|
|
type: :integer,
|
|
},
|
|
title: {
|
|
type: :string,
|
|
},
|
|
fancy_title: {
|
|
type: :string,
|
|
},
|
|
slug: {
|
|
type: :string,
|
|
},
|
|
posts_count: {
|
|
type: :integer,
|
|
},
|
|
reply_count: {
|
|
type: :integer,
|
|
},
|
|
highest_post_number: {
|
|
type: :integer,
|
|
},
|
|
image_url: {
|
|
type: %i[string null],
|
|
},
|
|
created_at: {
|
|
type: :string,
|
|
},
|
|
last_posted_at: {
|
|
type: :string,
|
|
},
|
|
bumped: {
|
|
type: :boolean,
|
|
},
|
|
bumped_at: {
|
|
type: :string,
|
|
},
|
|
archetype: {
|
|
type: :string,
|
|
},
|
|
unseen: {
|
|
type: :boolean,
|
|
},
|
|
last_read_post_number: {
|
|
type: :integer,
|
|
},
|
|
unread_posts: {
|
|
type: :integer,
|
|
},
|
|
pinned: {
|
|
type: :boolean,
|
|
},
|
|
unpinned: {
|
|
type: %i[string null],
|
|
},
|
|
visible: {
|
|
type: :boolean,
|
|
},
|
|
closed: {
|
|
type: :boolean,
|
|
},
|
|
archived: {
|
|
type: :boolean,
|
|
},
|
|
notification_level: {
|
|
type: :integer,
|
|
},
|
|
bookmarked: {
|
|
type: :boolean,
|
|
},
|
|
liked: {
|
|
type: :boolean,
|
|
},
|
|
views: {
|
|
type: :integer,
|
|
},
|
|
like_count: {
|
|
type: :integer,
|
|
},
|
|
has_summary: {
|
|
type: :boolean,
|
|
},
|
|
last_poster_username: {
|
|
type: :string,
|
|
},
|
|
category_id: {
|
|
type: %i[string null],
|
|
},
|
|
pinned_globally: {
|
|
type: :boolean,
|
|
},
|
|
featured_link: {
|
|
type: %i[string null],
|
|
},
|
|
allowed_user_count: {
|
|
type: :integer,
|
|
},
|
|
posters: {
|
|
type: :array,
|
|
items: {
|
|
type: :object,
|
|
properties: {
|
|
extras: {
|
|
type: :string,
|
|
},
|
|
description: {
|
|
type: :string,
|
|
},
|
|
user_id: {
|
|
type: :integer,
|
|
},
|
|
primary_group_id: {
|
|
type: %i[string null],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
participants: {
|
|
type: :array,
|
|
items: {
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
let(:username) { Fabricate(:user).username }
|
|
run_test!
|
|
end
|
|
end
|
|
end
|
|
end
|