Module: ChatWork::Room

Extended by:
EntityMethods
Defined in:
lib/chatwork/room.rb

Class Method Summary collapse

Class Method Details

.create(description: nil, icon_preset: nil, members_admin_ids:, members_member_ids: nil, members_readonly_ids: nil, name:, link: nil, link_code: nil, link_need_acceptance: nil) ⇒ Hashie::Mash

Create a new group chat

Examples:

response format

{
  "room_id": 1234
}

Parameters:

  • description (String) (defaults to: nil)

    Description of the group chat

  • icon_preset (String) (defaults to: nil)

    Type of the group chat icon (group, check, document, meeting, event, project, business, study, security, star, idea, heart, magcup, beer, music, sports, travel)

  • members_admin_ids (Array<Integer>, String)

    List of user IDs who will be given administrator permission for the group chat. At least one user must be specified as an administrator.

  • members_member_ids (Array<Integer>, String) (defaults to: nil)

    List of user IDs who will be given member permission for the group chat.

  • members_readonly_ids (Array<Integer>, String) (defaults to: nil)

    List of user IDs who will be given read-only permission for the group chat.

  • name (String)

    Title of the group chat.

  • link (Boolean) (defaults to: nil)

    whether create invitation link

  • link_code (String) (defaults to: nil)

    link path (default. random string)

  • link_need_acceptance (Boolean) (defaults to: nil)

    Approval necessity. Whether participation requires administrator approval.

Returns:

  • (Hashie::Mash)

See Also:



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/chatwork/room.rb', line 59

def self.create(description: nil, icon_preset: nil, members_admin_ids:, members_member_ids: nil, members_readonly_ids: nil, name:,
                link: nil, link_code: nil, link_need_acceptance: nil)
  params = {
    description:          description,
    icon_preset:          icon_preset,
    members_admin_ids:    Array(members_admin_ids).join(","),
    name:                 name,
    link:                 boolean_to_integer(link),
    link_need_acceptance: boolean_to_integer(link_need_acceptance),
    link_code:            link_code,
  }
  params[:members_member_ids] = Array(members_member_ids).join(",") if members_member_ids
  params[:members_readonly_ids] = Array(members_readonly_ids).join(",") if members_readonly_ids

  _post("/rooms", params)
end

.destroy(room_id:, action_type:) ⇒ Object

Leave/Delete a group chat

Parameters:

  • room_id (Integer)
  • action_type (String)

    leave from a room or delete a room (leave, delete)

See Also:



136
137
138
# File 'lib/chatwork/room.rb', line 136

def self.destroy(room_id:, action_type:)
  _delete("/rooms/#{room_id}", action_type: action_type)
end

.find(room_id:) ⇒ Hashie::Mash

Get chat name, icon, and Type (my, direct, or group)

Examples:

response format

{
  "room_id": 123,
  "name": "Group Chat Name",
  "type": "group",
  "role": "admin",
  "sticky": false,
  "unread_num": 10,
  "mention_num": 1,
  "mytask_num": 0,
  "message_num": 122,
  "file_num": 10,
  "task_num": 17,
  "icon_path": "https://example.com/ico_group.png",
  "last_update_time": 1298905200,
  "description": "room description text"
}

Parameters:

  • room_id (Integer)

Returns:

  • (Hashie::Mash)

See Also:



104
105
106
# File 'lib/chatwork/room.rb', line 104

def self.find(room_id:)
  _get("/rooms/#{room_id}")
end

.getArray<Hashie::Mash>

Get the list of all chats on your account

Examples:

response format

[
  {
    "room_id": 123,
    "name": "Group Chat Name",
    "type": "group",
    "role": "admin",
    "sticky": false,
    "unread_num": 10,
    "mention_num": 1,
    "mytask_num": 0,
    "message_num": 122,
    "file_num": 10,
    "task_num": 17,
    "icon_path": "https://example.com/ico_group.png",
    "last_update_time": 1298905200
  }
]

Returns:

  • (Array<Hashie::Mash>)

See Also:



30
31
32
# File 'lib/chatwork/room.rb', line 30

def self.get
  _get("/rooms")
end

.update(room_id:, description: nil, icon_preset: nil, name: nil) ⇒ Hashie::Mash

Change the title and icon type of the specified chat

Examples:

response format

{
  "room_id": 1234
}

Parameters:

  • room_id (Integer)
  • description (String) (defaults to: nil)

    Description of the group chat

  • icon_preset (String) (defaults to: nil)

    Type of the group chat icon (group, check, document, meeting, event, project, business, study, security, star, idea, heart, magcup, beer, music, sports, travel)

  • name (String) (defaults to: nil)

    Title of the group chat.

Returns:

  • (Hashie::Mash)

See Also:



125
126
127
# File 'lib/chatwork/room.rb', line 125

def self.update(room_id:, description: nil, icon_preset: nil, name: nil)
  _put("/rooms/#{room_id}", description: description, icon_preset: icon_preset, name: name)
end