Module: Card::Set::Self::Role

Extended by:
Card::Set
Defined in:
platypus/tmp/set/gem-defaults/mod014-account/self/role.rb

Overview

Set: The card “Role”

Constant Summary collapse

CACHE_KEY =
"ROLEHASH".freeze

Constants included from Helpers

Helpers::SET_PATTERN_TEST_REGEXP

Constants included from Event::Api

Event::Api::OPTIONS

Class Method Summary collapse

Methods included from Card::Set

reset

Methods included from I18nScope

#mod_name, #scope

Methods included from Registrar

#extended, #finalize_load, #process_base_modules, #register_set

Methods included from Helpers

#format_module, #format_modules, #method_missing, #modules, #pattern_code, #respond_to_missing?, #set_name_parts, #shortname, #underscored_name

Methods included from AdvancedApi

#assign_type, #attachment, #define_set_from_error, #ensure_set, #setting_opts, #stage_method

Methods included from Format

#before, #format, layout_method_name, #view, view_method_name, view_setting_method_name, wrapper_method_name

Methods included from Inheritance

#include_set, #include_set_formats

Methods included from Trait

#card_accessor, #card_reader, #card_writer, #require_field

Methods included from Event::Api

#event

Class Method Details

.clear_rolehashObject



31
32
33
# File 'platypus/tmp/set/gem-defaults/mod014-account/self/role.rb', line 31

def clear_rolehash
  @role_hash = nil
end

.generate_rolehashObject



17
18
19
20
21
22
23
24
# File 'platypus/tmp/set/gem-defaults/mod014-account/self/role.rb', line 17

def generate_rolehash
  Auth.as_bot do
    Card.search(left: { type_id: Card::RoleID }, right_id: Card::MembersID)
        .each_with_object({}) do |member_card, hash|
      hash[member_card.left_id] = ::Set.new member_card.item_ids
    end
  end
end

.load_rolehashObject



11
12
13
14
15
# File 'platypus/tmp/set/gem-defaults/mod014-account/self/role.rb', line 11

def load_rolehash
  ::Card.cache.fetch(CACHE_KEY) do
    generate_rolehash
  end
end

.role_hashObject



35
36
37
# File 'platypus/tmp/set/gem-defaults/mod014-account/self/role.rb', line 35

def role_hash
  @role_hash ||= load_rolehash
end

.role_ids(user_id) ⇒ Object



39
40
41
42
43
44
# File 'platypus/tmp/set/gem-defaults/mod014-account/self/role.rb', line 39

def role_ids user_id
  role_hash.each_with_object([]) do |(role_id, member_ids), all_role_ids|
    next unless member_ids.include? user_id
    all_role_ids << role_id
  end
end

.source_locationObject



7
# File 'platypus/tmp/set/gem-defaults/mod014-account/self/role.rb', line 7

def self.source_location; "/Users/ethan/dev/decko/gem/mod/account/set/self/role.rb"; end

.update_rolehash(role_id, member_ids) ⇒ Object



26
27
28
29
# File 'platypus/tmp/set/gem-defaults/mod014-account/self/role.rb', line 26

def update_rolehash role_id, member_ids
  role_hash[role_id] = member_ids
  ::Card.cache.write CACHE_KEY, role_hash
end