opentrashmail/web/index.php

117 lines
3.5 KiB
PHP
Raw Normal View History

2023-11-08 18:24:48 +00:00
<?php
define('DS', DIRECTORY_SEPARATOR);
define('ROOT', dirname(__FILE__));
include_once(ROOT.DS.'inc'.DS.'core.php');
$url = array_filter(explode('/',ltrim(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH),'/')));
if($_SERVER['HTTP_HX_REQUEST']!='true')
{
if(!file_exists(ROOT.DS.implode('/', $url)))
exit(file_get_contents(ROOT.DS.'index.html'));
else return false;
}
$api = new OpenTrashmailAPI($url);
$answer = $api->run();
if($answer === false)
return false;
else
echo $answer;
class OpenTrashmailAPI{
private $url;
private $settings;
public function __construct($url){
$this->url = $url;
$this->settings = loadSettings();
}
public function run(){
switch($this->url[0]){
case 'address':
return $this->listAccount($_REQUEST['email']?:$this->url[1]);
case 'read':
return $this->readMail($_REQUEST['email'],$_REQUEST['id']);
case 'attachment':
return $this->getAttachment($this->url[1],$this->url[2],$this->url[3]);
case 'delete':
return $this->deleteMail($_REQUEST['email'],$_REQUEST['id']);
default:
return false;
}
}
function getAttachment($email,$id,$attachment)
{
if(!filter_var($email, FILTER_VALIDATE_EMAIL))
return $this->error('Invalid email address');
else if(!ctype_digit($id))
return $this->error('Invalid id');
else if(!emailIDExists($email,$id))
return $this->error('Email not found');
else if(!attachmentExists($email,$id,$attachment))
return $this->error('Attachment not found');
$dir = getDirForEmail($email);
$file = $dir.DS.'attachments'.DS.$id.'-'.$attachment;
$mime = mime_content_type($file);
header('Content-Type: '.$mime);
header('Content-Length: ' . filesize($file));
readfile($file);
exit;
}
function readMail($email,$id)
{
if(!filter_var($email, FILTER_VALIDATE_EMAIL))
return $this->error('Invalid email address');
else if(!ctype_digit($id))
return $this->error('Invalid id');
else if(!emailIDExists($email,$id))
return $this->error('Email not found');
$email = getEmail($email,$id);
//$email['raw'] = file_get_contents(getDirForEmail($email['email']).DS.$email['id'].'.json');
//$email['parsed'] = json_decode($email['raw'],true);
var_dump($email);
return $this->renderPartial('email',[
'email'=>$email,
'mailid'=>$id,
]);
}
public function listAccount($email)
{
if(!filter_var($email, FILTER_VALIDATE_EMAIL))
return $this->error('Invalid email address');
$emails = getEmailsOfEmail($email);
var_dump($emails);
return $this->renderPartial('email-table',[
'email'=>$email,
'emails'=>$emails,
'dateformat'=>$this->settings['DATEFORMAT']
]);
}
public function error($text)
{
return '<h1>'.$text.'</h1>';
}
public function renderPartial($partialname,$variables=[])
{
ob_start();
if(is_array($variables))
extract($variables);
if(file_exists(ROOT.DS.'partials'.DS.$partialname.'.html.php'))
include(ROOT.DS.'partials'.DS.$partialname.'.html.php');
$rendered = ob_get_contents();
ob_end_clean();
return $rendered;
}
}