2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-28 09:17:42 -04:00
|
|
|
class Event < ApplicationRecord
|
2015-02-05 17:20:55 -05:00
|
|
|
include Sortable
|
2017-08-30 09:38:16 -04:00
|
|
|
include IgnorableColumn
|
2018-09-11 11:31:34 -04:00
|
|
|
include FromUnion
|
2017-09-20 07:36:18 -04:00
|
|
|
default_scope { reorder(nil) }
|
2012-03-07 03:13:43 -05:00
|
|
|
|
2013-02-13 06:48:16 -05:00
|
|
|
CREATED = 1
|
|
|
|
UPDATED = 2
|
|
|
|
CLOSED = 3
|
|
|
|
REOPENED = 4
|
|
|
|
PUSHED = 5
|
|
|
|
COMMENTED = 6
|
|
|
|
MERGED = 7
|
|
|
|
JOINED = 8 # User joined project
|
|
|
|
LEFT = 9 # User left project
|
2015-08-31 00:51:34 -04:00
|
|
|
DESTROYED = 10
|
2016-10-06 11:19:27 -04:00
|
|
|
EXPIRED = 11 # User left project due to expiry
|
2012-02-28 09:01:14 -05:00
|
|
|
|
2017-05-29 01:49:17 -04:00
|
|
|
ACTIONS = HashWithIndifferentAccess.new(
|
|
|
|
created: CREATED,
|
|
|
|
updated: UPDATED,
|
|
|
|
closed: CLOSED,
|
|
|
|
reopened: REOPENED,
|
|
|
|
pushed: PUSHED,
|
|
|
|
commented: COMMENTED,
|
|
|
|
merged: MERGED,
|
|
|
|
joined: JOINED,
|
|
|
|
left: LEFT,
|
|
|
|
destroyed: DESTROYED,
|
|
|
|
expired: EXPIRED
|
|
|
|
).freeze
|
|
|
|
|
|
|
|
TARGET_TYPES = HashWithIndifferentAccess.new(
|
|
|
|
issue: Issue,
|
|
|
|
milestone: Milestone,
|
|
|
|
merge_request: MergeRequest,
|
|
|
|
note: Note,
|
|
|
|
project: Project,
|
|
|
|
snippet: Snippet,
|
|
|
|
user: User
|
|
|
|
).freeze
|
|
|
|
|
2016-09-16 10:05:12 -04:00
|
|
|
RESET_PROJECT_ACTIVITY_INTERVAL = 1.hour
|
2018-05-28 08:58:23 -04:00
|
|
|
REPOSITORY_UPDATED_AT_INTERVAL = 5.minutes
|
2016-09-16 10:05:12 -04:00
|
|
|
|
2017-04-19 19:04:56 -04:00
|
|
|
delegate :name, :email, :public_email, :username, to: :author, prefix: true, allow_nil: true
|
2012-09-27 02:20:36 -04:00
|
|
|
delegate :title, to: :issue, prefix: true, allow_nil: true
|
|
|
|
delegate :title, to: :merge_request, prefix: true, allow_nil: true
|
2014-05-29 10:55:55 -04:00
|
|
|
delegate :title, to: :note, prefix: true, allow_nil: true
|
2012-09-27 02:20:36 -04:00
|
|
|
|
2012-09-27 16:23:11 -04:00
|
|
|
belongs_to :author, class_name: "User"
|
2012-02-28 08:09:23 -05:00
|
|
|
belongs_to :project
|
2018-01-03 11:44:29 -05:00
|
|
|
|
|
|
|
belongs_to :target, -> {
|
|
|
|
# If the association for "target" defines an "author" association we want to
|
|
|
|
# eager-load this so Banzai & friends don't end up performing N+1 queries to
|
2018-03-23 08:58:46 -04:00
|
|
|
# get the authors of notes, issues, etc. (likewise for "noteable").
|
|
|
|
incs = %i(author noteable).select do |a|
|
|
|
|
reflections['events'].active_record.reflect_on_association(a)
|
2018-01-03 11:44:29 -05:00
|
|
|
end
|
2018-03-23 08:58:46 -04:00
|
|
|
|
|
|
|
incs.reduce(self) { |obj, a| obj.includes(a) }
|
2018-01-03 11:44:29 -05:00
|
|
|
}, polymorphic: true # rubocop:disable Cop/PolymorphicAssociations
|
|
|
|
|
2017-09-01 06:50:14 -04:00
|
|
|
has_one :push_event_payload
|
2012-02-28 09:01:14 -05:00
|
|
|
|
2014-06-17 14:23:43 -04:00
|
|
|
# Callbacks
|
|
|
|
after_create :reset_project_activity
|
2019-05-13 00:42:06 -04:00
|
|
|
after_create :set_last_repository_updated_at, if: :push_action?
|
2018-03-01 09:42:04 -05:00
|
|
|
after_create :track_user_interacted_projects
|
2014-06-17 14:23:43 -04:00
|
|
|
|
2012-10-08 20:10:04 -04:00
|
|
|
# Scopes
|
2015-11-11 09:17:12 -05:00
|
|
|
scope :recent, -> { reorder(id: :desc) }
|
2013-02-13 06:48:16 -05:00
|
|
|
scope :code_push, -> { where(action: PUSHED) }
|
2016-01-25 10:56:23 -05:00
|
|
|
|
2017-07-27 13:42:15 -04:00
|
|
|
scope :in_projects, -> (projects) do
|
|
|
|
sub_query = projects
|
|
|
|
.except(:order)
|
|
|
|
.select(1)
|
|
|
|
.where('projects.id = events.project_id')
|
|
|
|
|
|
|
|
where('EXISTS (?)', sub_query).recent
|
2016-01-25 10:56:23 -05:00
|
|
|
end
|
|
|
|
|
Migrate events into a new format
This commit migrates events data in such a way that push events are
stored much more efficiently. This is done by creating a shadow table
called "events_for_migration", and a table called "push_event_payloads"
which is used for storing push data of push events. The background
migration in this commit will copy events from the "events" table into
the "events_for_migration" table, push events in will also have a row
created in "push_event_payloads".
This approach allows us to reclaim space in the next release by simply
swapping the "events" and "events_for_migration" tables, then dropping
the old events (now "events_for_migration") table.
The new table structure is also optimised for storage space, and does
not include the unused "title" column nor the "data" column (since this
data is moved to "push_event_payloads").
== Newly Created Events
Newly created events are inserted into both "events" and
"events_for_migration", both using the exact same primary key value. The
table "push_event_payloads" in turn has a foreign key to the _shadow_
table. This removes the need for recreating and validating the foreign
key after swapping the tables. Since the shadow table also has a foreign
key to "projects.id" we also don't have to worry about orphaned rows.
This approach however does require some additional storage as we're
duplicating a portion of the events data for at least 1 release. The
exact amount is hard to estimate, but for GitLab.com this is expected to
be between 10 and 20 GB at most. The background migration in this commit
deliberately does _not_ update the "events" table as doing so would put
a lot of pressure on PostgreSQL's auto vacuuming system.
== Supporting Both Old And New Events
Application code has also been adjusted to support push events using
both the old and new data formats. This is done by creating a PushEvent
class which extends the regular Event class. Using Rails' Single Table
Inheritance system we can ensure the right class is used for the right
data, which in this case is based on the value of `events.action`. To
support displaying old and new data at the same time the PushEvent class
re-defines a few methods of the Event class, falling back to their
original implementations for push events in the old format.
Once all existing events have been migrated the various push event
related methods can be removed from the Event model, and the calls to
`super` can be removed from the methods in the PushEvent model.
The UI and event atom feed have also been slightly changed to better
handle this new setup, fortunately only a few changes were necessary to
make this work.
== API Changes
The API only displays push data of events in the new format. Supporting
both formats in the API is a bit more difficult compared to the UI.
Since the old push data was not really well documented (apart from one
example that used an incorrect "action" nmae) I decided that supporting
both was not worth the effort, especially since events will be migrated
in a few days _and_ new events are created in the correct format.
2017-07-10 11:43:57 -04:00
|
|
|
scope :with_associations, -> do
|
|
|
|
# We're using preload for "push_event_payload" as otherwise the association
|
|
|
|
# is not always available (depending on the query being built).
|
2018-11-14 00:07:35 -05:00
|
|
|
includes(:author, :project, project: [:project_feature, :import_data, :namespace])
|
2017-12-22 12:02:48 -05:00
|
|
|
.preload(:target, :push_event_payload)
|
Migrate events into a new format
This commit migrates events data in such a way that push events are
stored much more efficiently. This is done by creating a shadow table
called "events_for_migration", and a table called "push_event_payloads"
which is used for storing push data of push events. The background
migration in this commit will copy events from the "events" table into
the "events_for_migration" table, push events in will also have a row
created in "push_event_payloads".
This approach allows us to reclaim space in the next release by simply
swapping the "events" and "events_for_migration" tables, then dropping
the old events (now "events_for_migration") table.
The new table structure is also optimised for storage space, and does
not include the unused "title" column nor the "data" column (since this
data is moved to "push_event_payloads").
== Newly Created Events
Newly created events are inserted into both "events" and
"events_for_migration", both using the exact same primary key value. The
table "push_event_payloads" in turn has a foreign key to the _shadow_
table. This removes the need for recreating and validating the foreign
key after swapping the tables. Since the shadow table also has a foreign
key to "projects.id" we also don't have to worry about orphaned rows.
This approach however does require some additional storage as we're
duplicating a portion of the events data for at least 1 release. The
exact amount is hard to estimate, but for GitLab.com this is expected to
be between 10 and 20 GB at most. The background migration in this commit
deliberately does _not_ update the "events" table as doing so would put
a lot of pressure on PostgreSQL's auto vacuuming system.
== Supporting Both Old And New Events
Application code has also been adjusted to support push events using
both the old and new data formats. This is done by creating a PushEvent
class which extends the regular Event class. Using Rails' Single Table
Inheritance system we can ensure the right class is used for the right
data, which in this case is based on the value of `events.action`. To
support displaying old and new data at the same time the PushEvent class
re-defines a few methods of the Event class, falling back to their
original implementations for push events in the old format.
Once all existing events have been migrated the various push event
related methods can be removed from the Event model, and the calls to
`super` can be removed from the methods in the PushEvent model.
The UI and event atom feed have also been slightly changed to better
handle this new setup, fortunately only a few changes were necessary to
make this work.
== API Changes
The API only displays push data of events in the new format. Supporting
both formats in the API is a bit more difficult compared to the UI.
Since the old push data was not really well documented (apart from one
example that used an incorrect "action" nmae) I decided that supporting
both was not worth the effort, especially since events will be migrated
in a few days _and_ new events are created in the correct format.
2017-07-10 11:43:57 -04:00
|
|
|
end
|
|
|
|
|
2015-08-31 00:51:34 -04:00
|
|
|
scope :for_milestone_id, ->(milestone_id) { where(target_type: "Milestone", target_id: milestone_id) }
|
2012-02-29 15:38:24 -05:00
|
|
|
|
2017-09-20 07:36:18 -04:00
|
|
|
# Authors are required as they're used to display who pushed data.
|
|
|
|
#
|
|
|
|
# We're just validating the presence of the ID here as foreign key constraints
|
|
|
|
# should ensure the ID points to a valid user.
|
|
|
|
validates :author_id, presence: true
|
|
|
|
|
Migrate events into a new format
This commit migrates events data in such a way that push events are
stored much more efficiently. This is done by creating a shadow table
called "events_for_migration", and a table called "push_event_payloads"
which is used for storing push data of push events. The background
migration in this commit will copy events from the "events" table into
the "events_for_migration" table, push events in will also have a row
created in "push_event_payloads".
This approach allows us to reclaim space in the next release by simply
swapping the "events" and "events_for_migration" tables, then dropping
the old events (now "events_for_migration") table.
The new table structure is also optimised for storage space, and does
not include the unused "title" column nor the "data" column (since this
data is moved to "push_event_payloads").
== Newly Created Events
Newly created events are inserted into both "events" and
"events_for_migration", both using the exact same primary key value. The
table "push_event_payloads" in turn has a foreign key to the _shadow_
table. This removes the need for recreating and validating the foreign
key after swapping the tables. Since the shadow table also has a foreign
key to "projects.id" we also don't have to worry about orphaned rows.
This approach however does require some additional storage as we're
duplicating a portion of the events data for at least 1 release. The
exact amount is hard to estimate, but for GitLab.com this is expected to
be between 10 and 20 GB at most. The background migration in this commit
deliberately does _not_ update the "events" table as doing so would put
a lot of pressure on PostgreSQL's auto vacuuming system.
== Supporting Both Old And New Events
Application code has also been adjusted to support push events using
both the old and new data formats. This is done by creating a PushEvent
class which extends the regular Event class. Using Rails' Single Table
Inheritance system we can ensure the right class is used for the right
data, which in this case is based on the value of `events.action`. To
support displaying old and new data at the same time the PushEvent class
re-defines a few methods of the Event class, falling back to their
original implementations for push events in the old format.
Once all existing events have been migrated the various push event
related methods can be removed from the Event model, and the calls to
`super` can be removed from the methods in the PushEvent model.
The UI and event atom feed have also been slightly changed to better
handle this new setup, fortunately only a few changes were necessary to
make this work.
== API Changes
The API only displays push data of events in the new format. Supporting
both formats in the API is a bit more difficult compared to the UI.
Since the old push data was not really well documented (apart from one
example that used an incorrect "action" nmae) I decided that supporting
both was not worth the effort, especially since events will be migrated
in a few days _and_ new events are created in the correct format.
2017-07-10 11:43:57 -04:00
|
|
|
self.inheritance_column = 'action'
|
|
|
|
|
2012-10-08 20:10:04 -04:00
|
|
|
class << self
|
2017-08-20 17:18:42 -04:00
|
|
|
def model_name
|
|
|
|
ActiveModel::Name.new(self, nil, 'event')
|
|
|
|
end
|
|
|
|
|
Migrate events into a new format
This commit migrates events data in such a way that push events are
stored much more efficiently. This is done by creating a shadow table
called "events_for_migration", and a table called "push_event_payloads"
which is used for storing push data of push events. The background
migration in this commit will copy events from the "events" table into
the "events_for_migration" table, push events in will also have a row
created in "push_event_payloads".
This approach allows us to reclaim space in the next release by simply
swapping the "events" and "events_for_migration" tables, then dropping
the old events (now "events_for_migration") table.
The new table structure is also optimised for storage space, and does
not include the unused "title" column nor the "data" column (since this
data is moved to "push_event_payloads").
== Newly Created Events
Newly created events are inserted into both "events" and
"events_for_migration", both using the exact same primary key value. The
table "push_event_payloads" in turn has a foreign key to the _shadow_
table. This removes the need for recreating and validating the foreign
key after swapping the tables. Since the shadow table also has a foreign
key to "projects.id" we also don't have to worry about orphaned rows.
This approach however does require some additional storage as we're
duplicating a portion of the events data for at least 1 release. The
exact amount is hard to estimate, but for GitLab.com this is expected to
be between 10 and 20 GB at most. The background migration in this commit
deliberately does _not_ update the "events" table as doing so would put
a lot of pressure on PostgreSQL's auto vacuuming system.
== Supporting Both Old And New Events
Application code has also been adjusted to support push events using
both the old and new data formats. This is done by creating a PushEvent
class which extends the regular Event class. Using Rails' Single Table
Inheritance system we can ensure the right class is used for the right
data, which in this case is based on the value of `events.action`. To
support displaying old and new data at the same time the PushEvent class
re-defines a few methods of the Event class, falling back to their
original implementations for push events in the old format.
Once all existing events have been migrated the various push event
related methods can be removed from the Event model, and the calls to
`super` can be removed from the methods in the PushEvent model.
The UI and event atom feed have also been slightly changed to better
handle this new setup, fortunately only a few changes were necessary to
make this work.
== API Changes
The API only displays push data of events in the new format. Supporting
both formats in the API is a bit more difficult compared to the UI.
Since the old push data was not really well documented (apart from one
example that used an incorrect "action" nmae) I decided that supporting
both was not worth the effort, especially since events will be migrated
in a few days _and_ new events are created in the correct format.
2017-07-10 11:43:57 -04:00
|
|
|
def find_sti_class(action)
|
|
|
|
if action.to_i == PUSHED
|
|
|
|
PushEvent
|
|
|
|
else
|
|
|
|
Event
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-04 10:15:43 -04:00
|
|
|
# Update Gitlab::ContributionsCalendar#activity_dates if this changes
|
2015-03-22 16:55:00 -04:00
|
|
|
def contributions
|
2017-01-26 12:59:50 -05:00
|
|
|
where("action = ? OR (target_type IN (?) AND action IN (?)) OR (target_type = ? AND action = ?)",
|
|
|
|
Event::PUSHED,
|
2017-02-22 12:46:57 -05:00
|
|
|
%w(MergeRequest Issue), [Event::CREATED, Event::CLOSED, Event::MERGED],
|
2017-01-26 12:59:50 -05:00
|
|
|
"Note", Event::COMMENTED)
|
2015-03-22 16:55:00 -04:00
|
|
|
end
|
2015-11-11 11:14:47 -05:00
|
|
|
|
2015-11-18 06:25:37 -05:00
|
|
|
def limit_recent(limit = 20, offset = nil)
|
|
|
|
recent.limit(limit).offset(offset)
|
|
|
|
end
|
2017-05-29 01:49:17 -04:00
|
|
|
|
|
|
|
def actions
|
|
|
|
ACTIONS.keys
|
|
|
|
end
|
|
|
|
|
|
|
|
def target_types
|
|
|
|
TARGET_TYPES.keys
|
|
|
|
end
|
2012-07-20 01:39:34 -04:00
|
|
|
end
|
|
|
|
|
2018-09-21 11:16:13 -04:00
|
|
|
# rubocop:disable Metrics/CyclomaticComplexity
|
|
|
|
# rubocop:disable Metrics/PerceivedComplexity
|
2016-03-24 13:24:22 -04:00
|
|
|
def visible_to_user?(user = nil)
|
2019-05-13 00:42:06 -04:00
|
|
|
if push_action? || commit_note?
|
2016-11-04 10:15:43 -04:00
|
|
|
Ability.allowed?(user, :download_code, project)
|
2012-12-14 14:39:55 -05:00
|
|
|
elsif membership_changed?
|
2018-09-07 11:08:55 -04:00
|
|
|
Ability.allowed?(user, :read_project, project)
|
2019-05-13 00:42:06 -04:00
|
|
|
elsif created_project_action?
|
2018-09-07 11:08:55 -04:00
|
|
|
Ability.allowed?(user, :read_project, project)
|
2016-03-24 13:20:47 -04:00
|
|
|
elsif issue? || issue_note?
|
2016-08-08 14:55:13 -04:00
|
|
|
Ability.allowed?(user, :read_issue, note? ? note_target : target)
|
2016-10-04 08:52:08 -04:00
|
|
|
elsif merge_request? || merge_request_note?
|
|
|
|
Ability.allowed?(user, :read_merge_request, note? ? note_target : target)
|
2018-09-21 11:16:13 -04:00
|
|
|
elsif personal_snippet_note?
|
|
|
|
Ability.allowed?(user, :read_personal_snippet, note_target)
|
|
|
|
elsif project_snippet_note?
|
|
|
|
Ability.allowed?(user, :read_project_snippet, note_target)
|
2018-09-07 11:08:55 -04:00
|
|
|
elsif milestone?
|
2018-09-21 10:13:15 -04:00
|
|
|
Ability.allowed?(user, :read_milestone, project)
|
2012-12-14 14:39:55 -05:00
|
|
|
else
|
2018-09-07 11:08:55 -04:00
|
|
|
false # No other event types are visible
|
2012-12-14 14:39:55 -05:00
|
|
|
end
|
2012-03-01 13:47:57 -05:00
|
|
|
end
|
2018-09-21 11:16:13 -04:00
|
|
|
# rubocop:enable Metrics/PerceivedComplexity
|
|
|
|
# rubocop:enable Metrics/CyclomaticComplexity
|
2012-03-01 13:47:57 -05:00
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def project_name
|
|
|
|
if project
|
2018-03-05 09:15:26 -05:00
|
|
|
project.full_name
|
2012-09-14 11:46:40 -04:00
|
|
|
else
|
2012-09-30 09:04:43 -04:00
|
|
|
"(deleted project)"
|
2012-09-14 11:46:40 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-01 09:39:19 -04:00
|
|
|
def target_title
|
2016-05-08 14:05:45 -04:00
|
|
|
target.try(:title)
|
2015-02-13 06:00:12 -05:00
|
|
|
end
|
|
|
|
|
2019-05-13 00:42:06 -04:00
|
|
|
def created_action?
|
2015-02-13 06:00:12 -05:00
|
|
|
action == CREATED
|
2012-10-01 09:39:19 -04:00
|
|
|
end
|
|
|
|
|
2019-05-13 00:42:06 -04:00
|
|
|
def push_action?
|
2017-08-30 09:38:16 -04:00
|
|
|
false
|
2012-02-29 15:38:24 -05:00
|
|
|
end
|
|
|
|
|
2019-05-13 00:42:06 -04:00
|
|
|
def merged_action?
|
2015-02-13 06:00:12 -05:00
|
|
|
action == MERGED
|
2012-04-01 17:24:45 -04:00
|
|
|
end
|
|
|
|
|
2019-05-13 00:42:06 -04:00
|
|
|
def closed_action?
|
2015-02-13 06:00:12 -05:00
|
|
|
action == CLOSED
|
2012-03-07 03:13:43 -05:00
|
|
|
end
|
|
|
|
|
2019-05-13 00:42:06 -04:00
|
|
|
def reopened_action?
|
2015-02-13 06:00:12 -05:00
|
|
|
action == REOPENED
|
|
|
|
end
|
|
|
|
|
2019-05-13 00:42:06 -04:00
|
|
|
def joined_action?
|
2015-02-13 06:00:12 -05:00
|
|
|
action == JOINED
|
|
|
|
end
|
|
|
|
|
2019-05-13 00:42:06 -04:00
|
|
|
def left_action?
|
2015-02-13 06:00:12 -05:00
|
|
|
action == LEFT
|
|
|
|
end
|
|
|
|
|
2019-05-13 00:42:06 -04:00
|
|
|
def expired_action?
|
2016-10-06 11:19:27 -04:00
|
|
|
action == EXPIRED
|
|
|
|
end
|
|
|
|
|
2019-05-13 00:42:06 -04:00
|
|
|
def destroyed_action?
|
2015-08-31 00:51:34 -04:00
|
|
|
action == DESTROYED
|
|
|
|
end
|
|
|
|
|
2019-05-13 00:42:06 -04:00
|
|
|
def commented_action?
|
2015-02-13 06:00:12 -05:00
|
|
|
action == COMMENTED
|
|
|
|
end
|
|
|
|
|
|
|
|
def membership_changed?
|
2019-05-13 00:42:06 -04:00
|
|
|
joined_action? || left_action? || expired_action?
|
2012-03-07 03:13:43 -05:00
|
|
|
end
|
|
|
|
|
2019-05-13 00:42:06 -04:00
|
|
|
def created_project_action?
|
|
|
|
created_action? && !target && target_type.nil?
|
2015-02-13 06:01:28 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def created_target?
|
2019-05-13 00:42:06 -04:00
|
|
|
created_action? && target
|
2015-02-13 06:01:28 -05:00
|
|
|
end
|
|
|
|
|
2012-12-14 12:33:33 -05:00
|
|
|
def milestone?
|
|
|
|
target_type == "Milestone"
|
|
|
|
end
|
|
|
|
|
|
|
|
def note?
|
2016-07-06 04:08:42 -04:00
|
|
|
target.is_a?(Note)
|
2012-12-14 12:33:33 -05:00
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def issue?
|
2012-04-01 17:24:45 -04:00
|
|
|
target_type == "Issue"
|
2012-02-29 15:38:24 -05:00
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def merge_request?
|
2012-04-01 17:24:45 -04:00
|
|
|
target_type == "MergeRequest"
|
2012-03-05 17:29:40 -05:00
|
|
|
end
|
|
|
|
|
2015-02-13 06:00:12 -05:00
|
|
|
def milestone
|
|
|
|
target if milestone?
|
2012-09-09 16:18:28 -04:00
|
|
|
end
|
|
|
|
|
2012-09-14 11:46:40 -04:00
|
|
|
def issue
|
2015-02-13 06:00:12 -05:00
|
|
|
target if issue?
|
2012-03-01 15:43:04 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def merge_request
|
2015-02-13 06:00:12 -05:00
|
|
|
target if merge_request?
|
2012-03-01 15:43:04 -05:00
|
|
|
end
|
|
|
|
|
2014-05-29 10:55:55 -04:00
|
|
|
def note
|
2015-02-13 06:00:12 -05:00
|
|
|
target if note?
|
2014-05-29 10:55:55 -04:00
|
|
|
end
|
|
|
|
|
2012-04-01 17:24:45 -04:00
|
|
|
def action_name
|
2019-05-13 00:42:06 -04:00
|
|
|
if push_action?
|
2017-09-12 13:27:29 -04:00
|
|
|
push_action_name
|
2019-05-13 00:42:06 -04:00
|
|
|
elsif closed_action?
|
2012-04-01 17:24:45 -04:00
|
|
|
"closed"
|
2019-05-13 00:42:06 -04:00
|
|
|
elsif merged_action?
|
2013-04-06 08:53:35 -04:00
|
|
|
"accepted"
|
2019-05-13 00:42:06 -04:00
|
|
|
elsif joined_action?
|
2012-09-09 16:18:28 -04:00
|
|
|
'joined'
|
2019-05-13 00:42:06 -04:00
|
|
|
elsif left_action?
|
2012-09-09 17:27:47 -04:00
|
|
|
'left'
|
2019-05-13 00:42:06 -04:00
|
|
|
elsif expired_action?
|
2016-10-06 11:19:27 -04:00
|
|
|
'removed due to membership expiration from'
|
2019-05-13 00:42:06 -04:00
|
|
|
elsif destroyed_action?
|
2015-08-31 00:51:34 -04:00
|
|
|
'destroyed'
|
2019-05-13 00:42:06 -04:00
|
|
|
elsif commented_action?
|
2015-02-13 06:00:12 -05:00
|
|
|
"commented on"
|
2019-05-13 00:42:06 -04:00
|
|
|
elsif created_project_action?
|
2017-09-12 13:27:29 -04:00
|
|
|
created_project_action_name
|
2012-09-14 11:46:40 -04:00
|
|
|
else
|
2012-04-01 17:24:45 -04:00
|
|
|
"opened"
|
2012-02-29 15:38:24 -05:00
|
|
|
end
|
|
|
|
end
|
2013-01-02 16:35:11 -05:00
|
|
|
|
2013-08-19 15:12:59 -04:00
|
|
|
def target_iid
|
|
|
|
target.respond_to?(:iid) ? target.iid : target_id
|
|
|
|
end
|
|
|
|
|
2016-05-12 16:31:53 -04:00
|
|
|
def commit_note?
|
2016-11-16 09:17:09 -05:00
|
|
|
note? && target && target.for_commit?
|
2013-01-02 16:35:11 -05:00
|
|
|
end
|
|
|
|
|
2016-03-24 13:20:47 -04:00
|
|
|
def issue_note?
|
2016-05-08 14:46:43 -04:00
|
|
|
note? && target && target.for_issue?
|
2016-03-24 13:20:47 -04:00
|
|
|
end
|
|
|
|
|
2016-10-04 08:52:08 -04:00
|
|
|
def merge_request_note?
|
|
|
|
note? && target && target.for_merge_request?
|
|
|
|
end
|
|
|
|
|
2016-05-12 16:37:00 -04:00
|
|
|
def project_snippet_note?
|
2016-11-16 09:17:09 -05:00
|
|
|
note? && target && target.for_snippet?
|
2013-03-25 07:58:09 -04:00
|
|
|
end
|
|
|
|
|
2018-09-21 11:16:13 -04:00
|
|
|
def personal_snippet_note?
|
|
|
|
note? && target && target.for_personal_snippet?
|
|
|
|
end
|
|
|
|
|
2013-01-02 16:35:11 -05:00
|
|
|
def note_target
|
|
|
|
target.noteable
|
|
|
|
end
|
|
|
|
|
|
|
|
def note_target_id
|
2016-05-12 16:31:53 -04:00
|
|
|
if commit_note?
|
2013-01-02 16:35:11 -05:00
|
|
|
target.commit_id
|
|
|
|
else
|
|
|
|
target.noteable_id.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-05-12 17:47:45 -04:00
|
|
|
def note_target_reference
|
|
|
|
return unless note_target
|
|
|
|
|
|
|
|
# Commit#to_reference returns the full SHA, but we want the short one here
|
|
|
|
if commit_note?
|
|
|
|
note_target.short_id
|
2013-08-19 15:53:11 -04:00
|
|
|
else
|
2016-05-12 17:47:45 -04:00
|
|
|
note_target.to_reference
|
|
|
|
end
|
2013-08-19 15:53:11 -04:00
|
|
|
end
|
|
|
|
|
2013-01-02 16:35:11 -05:00
|
|
|
def note_target_type
|
|
|
|
if target.noteable_type.present?
|
|
|
|
target.noteable_type.titleize
|
|
|
|
else
|
|
|
|
"Wall"
|
|
|
|
end.downcase
|
|
|
|
end
|
2013-08-20 14:31:37 -04:00
|
|
|
|
|
|
|
def body?
|
2019-05-13 00:42:06 -04:00
|
|
|
if push_action?
|
2017-08-21 11:27:06 -04:00
|
|
|
push_with_commits?
|
2013-08-20 14:31:37 -04:00
|
|
|
elsif note?
|
|
|
|
true
|
|
|
|
else
|
|
|
|
target.respond_to? :title
|
|
|
|
end
|
|
|
|
end
|
2014-06-17 14:23:43 -04:00
|
|
|
|
|
|
|
def reset_project_activity
|
2016-09-16 10:05:12 -04:00
|
|
|
return unless project
|
|
|
|
|
2016-10-04 11:22:58 -04:00
|
|
|
# Don't bother updating if we know the project was updated recently.
|
2016-09-19 22:59:29 -04:00
|
|
|
return if recent_update?
|
2016-09-16 10:05:12 -04:00
|
|
|
|
2016-10-04 11:22:58 -04:00
|
|
|
# At this point it's possible for multiple threads/processes to try to
|
|
|
|
# update the project. Only one query should actually perform the update,
|
|
|
|
# hence we add the extra WHERE clause for last_activity_at.
|
2017-06-21 09:48:12 -04:00
|
|
|
Project.unscoped.where(id: project_id)
|
|
|
|
.where('last_activity_at <= ?', RESET_PROJECT_ACTIVITY_INTERVAL.ago)
|
|
|
|
.update_all(last_activity_at: created_at)
|
2016-09-19 22:59:29 -04:00
|
|
|
end
|
|
|
|
|
2016-11-24 05:25:23 -05:00
|
|
|
def authored_by?(user)
|
|
|
|
user ? author_id == user.id : false
|
|
|
|
end
|
|
|
|
|
2017-08-20 17:18:42 -04:00
|
|
|
def to_partial_path
|
|
|
|
# We are intentionally using `Event` rather than `self.class` so that
|
|
|
|
# subclasses also use the `Event` implementation.
|
|
|
|
Event._to_partial_path
|
|
|
|
end
|
|
|
|
|
2016-09-19 22:59:29 -04:00
|
|
|
private
|
|
|
|
|
2017-09-12 13:27:29 -04:00
|
|
|
def push_action_name
|
|
|
|
if new_ref?
|
|
|
|
"pushed new"
|
|
|
|
elsif rm_ref?
|
|
|
|
"deleted"
|
|
|
|
else
|
|
|
|
"pushed to"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def created_project_action_name
|
|
|
|
if project.external_import?
|
|
|
|
"imported"
|
|
|
|
else
|
|
|
|
"created"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-19 22:59:29 -04:00
|
|
|
def recent_update?
|
|
|
|
project.last_activity_at > RESET_PROJECT_ACTIVITY_INTERVAL.ago
|
|
|
|
end
|
2017-05-03 21:44:39 -04:00
|
|
|
|
|
|
|
def set_last_repository_updated_at
|
2017-06-21 09:48:12 -04:00
|
|
|
Project.unscoped.where(id: project_id)
|
2018-05-28 08:58:23 -04:00
|
|
|
.where("last_repository_updated_at < ? OR last_repository_updated_at IS NULL", REPOSITORY_UPDATED_AT_INTERVAL.ago)
|
2017-06-21 09:48:12 -04:00
|
|
|
.update_all(last_repository_updated_at: created_at)
|
2017-05-03 21:44:39 -04:00
|
|
|
end
|
2018-02-23 14:33:16 -05:00
|
|
|
|
2018-03-01 09:42:04 -05:00
|
|
|
def track_user_interacted_projects
|
2018-02-26 10:44:35 -05:00
|
|
|
# Note the call to .available? is due to earlier migrations
|
|
|
|
# that would otherwise conflict with the call to .track
|
|
|
|
# (because the table does not exist yet).
|
2018-03-03 14:00:05 -05:00
|
|
|
UserInteractedProject.track(self) if UserInteractedProject.available?
|
2018-02-23 14:33:16 -05:00
|
|
|
end
|
2012-02-28 08:09:23 -05:00
|
|
|
end
|