Class: Discordrb::Integration

Inherits:
Object
  • Object
show all
Includes:
IDObject
Defined in:
lib/discordrb/data/integration.rb

Overview

Server integration

Instance Attribute Summary collapse

Attributes included from IDObject

#id

Instance Method Summary collapse

Methods included from IDObject

#==, #creation_time, synthesise

Constructor Details

#initialize(data, bot, server) ⇒ Integration

Returns a new instance of Integration.



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/discordrb/data/integration.rb', line 60

def initialize(data, bot, server)
  @bot = bot

  @name = data['name']
  @server = server
  @id = data['id'].to_i
  @enabled = data['enabled']
  @syncing = data['syncing']
  @type = data['type']
  @account = IntegrationAccount.new(data['account'])
  @synced_at = Time.parse(data['synced_at'])
  @expire_behaviour = %i[remove kick][data['expire_behavior']]
  @expire_grace_period = data['expire_grace_period']
  @user = @bot.ensure_user(data['user'])
  @role = server.role(data['role_id']) || nil
  @emoticon = data['enable_emoticons']
end

Instance Attribute Details

#accountIntegrationAccount (readonly)

Returns the integration account information.

Returns:



48
49
50
# File 'lib/discordrb/data/integration.rb', line 48

def 
  @account
end

#emoticontrue, false (readonly) Also known as: emoticon?

Returns whether emoticons are enabled.

Returns:

  • (true, false)

    whether emoticons are enabled



35
36
37
# File 'lib/discordrb/data/integration.rb', line 35

def emoticon
  @emoticon
end

#enabledtrue, false (readonly)

Returns whether the integration is enabled.

Returns:

  • (true, false)

    whether the integration is enabled



42
43
44
# File 'lib/discordrb/data/integration.rb', line 42

def enabled
  @enabled
end

#expire_behaviourSymbol (readonly) Also known as: expire_behavior

Returns the behaviour of expiring subscribers (:remove = Remove User from role; :kick = Kick User from server).

Returns:

  • (Symbol)

    the behaviour of expiring subscribers (:remove = Remove User from role; :kick = Kick User from server)



54
55
56
# File 'lib/discordrb/data/integration.rb', line 54

def expire_behaviour
  @expire_behaviour
end

#expire_grace_periodInteger (readonly)

Returns the grace period before subscribers expire (in days).

Returns:

  • (Integer)

    the grace period before subscribers expire (in days)



58
59
60
# File 'lib/discordrb/data/integration.rb', line 58

def expire_grace_period
  @expire_grace_period
end

#nameString (readonly)

Returns the integration name.

Returns:

  • (String)

    the integration name



23
24
25
# File 'lib/discordrb/data/integration.rb', line 23

def name
  @name
end

#roleRole? (readonly)

Returns the role that this integration uses for "subscribers".

Returns:

  • (Role, nil)

    the role that this integration uses for "subscribers"



32
33
34
# File 'lib/discordrb/data/integration.rb', line 32

def role
  @role
end

#serverServer (readonly)

Returns the server the integration is linked to.

Returns:

  • (Server)

    the server the integration is linked to



26
27
28
# File 'lib/discordrb/data/integration.rb', line 26

def server
  @server
end

#synced_atTime (readonly)

Returns the time the integration was synced at.

Returns:

  • (Time)

    the time the integration was synced at



51
52
53
# File 'lib/discordrb/data/integration.rb', line 51

def synced_at
  @synced_at
end

#syncingtrue, false (readonly)

Returns whether the integration is syncing.

Returns:

  • (true, false)

    whether the integration is syncing



45
46
47
# File 'lib/discordrb/data/integration.rb', line 45

def syncing
  @syncing
end

#typeString (readonly)

Returns the integration type (YouTube, Twitch, etc.).

Returns:

  • (String)

    the integration type (YouTube, Twitch, etc.)



39
40
41
# File 'lib/discordrb/data/integration.rb', line 39

def type
  @type
end

#userUser (readonly)

Returns the user the integration is linked to.

Returns:

  • (User)

    the user the integration is linked to



29
30
31
# File 'lib/discordrb/data/integration.rb', line 29

def user
  @user
end

Instance Method Details

#inspectObject

The inspect method is overwritten to give more useful output



79
80
81
# File 'lib/discordrb/data/integration.rb', line 79

def inspect
  "<Integration name=#{@name} id=#{@id} type=#{@type} enabled=#{@enabled}>"
end