Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
This commit is contained in:
commit
76b5c68646
@ -2,42 +2,33 @@
|
|||||||
|
|
||||||
namespace Zotlabs\Identity;
|
namespace Zotlabs\Identity;
|
||||||
|
|
||||||
class OAuth2Server {
|
class OAuth2Server extends \OAuth2\Server {
|
||||||
|
|
||||||
public $server;
|
public function __construct(OAuth2Storage $storage, $config = []) {
|
||||||
|
|
||||||
public function __construct() {
|
if(! is_array($config)) {
|
||||||
|
$config = [
|
||||||
|
'use_openid_connect' => true,
|
||||||
|
'issuer' => \Zotlabs\Lib\System::get_site_name()
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
$storage = new OAuth2Storage(\DBA::$dba->db);
|
parent::__construct($storage, $config);
|
||||||
|
|
||||||
$config = [
|
|
||||||
'use_openid_connect' => true,
|
|
||||||
'issuer' => \Zotlabs\Lib\System::get_site_name()
|
|
||||||
];
|
|
||||||
|
|
||||||
// Pass a storage object or array of storage objects to the OAuth2 server class
|
|
||||||
$this->server = new \OAuth2\Server($storage,$config);
|
|
||||||
|
|
||||||
// Add the "Client Credentials" grant type (it is the simplest of the grant types)
|
// Add the "Client Credentials" grant type (it is the simplest of the grant types)
|
||||||
$this->server->addGrantType(new \OAuth2\GrantType\ClientCredentials($storage));
|
$this->addGrantType(new \OAuth2\GrantType\ClientCredentials($storage));
|
||||||
|
|
||||||
// Add the "Authorization Code" grant type (this is where the oauth magic happens)
|
// Add the "Authorization Code" grant type (this is where the oauth magic happens)
|
||||||
$this->server->addGrantType(new \OAuth2\GrantType\AuthorizationCode($storage));
|
$this->addGrantType(new \OAuth2\GrantType\AuthorizationCode($storage));
|
||||||
|
|
||||||
$keyStorage = new \OAuth2\Storage\Memory( [
|
$keyStorage = new \OAuth2\Storage\Memory( [
|
||||||
'keys' => [
|
'keys' => [
|
||||||
'public_key' => get_config('system','pubkey'),
|
'public_key' => get_config('system', 'pubkey'),
|
||||||
'private_key' => get_config('system','prvkey')
|
'private_key' => get_config('system', 'prvkey')
|
||||||
]
|
]
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$this->server->addStorage($keyStorage,'public_key');
|
$this->addStorage($keyStorage, 'public_key');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_server() {
|
}
|
||||||
return $this->server;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
namespace Zotlabs\Module;
|
namespace Zotlabs\Module;
|
||||||
|
|
||||||
|
use Zotlabs\Identity\OAuth2Storage;
|
||||||
|
|
||||||
|
|
||||||
class Authorize extends \Zotlabs\Web\Controller {
|
class Authorize extends \Zotlabs\Web\Controller {
|
||||||
|
|
||||||
|
|
||||||
function init() {
|
function init() {
|
||||||
|
|
||||||
|
|
||||||
// workaround for HTTP-auth in CGI mode
|
// workaround for HTTP-auth in CGI mode
|
||||||
if (x($_SERVER, 'REDIRECT_REMOTE_USER')) {
|
if (x($_SERVER, 'REDIRECT_REMOTE_USER')) {
|
||||||
$userpass = base64_decode(substr($_SERVER["REDIRECT_REMOTE_USER"], 6)) ;
|
$userpass = base64_decode(substr($_SERVER["REDIRECT_REMOTE_USER"], 6)) ;
|
||||||
@ -28,41 +28,40 @@ class Authorize extends \Zotlabs\Web\Controller {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$s = new \Zotlabs\Identity\OAuth2Server();
|
$s = new \Zotlabs\Identity\OAuth2Server(new OAuth2Storage(\DBA::$dba->db));
|
||||||
|
|
||||||
$request = \OAuth2\Request::createFromGlobals();
|
$request = \OAuth2\Request::createFromGlobals();
|
||||||
$response = new \OAuth2\Response();
|
$response = new \OAuth2\Response();
|
||||||
|
|
||||||
// validate the authorize request
|
// validate the authorize request
|
||||||
if (! $s->server->validateAuthorizeRequest($request, $response)) {
|
if (! $s->validateAuthorizeRequest($request, $response)) {
|
||||||
$response->send();
|
$response->send();
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
|
||||||
// display an authorization form
|
// display an authorization form
|
||||||
if (empty($_POST)) {
|
if (empty($_POST)) {
|
||||||
|
|
||||||
return '
|
return '
|
||||||
<form method="post">
|
<form method="post">
|
||||||
<label>Do You Authorize TestClient?</label><br />
|
<label>Do You Authorize TestClient?</label><br />
|
||||||
<input type="submit" name="authorized" value="yes">
|
<input type="submit" name="authorized" value="yes">
|
||||||
<input type="submit" name="authorized" value="no">
|
<input type="submit" name="authorized" value="no">
|
||||||
</form>';
|
</form>';
|
||||||
|
}
|
||||||
|
|
||||||
|
// print the authorization code if the user has authorized your client
|
||||||
|
$is_authorized = ($_POST['authorized'] === 'yes');
|
||||||
|
$s->handleAuthorizeRequest($request, $response, $is_authorized, local_channel());
|
||||||
|
if ($is_authorized) {
|
||||||
|
// this is only here so that you get to see your code in the cURL request. Otherwise,
|
||||||
|
// we'd redirect back to the client
|
||||||
|
$code = substr($response->getHttpHeader('Location'), strpos($response->getHttpHeader('Location'), 'code=')+5, 40);
|
||||||
|
echo("SUCCESS! Authorization Code: $code");
|
||||||
|
}
|
||||||
|
|
||||||
|
$response->send();
|
||||||
|
killme();
|
||||||
}
|
}
|
||||||
|
|
||||||
// print the authorization code if the user has authorized your client
|
}
|
||||||
$is_authorized = ($_POST['authorized'] === 'yes');
|
|
||||||
$s->server->handleAuthorizeRequest($request, $response, $is_authorized, local_channel());
|
|
||||||
if ($is_authorized) {
|
|
||||||
// this is only here so that you get to see your code in the cURL request. Otherwise,
|
|
||||||
// we'd redirect back to the client
|
|
||||||
$code = substr($response->getHttpHeader('Location'), strpos($response->getHttpHeader('Location'), 'code=')+5, 40);
|
|
||||||
echo("SUCCESS! Authorization Code: $code");
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
$response->send();
|
|
||||||
killme();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
namespace Zotlabs\Module;
|
namespace Zotlabs\Module;
|
||||||
|
|
||||||
|
use Zotlabs\Identity\OAuth2Storage;
|
||||||
|
|
||||||
|
|
||||||
class Token extends \Zotlabs\Web\Controller {
|
class Token extends \Zotlabs\Web\Controller {
|
||||||
|
|
||||||
@ -26,11 +28,10 @@ class Token extends \Zotlabs\Web\Controller {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$s = new \Zotlabs\Identity\OAuth2Server(new OAuth2Storage(\DBA::$dba->db));
|
||||||
$s = new \Zotlabs\Identity\OAuth2Server();
|
$s->handleTokenRequest(\OAuth2\Request::createFromGlobals())->send();
|
||||||
$s->server->handleTokenRequest(\OAuth2\Request::createFromGlobals())->send();
|
|
||||||
|
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -21,4 +21,4 @@ function run() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -10,11 +10,15 @@ function run() {
|
|||||||
DROP INDEX item_type,
|
DROP INDEX item_type,
|
||||||
ADD INDEX uid_item_type (uid, item_type)
|
ADD INDEX uid_item_type (uid, item_type)
|
||||||
");
|
");
|
||||||
|
|
||||||
|
if($r)
|
||||||
|
return UPDATE_SUCCESS;
|
||||||
|
return UPDATE_FAILED;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return UPDATE_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($r)
|
|
||||||
return UPDATE_SUCCESS;
|
|
||||||
return UPDATE_FAILED;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -6,10 +6,22 @@ class _1201 {
|
|||||||
|
|
||||||
function run() {
|
function run() {
|
||||||
|
|
||||||
// empty update in order to make the DB_UPDATE_VERSION equal to the current maximum update function
|
if(ACTIVE_DBTYPE == DBTYPE_MYSQL) {
|
||||||
// rather than being one greater than the last known update
|
$r = q("ALTER TABLE item
|
||||||
|
DROP INDEX item_thread_top,
|
||||||
|
ADD INDEX uid_item_thread_top (uid, item_thread_top),
|
||||||
|
ADD INDEX uid_item_blocked (uid, item_blocked),
|
||||||
|
ADD INDEX item_deleted_pending_remove_changed (item_deleted, item_pending_remove, changed)
|
||||||
|
");
|
||||||
|
|
||||||
return UPDATE_SUCCESS;
|
if($r)
|
||||||
|
return UPDATE_SUCCESS;
|
||||||
|
return UPDATE_FAILED;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return UPDATE_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
}
|
||||||
|
15
Zotlabs/Update/_1202.php
Normal file
15
Zotlabs/Update/_1202.php
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Zotlabs\Update;
|
||||||
|
|
||||||
|
class _1202 {
|
||||||
|
|
||||||
|
function run() {
|
||||||
|
|
||||||
|
// empty update in order to make the DB_UPDATE_VERSION equal to the current maximum update function
|
||||||
|
// rather than being one greater than the last known update
|
||||||
|
|
||||||
|
return UPDATE_SUCCESS;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -438,7 +438,7 @@ function bb_summary($match) {
|
|||||||
$rnd3 = mt_rand();
|
$rnd3 = mt_rand();
|
||||||
$rnd4 = mt_rand();
|
$rnd4 = mt_rand();
|
||||||
|
|
||||||
return $match[1] . '<div style="display: block;" id="opendiv-' . $rnd2 . '">' . $match[2] . '</div><div style="display: block;" id="opendiv-' . $rnd3 . '" onclick="openClose(\'opendiv-' . $rnd1 . '\'); openClose(\'opendiv-' . $rnd2 . '\'); openClose(\'opendiv-' . $rnd3 . '\'); openClose(\'opendiv-' . $rnd4 . '\'); return false;" class="fakelink">' . t('View article') . '</div><div style="display: none;" id="opendiv-' . $rnd4 . '" onclick="openClose(\'opendiv-' . $rnd1 . '\'); openClose(\'opendiv-' . $rnd2 . '\'); openClose(\'opendiv-' . $rnd3 . '\'); openClose(\'opendiv-' . $rnd4 . '\'); return false;" class="fakelink">' . t('View summary') . '</div><div id="opendiv-' . $rnd1 . '" style="display: none;">' . $match[3] . '</div>';
|
return $match[1] . '<div style="display: block;" id="opendiv-' . $rnd2 . '">' . $match[2] . '</div><div style="display: block;" id="opendiv-' . $rnd3 . '" onclick="openClose(\'opendiv-' . $rnd1 . '\'); openClose(\'opendiv-' . $rnd2 . '\'); openClose(\'opendiv-' . $rnd3 . '\'); openClose(\'opendiv-' . $rnd4 . '\'); return false;" class="fakelink view-article">' . t('View article') . '</div><div style="display: none;" id="opendiv-' . $rnd4 . '" onclick="openClose(\'opendiv-' . $rnd1 . '\'); openClose(\'opendiv-' . $rnd2 . '\'); openClose(\'opendiv-' . $rnd3 . '\'); openClose(\'opendiv-' . $rnd4 . '\'); return false;" class="fakelink view-summary">' . t('View summary') . '</div><div id="opendiv-' . $rnd1 . '" style="display: none;">' . $match[3] . '</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -628,7 +628,7 @@ function bb_code_unprotect_sub($match) {
|
|||||||
|
|
||||||
function bb_code($match) {
|
function bb_code($match) {
|
||||||
if(strpos($match[0], "<br />"))
|
if(strpos($match[0], "<br />"))
|
||||||
return '<code>' . bb_code_protect(trim($match[1])) . '</code>';
|
return '<pre><code>' . bb_code_protect(trim($match[1])) . '</code></pre>';
|
||||||
else
|
else
|
||||||
return '<code class="inline-code">' . bb_code_protect(trim($match[1])) . '</code>';
|
return '<code class="inline-code">' . bb_code_protect(trim($match[1])) . '</code>';
|
||||||
}
|
}
|
||||||
@ -636,15 +636,21 @@ function bb_code($match) {
|
|||||||
function bb_code_options($match) {
|
function bb_code_options($match) {
|
||||||
if(strpos($match[0], "<br />")) {
|
if(strpos($match[0], "<br />")) {
|
||||||
$class = "";
|
$class = "";
|
||||||
|
$pre = true;
|
||||||
} else {
|
} else {
|
||||||
$class = "inline-code";
|
$class = "inline-code";
|
||||||
|
$pre = false;
|
||||||
}
|
}
|
||||||
if(strpos($match[1], 'nowrap')) {
|
if(strpos($match[1], 'nowrap')) {
|
||||||
$style = "overflow-x: auto; white-space: pre;";
|
$style = "overflow-x: auto; white-space: pre;";
|
||||||
} else {
|
} else {
|
||||||
$style = "";
|
$style = "";
|
||||||
}
|
}
|
||||||
return '<code class="'. $class .'" style="'. $style .'">' . bb_code_protect(trim($match[2])) . '</code>';
|
if($pre) {
|
||||||
|
return '<pre><code class="'. $class .'" style="'. $style .'">' . bb_code_protect(trim($match[2])) . '</code></pre>';
|
||||||
|
} else {
|
||||||
|
return '<code class="'. $class .'" style="'. $style .'">' . bb_code_protect(trim($match[2])) . '</code>';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function bb_highlight($match) {
|
function bb_highlight($match) {
|
||||||
|
@ -436,6 +436,9 @@ function get_atom_elements($feed, $item) {
|
|||||||
|
|
||||||
$summary = unxmlify($item->get_description(true));
|
$summary = unxmlify($item->get_description(true));
|
||||||
|
|
||||||
|
if($summary === $res['body'])
|
||||||
|
$summary = '';
|
||||||
|
|
||||||
if(($summary) && ((strpos($summary,'<') !== false) || (strpos($summary,'>') !== false))) {
|
if(($summary) && ((strpos($summary,'<') !== false) || (strpos($summary,'>') !== false))) {
|
||||||
$summary = purify_html($summary);
|
$summary = purify_html($summary);
|
||||||
$summary = html2bbcode($summary);
|
$summary = html2bbcode($summary);
|
||||||
|
@ -286,7 +286,6 @@ img.smiley.emoji:hover {
|
|||||||
height: 32px;
|
height: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.checklist input {
|
.checklist input {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
@ -296,6 +295,15 @@ img.smiley.emoji:hover {
|
|||||||
padding: 15px;
|
padding: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.view-summary {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-article {
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#filer_save {
|
#filer_save {
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
}
|
}
|
||||||
|
@ -48,3 +48,24 @@ td i {
|
|||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pre code {
|
||||||
|
background: #F5F5F5;
|
||||||
|
font-family: Courier, monospace;
|
||||||
|
font-size: 1em;
|
||||||
|
padding: 1em 1.5em;
|
||||||
|
display: block;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
background: #F5F5F5;
|
||||||
|
font-family: Courier, monospace;
|
||||||
|
font-size: 1em;
|
||||||
|
display: inline;
|
||||||
|
padding: 0.2em 0.2em;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wiki-content-container code {
|
||||||
|
background: #F5F5F5;
|
||||||
|
}
|
@ -357,7 +357,9 @@ function closeMenu(theID) {
|
|||||||
function markRead(notifType) {
|
function markRead(notifType) {
|
||||||
$.get('ping?f=&markRead='+notifType);
|
$.get('ping?f=&markRead='+notifType);
|
||||||
$('.' + notifType + '-button').hide();
|
$('.' + notifType + '-button').hide();
|
||||||
|
$('#nav-' + notifType + '-sub').removeClass('show');
|
||||||
sessionStorage.removeItem(notifType + '_notifications_cache');
|
sessionStorage.removeItem(notifType + '_notifications_cache');
|
||||||
|
sessionStorage.removeItem('notification_open');
|
||||||
if(timer) clearTimeout(timer);
|
if(timer) clearTimeout(timer);
|
||||||
timer = setTimeout(updateInit,2000);
|
timer = setTimeout(updateInit,2000);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user