page: api attribute indicate index requests
[minimedit.git] / mail / index.php
index 67a076e157cf85614b9ea6cc0142dc279386bba0..ee7365aa62cb321de3af6581704edea85cf063e2 100644 (file)
@@ -2,26 +2,38 @@
 $mailbox = 'mail/inbox';
 @list ($msgid) = explode('/', ltrim($Page->path, '/'));
 
+if (!function_exists('parsemailhead')) {
 function parsemailhead($headerdata)
 {
        $headlist = iconv_mime_decode_headers($headerdata, ICONV_MIME_DECODE_CONTINUE_ON_ERROR);
        $headlist['date'] = DateTime::createFromFormat(DateTimeInterface::RFC2822.'+', $headlist['Date']);
-       $headlist['from'] = mailparse_rfc822_parse_addresses($headlist['From']);
-       //TODO: imap_rfc822_parse_adrlist() alternative
+       $headlist['from'] = imap_rfc822_parse_adrlist($headlist['From'], '');
+       array_walk($headlist['from'], function ($row) {
+               $row->display = $row->personal ?? $row->mailbox;
+       });
        return $headlist;
 }
+}
 
 if ($msgid) {
        $filename = "$mailbox/$msgid";
+       if (!is_readable($filename)) {
+               return TRUE;
+       }
+
        list ($headerdata, $rawbody) = explode("\n\n", file_get_contents($filename), 2);
        $head = parsemailhead($headerdata);
+       $head['date']->setTimezone(new DateTimeZone(date_default_timezone_get()));
 
        $Page->title = 'Mailbericht ' . $head['date']->format('Y-m-d H:i');
        printf("<h2>%s</h2>\n", htmlspecialchars($head['Subject'] ?? 'Mailbericht zonder onderwerp'));
 
-       print '<dl class="terse">';
-       printf('<dt>Ontvangen:</dt><dd>%s</dd>', $head['date']->format('c'));
-       printf('<dt>Verzender:</dt><dd>%s</dd>', htmlspecialchars($head['from'][0]['display']));
+       printf('<h3><a href="mailto:%s">%s</a> <small class="date" title="%s">%s</small></h3>'."\n",
+               htmlspecialchars($head['From']),
+               htmlspecialchars(implode(', ', array_column($head['from'], 'display'))),
+               htmlspecialchars($head['Date']),
+               showdate(preg_split('/\D/', $head['date']->format('c')))
+       );
        print '</dl>';
 
        if (preg_match('{^text/plain}', $head['Content-Type'] ?? 'text/plain')) {
@@ -43,10 +55,13 @@ if ($msgid) {
        return;
 }
 
+if ($Page->api) {
+       return;
+}
 if (!$User->admin('user')) {
        http_response_code(403);
-       $Place['warn'] = "Geen gebruikersrechten om e-mails in te zien.";
-       $Place['maillist'] = '';
+       $Page->place['warn'] = "Geen gebruikersrechten om e-mails in te zien.";
+       $Page->place['maillist'] = '';
        return TRUE;
 }
 
@@ -54,22 +69,39 @@ $rows = glob("$mailbox/*");
 if (!$rows) {
        throw new Exception('Kon inbox niet openen.');
 }
-array_splice($rows, 0, -50);
+
+$nav = [
+       'start' => $_GET['start'] ?? 0,
+       'n'     => $_GET['n'] ?? 10,
+       'total' => count($rows),
+];
+$rows = array_slice(array_reverse($rows), $nav['start'], $nav['n']);
 
 ob_start();
 print '<ul>';
 foreach (array_reverse($rows) as $filename) {
-       list ($headerdata) = explode("\n\n", file_get_contents($filename));
-       $head = parsemailhead($headerdata);
+       if (!is_readable($filename)) {
+               continue;
+       }
 
        printf('<li><a href="%s">', "/{$Page->handler}/".basename($filename));
 
+       list ($headerdata) = explode("\n\n", file_get_contents($filename));
+       $head = parsemailhead($headerdata);
+
        print $head['Subject'];
-       printf(' <small class="date">%s</small>',
+       printf(' <small class="date" title="%s">%s</small>',
+               htmlspecialchars($head['Date']),
                showdate(explode('-', $head['date']->format('Y-m-d')))
        );
-       print ' <em class="right">'.htmlspecialchars($head['from'][0]['display']).'</em>';
+       printf(' <em class="right" title="%s">%s</em>',
+               htmlspecialchars($head['From']),
+               htmlspecialchars(implode(', ', array_column($head['from'], 'display')))
+       );
        print "</a></li>\n";
 }
 print "</ul>\n";
-$Place['maillist'] = ob_get_clean();
+
+print $Page->widget('nav', $nav);
+
+$Page->place['maillist'] = ob_get_clean();