mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
ef85f49adc
Summary: This commit doesn't change license of any file. It just makes the license implicit (inherited from LICENSE file in the root directory). We are removing the headers for these reasons: - It wastes space in editors, less code is visible in editor upon opening a file. - It brings noise to diff of the first change of any file every year. - It confuses Git file copy detection when creating small files. - We don't have an explicit license header in other files (JS, CSS, images, documentation). - Using license header in every file is not obligatory: http://www.apache.org/dev/apply-license.html#new. This change is approved by Alma Chao (Lead Open Source and IP Counsel at Facebook). Test Plan: Verified that the license survived only in LICENSE file and that it didn't modify externals. Reviewers: epriestley, davidrecordon Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2035 Differential Revision: https://secure.phabricator.com/D3886
65 lines
1.6 KiB
PHP
65 lines
1.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group phame
|
|
*/
|
|
final class PhameResourceController extends CelerityResourceController {
|
|
|
|
private $id;
|
|
private $hash;
|
|
private $name;
|
|
private $root;
|
|
|
|
protected function getRootDirectory() {
|
|
return $this->root;
|
|
}
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->id = $data['id'];
|
|
$this->hash = $data['hash'];
|
|
$this->name = $data['name'];
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$user = $request->getUser();
|
|
|
|
// We require a visible blog associated with a given skin to serve
|
|
// resources, so you can't go fishing around where you shouldn't be.
|
|
|
|
$blog = id(new PhameBlogQuery())
|
|
->setViewer($user)
|
|
->withIDs(array($this->id))
|
|
->executeOne();
|
|
if (!$blog) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$skin = $blog->getSkinRenderer($request);
|
|
$spec = $skin->getSpecification();
|
|
|
|
$this->root = $spec->getRootDirectory().DIRECTORY_SEPARATOR;
|
|
return $this->serveResource($this->name, $package_hash = null);
|
|
}
|
|
|
|
protected function buildResourceTransformer() {
|
|
$xformer = new CelerityResourceTransformer();
|
|
$xformer->setMinify(false);
|
|
$xformer->setTranslateURICallback(array($this, 'translateResourceURI'));
|
|
return $xformer;
|
|
}
|
|
|
|
public function translateResourceURI(array $matches) {
|
|
$uri = trim($matches[1], "'\" \r\t\n");
|
|
|
|
if (Filesystem::pathExists($this->root.$uri)) {
|
|
$hash = filemtime($this->root.$uri);
|
|
} else {
|
|
$hash = '-';
|
|
}
|
|
|
|
$uri = '/phame/r/'.$this->id.'/'.$hash.'/'.$uri;
|
|
return 'url('.$uri.')';
|
|
}
|
|
|
|
}
|