mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-02 23:48:18 +02:00
Summary: Ref T4245. Make `/diffusion/123/` work, but redirect the user to `/diffusion/XYZ/` if the repository has a callsign. (Right now, every repository has a callsign, so this always redirects.) Also redirect `/R123:abcdef` if the repository has a callsign. Also also, move the Pull garbage collector somewhere more sensible. Test Plan: - Added test coverage. - Visited `/diffusion/1/`, was redirected. - Visited `/diffusion/R1:abcdef`, was redirected. - Browsed Diffusion normally. Reviewers: chad Reviewed By: chad Maniphest Tasks: T4245 Differential Revision: https://secure.phabricator.com/D15301
29 lines
663 B
PHP
29 lines
663 B
PHP
<?php
|
|
|
|
final class DiffusionPullEventGarbageCollector
|
|
extends PhabricatorGarbageCollector {
|
|
|
|
const COLLECTORCONST = 'diffusion.pull';
|
|
|
|
public function getCollectorName() {
|
|
return pht('Repository Pull Events');
|
|
}
|
|
|
|
public function getDefaultRetentionPolicy() {
|
|
return phutil_units('30 days in seconds');
|
|
}
|
|
|
|
protected function collectGarbage() {
|
|
$table = new PhabricatorRepositoryPullEvent();
|
|
$conn_w = $table->establishConnection('w');
|
|
|
|
queryfx(
|
|
$conn_w,
|
|
'DELETE FROM %T WHERE epoch < %d LIMIT 100',
|
|
$table->getTableName(),
|
|
$this->getGarbageEpoch());
|
|
|
|
return ($conn_w->getAffectedRows() == 100);
|
|
}
|
|
|
|
}
|