summaryrefslogtreecommitdiff
path: root/app/models/event.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add username to activity atom feed (!10802)winniehell2017-04-261-1/+1
|
* Merge branch '28058-hide-emails-in-atom-feeds' into 'security'Rémy Coutable2017-03-201-1/+1
| | | | | | Only show public emails in atom feeds See merge request !2066
* Add performance query regression fix for !9088 affecting #2726727267-events-project-query-performance-regressionOswaldo Ferreira2017-02-241-1/+1
|
* Revert "Prefer leading style for Style/DotPosition"Douwe Maan2017-02-231-3/+3
| | | | This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b.
* Enable Style/WordArrayDouwe Maan2017-02-231-1/+1
|
* Prefer leading style for Style/DotPositionDouwe Maan2017-02-231-3/+3
|
* Merge branch '22645-add-discussion-contribs-to-calendar' into 'master' Sean McGivern2017-02-141-3/+4
|\ | | | | | | | | | | | | Add discussion events to contributions calendar Closes #22645 See merge request !8821
| * Add comment events to contributions calendar22645-add-discussion-contribs-to-calendarRémy Coutable2017-02-131-3/+4
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Use preload for Event#target since it's a polymorphic association27395-reduce-group-activity-sql-queriesRémy Coutable2017-02-131-1/+1
| | | | | | | | | | | | Also, don't use limit in subquery, MySQL don't like that. Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Include :author, :project, and :target in Event.with_associationsRémy Coutable2017-02-131-1/+1
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Don't instantiate AR objects in Event.in_projectsRémy Coutable2017-02-131-1/+1
|/ | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Removed data-user-is view codeevents-cache-invalidationYorick Peterse2016-11-251-0/+4
| | | | With events no longer being cached this is no longer needed.
* Remove event caching codeYorick Peterse2016-11-231-6/+0
| | | | | | | | | | | | | | | | | | | Flushing the events cache worked by updating a recent number of rows in the "events" table. This has the result that on PostgreSQL a lot of dead tuples are produced on a regular basis. This in turn means that PostgreSQL will spend considerable amounts of time vacuuming this table. This in turn can lead to an increase of database load. For GitLab.com we measured the impact of not using events caching and found no measurable increase in response timings. Meanwhile not flushing the events cache lead to the "events" table having no more dead tuples as now rows are only inserted into this table. As a result of this we are hereby removing events caching as it does not appear to help and only increases database load. For more information see the following comment: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6578#note_18864037
* Allow commit note to be visible if repo is visible23824-activity-page-does-not-show-commits-commentsRémy Coutable2016-11-161-3/+3
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Merge branch '23403-fix-events-for-private-project-features' into 'security'Robert Speicher2016-11-091-1/+2
| | | | | | | | | | | | Respect project visibility settings in the contributions calendar This MR fixes a number of bugs relating to access controls and date selection of events for the contributions calendar Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/23403 See merge request !2019 Signed-off-by: Rémy Coutable <remy@rymai.me>
* Optimize Event queries by removing default order23106-events-default-scope-results-in-a-slow-queryAlejandro Rodríguez2016-10-271-1/+1
|
* Differentiate the expire from leave eventCallum Dryden2016-10-201-1/+8
| | | | | | | | | | At the moment we cannot see weather a user left a project due to their membership expiring of if they themselves opted to leave the project. This adds a new event type that allows us to make this differentiation. Note that is not really feasable to go back and reliably fix up the previous events. As a result the events for previous expire removals will remain the same however events of this nature going forward will be correctly represented.
* Make guests unable to view MRsguests_cant_see_mrsValery Sizov2016-10-111-1/+7
|
* Fix Event#reset_project_activity updatessh-fix-events-update-specStan Hu2016-10-061-1/+1
| | | | | | | | !6678 removed the lease from Event#reset_project_activity, but it wasn't actually updating the project's last_activity_at timestamp properly. The WHERE clause would always return no matching projects. The spec passed occasionally because the created_at timestamp was automatically set to last_activity_at.
* Remove lease from Event#reset_project_activityremove-reset-project-activity-leaseYorick Peterse2016-10-041-12/+7
| | | | | | | | | | | | | | Per GitLab.com's performance metrics this method could take up to 5 seconds of wall time to complete, while only taking 1-2 milliseconds of CPU time. Removing the Redis lease in favour of conditional updates allows us to work around this. A slight drawback is that this allows for multiple threads/processes to try and update the same row. However, only a single thread/process will ever win since the UPDATE query uses a WHERE condition to only update rows that were not updated in the last hour. Fixes gitlab-org/gitlab-ce#22473
* Fix broken spec due to last_activity_at updates being throttledStan Hu2016-09-191-4/+14
| | | | | | | In https://gitlab.com/gitlab-org/gitlab-ce/builds/4218398, the build failed because the last_activity_at column was only being updated once per hour. We can fix this spec by stubbing out the throttling and adjusting the spec to test the right event timestamp.
* Restrict last_activity_at updates to one per hourYorick Peterse2016-09-191-3/+14
| | | | | | | The lock in turn is only obtained when actually needed, reducing some load on Redis. Fixes gitlab-org/gitlab-ce#22213
* remove Ability.abilitieshttp://jneen.net/2016-08-301-1/+1
|
* Use a more future-proof check for Note/LegacyDiffNote19092-fix-event-for-legacydiffnote-not-considered-noteRémy Coutable2016-07-061-1/+1
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Fix diff comments not showing up in activity feedRémy Coutable2016-07-041-2/+2
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Display last commit of deleted branch in push events (!4699)winniehell2016-06-281-1/+1
|
* Reduce duplication and branching logic in EventsHelperRobert Speicher2016-05-161-13/+8
| | | | Remove unused methods from Event model
* Rename `Event#note_project_snippet?` to `project_snippet_note?`Robert Speicher2016-05-161-1/+1
|
* Rename `Event#note_commit?` to `commit_note?`Robert Speicher2016-05-161-2/+2
|
* Simplify Event's target type-checkingRobert Speicher2016-05-161-3/+3
|
* Add an Event's target's title to its reference linkRobert Speicher2016-05-161-1/+1
| | | | | | | | Given an activity feed entry like: > Douwe Maan commented on [issue #123] at [gitlab-org/gitlab-ce] ...the `issue #123` link will now have a `title` attribute.
* Remove the annotate gem and delete old annotationsJeroen van Baarsen2016-05-091-16/+0
| | | | | | | | | In 8278b763d96ef10c6494409b18b7eb541463af29 the default behaviour of annotation has changes, which was causing a lot of noise in diffs. We decided in #17382 that it is better to get rid of the whole annotate gem, and instead let people look at schema.rb for the columns in a table. Fixes: #17382
* Annotate the modelsZeger-Jan van de Weg2016-05-061-2/+2
|
* Throttle the update of `project.last_activity_at` to 1 minute15094-throttle-update-of-last_activity_atRémy Coutable2016-04-251-1/+1
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Rename `Event#proper?` to `Event#visible_to_user?`Douglas Barbosa Alexandre2016-03-241-1/+1
|
* Comments on confidential issues doesn't show in activity feed to non-membersDouglas Barbosa Alexandre2016-03-241-2/+6
|
* Restrict access to confidential issues on activity feedDouglas Barbosa Alexandre2016-03-171-2/+4
|
* Various filter fixesJosh Frye2016-02-041-1/+1
|
* Use Atom update times of the first eventevents-performanceYorick Peterse2016-01-271-7/+1
| | | | | | | | | By simply loading the first event from the already sorted set we save ourselves extra (slow) queries just to get the latest update timestamp. This removes the need for Event.latest_update_time and significantly reduces the time needed to build an Atom feed. Fixes gitlab-org/gitlab-ce#12415
* Don't pluck project IDs for eventsYorick Peterse2016-01-261-1/+5
| | | | | By instead using a sub-query we save ourselves the overhead of loading any data into memory only to pass it on to another query.
* Don't show project fork event as importedDouwe Maan2015-12-021-1/+1
|
* Added Event.limit_recentYorick Peterse2015-11-181-0/+4
| | | | | This will be used to move some querying logic from the users controller to the Event model (where it belongs).
* Faster way of obtaining latest event update timeYorick Peterse2015-11-181-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of using MAX(events.updated_at) we can simply sort the events in descending order by the "id" column and grab the first row. In other words, instead of this: SELECT max(events.updated_at) AS max_id FROM events LEFT OUTER JOIN projects ON projects.id = events.project_id LEFT OUTER JOIN namespaces ON namespaces.id = projects.namespace_id WHERE events.author_id IS NOT NULL AND events.project_id IN (13083); we can use this: SELECT events.updated_at AS max_id FROM events LEFT OUTER JOIN projects ON projects.id = events.project_id LEFT OUTER JOIN namespaces ON namespaces.id = projects.namespace_id WHERE events.author_id IS NOT NULL AND events.project_id IN (13083) ORDER BY events.id DESC LIMIT 1; This has the benefit that on PostgreSQL a backwards index scan can be used, which due to the "LIMIT 1" will at most process only a single row. This in turn greatly speeds up the process of grabbing the latest update time. This can be confirmed by looking at the query plans. The first query produces the following plan: Aggregate (cost=43779.84..43779.85 rows=1 width=12) (actual time=2142.462..2142.462 rows=1 loops=1) -> Index Scan using index_events_on_project_id on events (cost=0.43..43704.69 rows=30060 width=12) (actual time=0.033..2138.086 rows=32769 loops=1) Index Cond: (project_id = 13083) Filter: (author_id IS NOT NULL) Planning time: 1.248 ms Execution time: 2142.548 ms The second query in turn produces the following plan: Limit (cost=0.43..41.65 rows=1 width=16) (actual time=1.394..1.394 rows=1 loops=1) -> Index Scan Backward using events_pkey on events (cost=0.43..1238907.96 rows=30060 width=16) (actual time=1.394..1.394 rows=1 loops=1) Filter: ((author_id IS NOT NULL) AND (project_id = 13083)) Rows Removed by Filter: 2104 Planning time: 0.166 ms Execution time: 1.408 ms According to the above plans the 2nd query is around 1500 times faster. However, re-running the first query produces timings of around 80 ms, making the 2nd query "only" around 55 times faster.
* Change "recent" scopes to sort by "id"Yorick Peterse2015-11-111-1/+1
| | | | | | | These scopes can just sort by the "id" column in descending order to achieve the same result. An added benefit is being able to perform a backwards index scan (depending on the rest of the final query) instead of having to actually sort data.
* Create a "destroyed Milestone" event and keep Milestone events around in the DBStan Hu2015-09-151-2/+10
| | | | | | | | | | | for posterity. Also fix issue where destroying a Milestone would cause odd, transient messages like "created milestone" or "imported milestone". Add "in" preposition when creating and destroying milestones Closes #2382
* 'created_at DESC' is performed twicecatatsuy2015-07-021-1/+1
| | | | | | | | If you are already sorting in descending order in the created_at, it is run twice when you run the .recent. It has passed in the string 'created_at DESC'. Ruby on Rails is directly given to the SQL. It is a slow query in MySQL.
* Change text of project creation event for imports.import-eventDouwe Maan2015-04-061-1/+5
|
* Refactor contributions events and write tests for calendarDmitriy Zaporozhets2015-03-221-0/+6
|
* List new commits for newly pushed branch in activity view.Douwe Maan2015-03-181-1/+1
|
* Use Gitlab::Git helper methods and constants as much as possible.Douwe Maan2015-03-101-6/+6
|