Yoda/src/Controller/Browser.php
2024-04-10 11:29:22 +03:00

273 lines
No EOL
6.7 KiB
PHP

<?php
declare(strict_types=1);
namespace Yggverse\Yoda\Controller;
class Browser extends \Yggverse\Yoda\Abstract\Window
{
public \Yggverse\Yoda\Entity\Box\Tab $tab;
public \Yggverse\Yoda\Model\Memory $memory;
public function __construct()
{
parent::__construct(
\Yggverse\Yoda\Model\File::getConfig()
);
$this->memory = new \Yggverse\Yoda\Model\Memory();
$this->tab = new \Yggverse\Yoda\Entity\Box\Tab();
$this->tab->navigation->address->entry->connect(
'activate',
function ($entry)
{
$this->navigate(
$entry->get_text()
);
}
);
if ($this->config->interface->window->navigation->button->go)
{
$this->tab->navigation->go->button->connect(
'released',
function ($entry)
{
$this->navigate(
$this->tab->navigation->address->entry->get_text()
);
}
);
}
if ($this->config->interface->window->navigation->button->reload)
{
$this->tab->navigation->reload->button->connect(
'released',
function ($entry)
{
$this->navigate(
$this->tab->navigation->address->entry->get_text()
);
}
);
}
if ($this->config->interface->window->navigation->button->home && $this->config->homepage)
{
$this->tab->navigation->home->button->connect(
'released',
function ($entry)
{
$this->tab->navigation->address->entry->set_text(
$this->config->homepage
);
$this->navigate(
$this->config->homepage
);
}
);
$this->tab->navigation->home->button->set_sensitive(
!($this->tab->navigation->address->entry->get_text() == $this->config->homepage)
);
}
$this->navigate(
$this->tab->navigation->address->entry->get_text()
);
$this->window->add(
$this->tab->box
);
$this->window->show_all();
}
public function navigate(string $url): void
{
switch (true)
{
case str_starts_with($url, 'gemini://'):
$this->_gemini(
$url
);
break;
case str_starts_with($url, 'yoda://'):
$this->_yoda(
$url
);
break;
default:
$this->_yoda(
'yoda://oops'
);
}
}
private function _yoda(string $url): void
{
if ($data = \Yggverse\Yoda\Model\Page::get(str_replace('yoda://', '', $url)))
{
$response = new \Yggverse\Gemini\Client\Response(
$data
);
$this->tab->content->label->set_text(
$data
);
$body = new \Yggverse\Gemini\Gemtext\Body(
$data
);
if ($h1 = $body->getH1())
{
$this->window->set_title(
$h1[0]
);
}
}
else
{
$data = \Yggverse\Yoda\Model\Page::get('Oops');
$this->tab->content->label->set_text(
$data
);
$body = new \Yggverse\Gemini\Gemtext\Body(
$data
);
if ($h1 = $body->getH1())
{
$this->window->set_title(
$h1[0]
);
}
}
if ($this->config->interface->window->navigation->button->home && $this->config->homepage)
{
$this->tab->navigation->home->button->set_sensitive(
!($url == $this->config->homepage)
);
}
}
private function _gemini(string $url): void
{
$this->tab->tray->label->set_text(
sprintf(
'Open %s...',
urldecode(
$url
)
)
);
$start = microtime(true);
$host = null;
if ($this->config->resolver->enabled)
{
$address = new \Yggverse\Net\Address(
$url
);
$name = $address->getHost();
if (!$host = $this->memory->get($name))
{
$resolve = new \Yggverse\Net\Resolve(
$this->config->resolver->request->record,
$this->config->resolver->request->host,
$this->config->resolver->request->timeout,
$this->config->resolver->result->shuffle
);
$resolved = $resolve->address(
$address
);
if ($resolved)
{
$host = $resolved->getHost();
$this->memory->set(
$name,
$host
);
}
}
}
$request = new \Yggverse\Gemini\Client\Request(
$url,
$host
);
$raw = $request->getResponse();
$end = microtime(true);
$response = new \Yggverse\Gemini\Client\Response(
$raw
);
$this->tab->content->label->set_text(
$response->getBody()
);
$body = new \Yggverse\Gemini\Gemtext\Body(
$response->getBody()
);
if ($h1 = $body->getH1())
{
$this->window->set_title(
sprintf(
'%s - Yoda',
empty($h1[0]) ? $address->getHost() : $h1[0]
)
);
}
$this->tab->tray->label->set_text(
sprintf(
'%s | %s | %d bytes | %s seconds',
date('c'),
$response->getMeta() ? $response->getMeta() : $response->getCode(),
number_format(
mb_strlen(
$raw
)
),
round(
$end - $start, 2
)
)
);
if ($this->config->interface->window->navigation->button->home && $this->config->homepage)
{
$this->tab->navigation->home->button->set_sensitive(
!($url == $this->config->homepage)
);
}
}
}