mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
fix active option detection
This commit is contained in:
parent
a5a798093d
commit
51e62ece26
1 changed files with 35 additions and 31 deletions
|
|
@ -190,48 +190,52 @@ class Auth
|
||||||
// Listen for user chose
|
// Listen for user chose
|
||||||
if (GtkResponseType::OK == $this->gtk->run())
|
if (GtkResponseType::OK == $this->gtk->run())
|
||||||
{
|
{
|
||||||
// Get active option
|
// Find active option
|
||||||
foreach ($this->_options as $id => $option)
|
foreach ($this->_options as $id => $option)
|
||||||
{
|
{
|
||||||
// Auth
|
if ($option->get_active())
|
||||||
if ($id)
|
|
||||||
{
|
{
|
||||||
// @TODO activate existing record
|
// Auth
|
||||||
}
|
if ($id)
|
||||||
|
|
||||||
// Generate new identity
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Detect driver
|
|
||||||
switch (true)
|
|
||||||
{
|
{
|
||||||
case mb_strtolower(
|
// @TODO activate existing record
|
||||||
parse_url(
|
}
|
||||||
$this->page->navbar->request->getValue(),
|
|
||||||
PHP_URL_SCHEME
|
|
||||||
)
|
|
||||||
) == 'gemini':
|
|
||||||
|
|
||||||
// Init identity model
|
// Generate new identity
|
||||||
$identity = new Gemini;
|
else
|
||||||
|
{
|
||||||
|
// Detect driver
|
||||||
|
switch (true)
|
||||||
|
{
|
||||||
|
case mb_strtolower(
|
||||||
|
parse_url(
|
||||||
|
$this->page->navbar->request->getValue(),
|
||||||
|
PHP_URL_SCHEME
|
||||||
|
)
|
||||||
|
) == 'gemini':
|
||||||
|
|
||||||
// Add new auth record
|
// Init identity model
|
||||||
$this->page->container->browser->database->auth->add(
|
$identity = new Gemini;
|
||||||
$this->page->container->browser->database->identity->add(
|
|
||||||
$identity->crt(),
|
|
||||||
$identity->key(),
|
|
||||||
$this->_name->get_text() ? $this->_name->get_text() : null
|
|
||||||
),
|
|
||||||
$this->page->navbar->request->getValue()
|
|
||||||
);
|
|
||||||
|
|
||||||
break;
|
// Add new auth record
|
||||||
|
$this->page->container->browser->database->auth->add(
|
||||||
|
$this->page->container->browser->database->identity->add(
|
||||||
|
$identity->crt(),
|
||||||
|
$identity->key(),
|
||||||
|
$this->_name->get_text() ? $this->_name->get_text() : null
|
||||||
|
),
|
||||||
|
$this->page->navbar->request->getValue()
|
||||||
|
);
|
||||||
|
|
||||||
default:
|
break;
|
||||||
|
|
||||||
throw new Exception;
|
default:
|
||||||
|
|
||||||
|
throw new Exception;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->gtk->destroy();
|
$this->gtk->destroy();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue