mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
have webfinger output a JSON file in STORAGE_ROOT/webfinger/(acct/..)
This commit is contained in:
parent
326cc2a451
commit
0ab43ef4fd
@ -34,6 +34,8 @@ update-rc.d php-fastcgi defaults
|
|||||||
# Put our webfinger server script into a well-known location.
|
# Put our webfinger server script into a well-known location.
|
||||||
cp tools/webfinger.php /usr/local/bin/mailinabox-webfinger.php
|
cp tools/webfinger.php /usr/local/bin/mailinabox-webfinger.php
|
||||||
chown www-data.www-data /usr/local/bin/mailinabox-webfinger.php
|
chown www-data.www-data /usr/local/bin/mailinabox-webfinger.php
|
||||||
|
mkdir -p $STORAGE_ROOT/webfinger/acct;
|
||||||
|
chown -R $STORAGE_USER $STORAGE_ROOT/webfinger
|
||||||
|
|
||||||
# Start services.
|
# Start services.
|
||||||
service nginx restart
|
service nginx restart
|
||||||
|
@ -1,9 +1,42 @@
|
|||||||
<?php
|
<?php
|
||||||
$resource = $_GET['resource'];
|
$resource = $_GET['resource'];
|
||||||
|
|
||||||
|
// Parse our configuration file to get the STORAGE_ROOT.
|
||||||
|
$STORAGE_ROOT = NULL;
|
||||||
|
foreach (file("/etc/mailinabox.conf") as $line) {
|
||||||
|
$line = explode("=", rtrim($line), 2);
|
||||||
|
if ($line[0] == "STORAGE_ROOT") {
|
||||||
|
$STORAGE_ROOT = $line[1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($STORAGE_ROOT == NULL) exit("no STORAGE_ROOT");
|
||||||
|
|
||||||
|
// Turn the resource into a file path. First URL-encode the resource
|
||||||
|
// so that it is filepath-safe.
|
||||||
|
$fn = urlencode($resource);
|
||||||
|
|
||||||
|
// Replace the first colon (it's URL-encoded) with a slash since we'll
|
||||||
|
// break off the files into scheme subdirectories.
|
||||||
|
$fn = preg_replace("/%3A/", "/", $fn, 1);
|
||||||
|
|
||||||
|
// Since this is often for email addresses, un-escape @-signs so they
|
||||||
|
// are not odd-looking. It's filename-safe anyway.
|
||||||
|
$fn = preg_replace("/%40/", "@", $fn);
|
||||||
|
|
||||||
|
// Combine with root path.
|
||||||
|
$fn = $STORAGE_ROOT . "/webfinger/" . $fn . ".json";
|
||||||
|
|
||||||
|
// See if the file exists.
|
||||||
|
if (!file_exists($fn)) {
|
||||||
|
header("HTTP/1.0 404 Not Found");
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
header("Content-type: application/json");
|
header("Content-type: application/json");
|
||||||
echo json_encode(array(
|
echo file_get_contents($fn);
|
||||||
subject => $resource,
|
|
||||||
), JSON_PRETTY_PRINT);
|
//json_encode(array(
|
||||||
|
// subject => $resource,
|
||||||
|
//), JSON_PRETTY_PRINT);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user