Class: Redwood::Chunk::CryptoNotice

Inherits:
Object
  • Object
show all
Defined in:
lib/sup/message_chunks.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status, description, lines = [], unknown_fingerprint = nil) ⇒ CryptoNotice

Returns a new instance of CryptoNotice.



321
322
323
324
325
326
# File 'lib/sup/message_chunks.rb', line 321

def initialize status, description, lines=[], unknown_fingerprint=nil
  @status = status
  @patina_text = description
  @lines = lines
  @unknown_fingerprint = unknown_fingerprint
end

Instance Attribute Details

#linesObject (readonly)

Returns the value of attribute lines.



319
320
321
# File 'lib/sup/message_chunks.rb', line 319

def lines
  @lines
end

#patina_textObject (readonly)

Returns the value of attribute patina_text.



319
320
321
# File 'lib/sup/message_chunks.rb', line 319

def patina_text
  @patina_text
end

#statusObject (readonly)

Returns the value of attribute status.



319
320
321
# File 'lib/sup/message_chunks.rb', line 319

def status
  @status
end

#unknown_fingerprintObject (readonly)

Returns the value of attribute unknown_fingerprint.



319
320
321
# File 'lib/sup/message_chunks.rb', line 319

def unknown_fingerprint
  @unknown_fingerprint
end

Instance Method Details

#colorObject



336
# File 'lib/sup/message_chunks.rb', line 336

def color; patina_color end

#expandable?Boolean

Returns:

  • (Boolean)


340
# File 'lib/sup/message_chunks.rb', line 340

def expandable?; !@lines.empty? end

#indexable?Boolean

Returns:

  • (Boolean)


341
# File 'lib/sup/message_chunks.rb', line 341

def indexable?; false end

#inlineable?Boolean

Returns:

  • (Boolean)


338
# File 'lib/sup/message_chunks.rb', line 338

def inlineable?; false end

#patina_colorObject



328
329
330
331
332
333
334
335
# File 'lib/sup/message_chunks.rb', line 328

def patina_color
  case status
  when :valid then :cryptosig_valid_color
  when :valid_untrusted then :cryptosig_valid_untrusted_color
  when :invalid then :cryptosig_invalid_color
  else :cryptosig_unknown_color
  end
end

#quotable?Boolean

Returns:

  • (Boolean)


339
# File 'lib/sup/message_chunks.rb', line 339

def quotable?; false end

#viewable?Boolean

Returns:

  • (Boolean)


342
# File 'lib/sup/message_chunks.rb', line 342

def viewable?; false end