You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
<?php include "conf.php"; /* load a local configuration */ ?>
|
|
<?php session_start(); ?>
|
|
<?php require 'vendor/autoload.php'; /* composer includes */ ?>
|
|
<?php include "modulekit/loader.php"; /* loads all php-includes */ ?>
|
|
<?php call_hooks("init"); /* initialize submodules */ ?>
|
|
<?php
|
|
$allRepositories = getRepositories();
|
|
|
|
$repoId = $_REQUEST['repo'];
|
|
if (!array_key_exists($repoId, $allRepositories)) {
|
|
Header("HTTP/1.1 404 Repository not found");
|
|
exit(0);
|
|
}
|
|
|
|
$repoData = $allRepositories[$repoId];
|
|
$repo = getRepo($repoId, $repoData);
|
|
|
|
if (array_key_exists('list', $_REQUEST)) {
|
|
$contents = array();
|
|
foreach ($repo->scandir($_REQUEST['dir']) as $f) {
|
|
if (substr($f, 0, 1) !== '.') {
|
|
$contents[] = array('name' => $f);
|
|
}
|
|
}
|
|
|
|
$mime_type = 'application/json; charset=utf-8';
|
|
$contents = json_encode($contents);
|
|
}
|
|
else {
|
|
$tmpfile = tempnam('/tmp', 'osb-asset-');
|
|
$contents = $repo->file_get_contents((array_key_exists('dir', $_REQUEST) ? "{$_REQUEST['dir']}/" : '') . $_REQUEST['file']);
|
|
|
|
if ($contents === false) {
|
|
Header("HTTP/1.1 401 Permission denied");
|
|
exit(0);
|
|
}
|
|
|
|
file_put_contents($tmpfile, $contents);
|
|
$mime_type = mime_content_type($tmpfile);
|
|
}
|
|
|
|
Header("Content-Type: {$mime_type}; charset=utf-8");
|
|
Header("Cache-Control: max-age=86400");
|
|
print $contents;
|