Class: Consent::Subject

Inherits:
Object
  • Object
show all
Defined in:
lib/consent/subject.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key, label) ⇒ Subject

Returns a new instance of Subject.



7
8
9
10
11
12
# File 'lib/consent/subject.rb', line 7

def initialize(key, label)
  @key = key
  @label = label
  @actions = []
  @views = Consent.default_views.clone
end

Instance Attribute Details

#actionsObject (readonly)

Returns the value of attribute actions.



5
6
7
# File 'lib/consent/subject.rb', line 5

def actions
  @actions
end

#keyObject (readonly)

Returns the value of attribute key.



5
6
7
# File 'lib/consent/subject.rb', line 5

def key
  @key
end

#labelObject (readonly)

Returns the value of attribute label.



5
6
7
# File 'lib/consent/subject.rb', line 5

def label
  @label
end

#viewsObject (readonly)

Returns the value of attribute views.



5
6
7
# File 'lib/consent/subject.rb', line 5

def views
  @views
end

Instance Method Details

#<=>(other) ⇒ Object



25
26
27
28
29
# File 'lib/consent/subject.rb', line 25

def <=>(other)
  key = Consent::SubjectCoder.dump(key)
  other_key = Consent::SubjectCoder.dump(other.key)
  key <=> other_key
end

#to_permission_payloadObject



14
15
16
17
18
19
20
21
22
23
# File 'lib/consent/subject.rb', line 14

def to_permission_payload
  actions = self.actions.sort
  views = self.views.values.sort
  {
    subject: key,
    label: label,
    actions: actions.map(&:to_permission_payload),
    views: views.map(&:to_permission_payload),
  }
end