Class: Discordrb::Attachment

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

Overview

An attachment to a message

Instance Attribute Summary collapse

Attributes included from IDObject

#id

Instance Method Summary collapse

Methods included from IDObject

#==, #creation_time, synthesise

Instance Attribute Details

#filenameString (readonly)

Returns the attachment's filename.

Returns:

  • (String)

    the attachment's filename.



2361
2362
2363
# File 'lib/discordrb/data.rb', line 2361

def filename
  @filename
end

#heightInteger? (readonly)

Returns the height of an image file, in pixels, or nil if the file is not an image.

Returns:

  • (Integer, nil)

    the height of an image file, in pixels, or nil if the file is not an image.



2370
2371
2372
# File 'lib/discordrb/data.rb', line 2370

def height
  @height
end

#messageMessage (readonly)

Returns the message this attachment belongs to.

Returns:

  • (Message)

    the message this attachment belongs to.



2351
2352
2353
# File 'lib/discordrb/data.rb', line 2351

def message
  @message
end

#proxy_urlString (readonly)

Returns the attachment's proxy URL - I'm not sure what exactly this does, but I think it has something to do with CDNs.

Returns:

  • (String)

    the attachment's proxy URL - I'm not sure what exactly this does, but I think it has something to do with CDNs.



2358
2359
2360
# File 'lib/discordrb/data.rb', line 2358

def proxy_url
  @proxy_url
end

#sizeInteger (readonly)

Returns the attachment's file size in bytes.

Returns:

  • (Integer)

    the attachment's file size in bytes.



2364
2365
2366
# File 'lib/discordrb/data.rb', line 2364

def size
  @size
end

#urlString (readonly)

Returns the CDN URL this attachment can be downloaded at.

Returns:

  • (String)

    the CDN URL this attachment can be downloaded at.



2354
2355
2356
# File 'lib/discordrb/data.rb', line 2354

def url
  @url
end

#widthInteger? (readonly)

Returns the width of an image file, in pixels, or nil if the file is not an image.

Returns:

  • (Integer, nil)

    the width of an image file, in pixels, or nil if the file is not an image.



2367
2368
2369
# File 'lib/discordrb/data.rb', line 2367

def width
  @width
end

Instance Method Details

#image?true, false

Returns whether this file is an image file.

Returns:

  • (true, false)

    whether this file is an image file.



2389
2390
2391
# File 'lib/discordrb/data.rb', line 2389

def image?
  !(@width.nil? || @height.nil?)
end