Class: Card::Act
- Inherits:
-
ApplicationRecord
- Object
- ActiveRecord::Base
- ApplicationRecord
- Card::Act
- Defined in:
- mod/history/lib/card/act.rb,
mod/history/lib/card/act/act_renderer.rb,
mod/history/lib/card/act/act_renderer/bridge_act_renderer.rb,
mod/history/lib/card/act/act_renderer/absolute_act_renderer.rb,
mod/history/lib/card/act/act_renderer/relative_act_renderer.rb
Overview
An "act" is a group of recorded actions on cards. Together, acts, actions, and changes comprise a comprehensive card history tracking system.
For example, if a given web form submissions updates the contents of three cards, then the submission will result in the recording of three actions, each of which is tied to one act.
Each act records:
- the actor_id (an id associated with the account responsible)
- the card_id of the act's primary card
- acted_at, a timestamp of the action
- the ip_address of the actor where applicable.
Defined Under Namespace
Classes: ActRenderer
Class Method Summary collapse
-
.all_viewable(action_where = nil) ⇒ ActiveRecord Relation
all acts with actions that current user has permission to view.
-
.all_with_actions_on(card_ids, with_drafts = false) ⇒ Array of Acts
all acts with actions on a given list of cards.
- .cache ⇒ Object
-
.delete_actionless ⇒ Object
remove all acts that have no action.
-
.delete_cardless ⇒ Object
remove all acts that have no card.
-
.timestamp_attributes_for_create ⇒ Object
used by rails time_ago timestamp is set by rails on create.
Instance Method Summary collapse
-
#action_on(card_id) ⇒ Card::Action
act's action on the card in question.
-
#actions(cached = true) ⇒ Array
list of all actions that are part of the act.
-
#actions_affecting(card) ⇒ Array of Actions
act's actions on either the card itself or another card that includes it.
- #actor ⇒ Object
-
#card ⇒ Card
the act's primary card.
- #draft? ⇒ Boolean
-
#elapsed_time ⇒ String
time (in words) since act took place.
-
#main_action ⇒ Card::Action
act's action on primary card if it exists.
Class Method Details
.all_viewable(action_where = nil) ⇒ ActiveRecord Relation
all acts with actions that current user has permission to view
52 53 54 55 56 |
# File 'mod/history/lib/card/act.rb', line 52 def all_viewable action_where=nil relation = joins(ar_actions: :ar_card) relation = relation.where(action_where) if action_where relation.where(Query::CardQuery.viewable_sql).where.not(card_id: nil).distinct end |
.all_with_actions_on(card_ids, with_drafts = false) ⇒ Array of Acts
all acts with actions on a given list of cards
44 45 46 47 48 |
# File 'mod/history/lib/card/act.rb', line 44 def all_with_actions_on card_ids, with_drafts=false sql = "card_actions.card_id IN (:card_ids) AND (draft is not true" sql << (with_drafts ? " OR actor_id = :user_id)" : ")") all_viewable([sql, { card_ids: card_ids, user_id: Card::Auth.current_id }]) end |
.cache ⇒ Object
58 59 60 |
# File 'mod/history/lib/card/act.rb', line 58 def cache Card::Cache[Card::Act] end |
.delete_actionless ⇒ Object
remove all acts that have no action. (janitorial)
32 33 34 35 36 37 38 |
# File 'mod/history/lib/card/act.rb', line 32 def delete_actionless joins( "LEFT JOIN card_actions ON card_acts.id = card_act_id" ).where( "card_actions.id is null" ).delete_all end |
.delete_cardless ⇒ Object
remove all acts that have no card. (janitorial)
26 27 28 29 |
# File 'mod/history/lib/card/act.rb', line 26 def delete_cardless left_join = "LEFT JOIN cards ON card_acts.card_id = cards.id" joins(left_join).where("cards.id IS NULL").delete_all end |
.timestamp_attributes_for_create ⇒ Object
used by rails time_ago timestamp is set by rails on create
64 65 66 |
# File 'mod/history/lib/card/act.rb', line 64 def super << "acted_at" end |
Instance Method Details
#action_on(card_id) ⇒ Card::Action
act's action on the card in question
93 94 95 96 97 |
# File 'mod/history/lib/card/act.rb', line 93 def action_on card_id actions.find do |action| action.card_id == card_id && !action.draft end end |
#actions(cached = true) ⇒ Array
list of all actions that are part of the act
84 85 86 87 88 |
# File 'mod/history/lib/card/act.rb', line 84 def actions cached=true return ar_actions unless cached self.class.cache.fetch("#{id}-actions") { ar_actions.find_all.to_a } end |
#actions_affecting(card) ⇒ Array of Actions
act's actions on either the card itself or another card that includes it
118 119 120 121 122 123 |
# File 'mod/history/lib/card/act.rb', line 118 def actions_affecting card actions.select do |action| (card.id == action.card_id) || card.includee_ids.include?(action.card_id) end end |
#actor ⇒ Object
69 70 71 |
# File 'mod/history/lib/card/act.rb', line 69 def actor Card.fetch actor_id end |
#card ⇒ Card
the act's primary card
75 76 77 78 79 80 |
# File 'mod/history/lib/card/act.rb', line 75 def card res = Card.fetch card_id, look_in_trash: true, skip_modules: true return res unless res&.type_id&.in?([FileID, ImageID]) res.include_set_modules end |
#draft? ⇒ Boolean
105 106 107 |
# File 'mod/history/lib/card/act.rb', line 105 def draft? main_action.draft end |
#elapsed_time ⇒ String
time (in words) since act took place
111 112 113 |
# File 'mod/history/lib/card/act.rb', line 111 def elapsed_time DateTime.new(acted_at).distance_of_time_in_words_to_now end |
#main_action ⇒ Card::Action
act's action on primary card if it exists. otherwise act's first action
101 102 103 |
# File 'mod/history/lib/card/act.rb', line 101 def main_action action_on(card_id) || actions.first end |