Merge pull request #6315 from MrPetovan/bug/6309-add-fulltext-index-profile

Rework mod/match and mod/msearch
This commit is contained in:
Michael Vogel 2018-12-27 18:04:06 +01:00 committed by GitHub
commit 94eca77041
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
131 changed files with 508 additions and 762 deletions

View File

@ -49,8 +49,7 @@ $directory = realpath($directory . DIRECTORY_SEPARATOR . "..");
chdir($directory); chdir($directory);
require_once "boot.php"; require dirname(__DIR__) . '/vendor/autoload.php';
require_once "include/dba.php";
$a = new App(dirname(__DIR__)); $a = new App(dirname(__DIR__));

View File

@ -1,7 +1,7 @@
#!/usr/bin/env php #!/usr/bin/env php
<?php <?php
include_once dirname(__DIR__) . '/boot.php'; require dirname(__DIR__) . '/vendor/autoload.php';
$a = new Friendica\App(dirname(__DIR__)); $a = new Friendica\App(dirname(__DIR__));
\Friendica\BaseObject::setApp($a); \Friendica\BaseObject::setApp($a);

View File

@ -30,8 +30,7 @@ if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
chdir($directory); chdir($directory);
} }
require_once "boot.php"; require dirname(__DIR__) . '/vendor/autoload.php';
require_once "include/dba.php";
$a = new App(dirname(__DIR__)); $a = new App(dirname(__DIR__));

View File

@ -26,7 +26,7 @@ if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
chdir($directory); chdir($directory);
} }
require_once "boot.php"; require dirname(__DIR__) . '/vendor/autoload.php';
$a = new App(dirname(__DIR__)); $a = new App(dirname(__DIR__));

View File

@ -17,8 +17,6 @@
* easily as email does today. * easily as email does today.
*/ */
require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
use Friendica\App; use Friendica\App;
use Friendica\BaseObject; use Friendica\BaseObject;
use Friendica\Core\Addon; use Friendica\Core\Addon;
@ -35,8 +33,6 @@ use Friendica\Model\Contact;
use Friendica\Model\Conversation; use Friendica\Model\Conversation;
use Friendica\Util\DateTimeFormat; use Friendica\Util\DateTimeFormat;
require_once 'include/text.php';
define('FRIENDICA_PLATFORM', 'Friendica'); define('FRIENDICA_PLATFORM', 'Friendica');
define('FRIENDICA_CODENAME', 'The Tazmans Flax-lily'); define('FRIENDICA_CODENAME', 'The Tazmans Flax-lily');
define('FRIENDICA_VERSION', '2018.12-rc'); define('FRIENDICA_VERSION', '2018.12-rc');

View File

@ -14,6 +14,7 @@
}, },
"require": { "require": {
"php": ">=5.6.1", "php": ">=5.6.1",
"ext-curl": "*",
"ext-dom": "*", "ext-dom": "*",
"ext-json": "*", "ext-json": "*",
"ext-xml": "*", "ext-xml": "*",
@ -55,7 +56,15 @@
}, },
"psr-0": { "psr-0": {
"": "library/" "": "library/"
} },
"files": [
"include/conversation.php",
"include/dba.php",
"include/enotify.php",
"include/items.php",
"include/text.php",
"boot.php"
]
}, },
"config": { "config": {
"autoloader-suffix": "Friendica", "autoloader-suffix": "Friendica",

3
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "11efc727fd6cae00c1230616e31ad2a2", "content-hash": "9e0c66963fa451c1c317569c89c1b278",
"packages": [ "packages": [
{ {
"name": "asika/simple-console", "name": "asika/simple-console",
@ -3563,6 +3563,7 @@
"prefer-lowest": false, "prefer-lowest": false,
"platform": { "platform": {
"php": ">=5.6.1", "php": ">=5.6.1",
"ext-curl": "*",
"ext-dom": "*", "ext-dom": "*",
"ext-json": "*", "ext-json": "*",
"ext-xml": "*" "ext-xml": "*"

View File

@ -34,7 +34,7 @@
use Friendica\Database\DBA; use Friendica\Database\DBA;
if (!defined('DB_UPDATE_VERSION')) { if (!defined('DB_UPDATE_VERSION')) {
define('DB_UPDATE_VERSION', 1291); define('DB_UPDATE_VERSION', 1292);
} }
return [ return [
@ -1059,6 +1059,7 @@ return [
"indexes" => [ "indexes" => [
"PRIMARY" => ["id"], "PRIMARY" => ["id"],
"uid_is-default" => ["uid", "is-default"], "uid_is-default" => ["uid", "is-default"],
"pub_keywords" => ["FULLTEXT", "pub_keywords"],
] ]
], ],
"profile_check" => [ "profile_check" => [

View File

@ -46,7 +46,6 @@ use Friendica\Util\Proxy as ProxyUtils;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\XML; use Friendica\Util\XML;
require_once 'include/conversation.php';
require_once 'mod/share.php'; require_once 'mod/share.php';
require_once 'mod/item.php'; require_once 'mod/item.php';
require_once 'mod/wall_upload.php'; require_once 'mod/wall_upload.php';

View File

@ -24,10 +24,7 @@ use Friendica\Util\ParseUrl;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\Temporal; use Friendica\Util\Temporal;
require_once 'include/text.php';
require_once 'mod/share.php'; require_once 'mod/share.php';
require_once 'include/enotify.php';
function add_page_info_data(array $data, $no_photos = false) function add_page_info_data(array $data, $no_photos = false)
{ {
Addon::callHooks('page_info_data', $data); Addon::callHooks('page_info_data', $data);

View File

@ -30,8 +30,6 @@ use Friendica\Util\Strings;
use Friendica\Util\XML; use Friendica\Util\XML;
use Friendica\Content\Text\HTML; use Friendica\Content\Text\HTML;
require_once "include/conversation.php";
/** /**
* Turn user/group ACLs stored as angle bracketed text into arrays * Turn user/group ACLs stored as angle bracketed text into arrays
* *

View File

@ -4,12 +4,10 @@
* Friendica * Friendica
*/ */
use Friendica\App; require dirname(__DIR__) . '/vendor/autoload.php';
require_once 'boot.php';
// We assume that the index.php is called by a frontend process // We assume that the index.php is called by a frontend process
// The value is set to "true" by default in App // The value is set to "true" by default in App
$a = new App(__DIR__, false); $a = new Friendica\App(__DIR__, false);
$a->runFrontend(); $a->runFrontend();

View File

@ -14,8 +14,6 @@ use Friendica\Model\Item;
use Friendica\Util\Proxy as ProxyUtils; use Friendica\Util\Proxy as ProxyUtils;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/dba.php';
function acl_content(App $a) function acl_content(App $a)
{ {
if (!local_user()) { if (!local_user()) {

View File

@ -33,10 +33,6 @@ use Friendica\Util\Network;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\Temporal; use Friendica\Util\Temporal;
require_once 'include/enotify.php';
require_once 'include/text.php';
require_once 'include/items.php';
/** /**
* @brief Process send data from the admin panels subpages * @brief Process send data from the admin panels subpages
* *

View File

@ -15,8 +15,6 @@ use Friendica\Module;
use Friendica\Util\Proxy as ProxyUtils; use Friendica\Util\Proxy as ProxyUtils;
require_once 'include/dba.php';
function allfriends_content(App $a) function allfriends_content(App $a)
{ {
$o = ''; $o = '';

View File

@ -8,8 +8,6 @@ use Friendica\Core\L10n;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\Util\Security; use Friendica\Util\Security;
require_once 'include/dba.php';
function attach_init(App $a) function attach_init(App $a)
{ {
if ($a->argc != 2) { if ($a->argc != 2) {

View File

@ -11,9 +11,6 @@ use Friendica\Core\System;
use Friendica\Module\Login; use Friendica\Module\Login;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/conversation.php';
require_once 'include/items.php';
function bookmarklet_init() function bookmarklet_init()
{ {
$_GET["mode"] = "minimal"; $_GET["mode"] = "minimal";

View File

@ -14,8 +14,6 @@ use Friendica\Module;
use Friendica\Util\Proxy as ProxyUtils; use Friendica\Util\Proxy as ProxyUtils;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/dba.php';
function common_content(App $a) function common_content(App $a)
{ {
$o = ''; $o = '';

View File

@ -93,8 +93,6 @@ function community_content(App $a, $update = 0)
} }
} }
require_once 'include/conversation.php';
if (!$update) { if (!$update) {
$tabs = []; $tabs = [];

View File

@ -36,9 +36,6 @@ use Friendica\Util\Network;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\XML; use Friendica\Util\XML;
require_once 'include/enotify.php';
require_once 'include/items.php';
function dfrn_confirm_post(App $a, $handsfree = null) function dfrn_confirm_post(App $a, $handsfree = null)
{ {
$node = null; $node = null;

View File

@ -16,8 +16,6 @@ use Friendica\Protocol\DFRN;
use Friendica\Protocol\Diaspora; use Friendica\Protocol\Diaspora;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/items.php';
function dfrn_notify_post(App $a) { function dfrn_notify_post(App $a) {
Logger::log(__function__, Logger::TRACE); Logger::log(__function__, Logger::TRACE);

View File

@ -17,8 +17,6 @@ use Friendica\Util\Network;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\XML; use Friendica\Util\XML;
require_once 'include/items.php';
function dfrn_poll_init(App $a) function dfrn_poll_init(App $a)
{ {
Login::sessionAuth(); Login::sessionAuth();

View File

@ -30,8 +30,6 @@ use Friendica\Util\DateTimeFormat;
use Friendica\Util\Network; use Friendica\Util\Network;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/enotify.php';
function dfrn_request_init(App $a) function dfrn_request_init(App $a)
{ {
if ($a->argc > 1) { if ($a->argc > 1) {

View File

@ -214,8 +214,6 @@ function display_content(App $a, $update = false, $update_uid = 0)
return; return;
} }
require_once 'include/conversation.php';
$o = ''; $o = '';
if ($update) { if ($update) {

View File

@ -22,8 +22,6 @@ use Friendica\Util\DateTimeFormat;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\Temporal; use Friendica\Util\Temporal;
require_once 'include/items.php';
function events_init(App $a) function events_init(App $a)
{ {
if (!local_user()) { if (!local_user()) {

View File

@ -12,10 +12,6 @@ use Friendica\Model\Contact;
use Friendica\Protocol\Feed; use Friendica\Protocol\Feed;
use Friendica\Util\Network; use Friendica\Util\Network;
require_once 'boot.php';
require_once 'include/dba.php';
require_once 'include/text.php';
function feedtest_content(App $a) function feedtest_content(App $a)
{ {
if (!local_user()) { if (!local_user()) {

View File

@ -10,8 +10,6 @@ use Friendica\Core\Renderer;
use Friendica\Model\FileTag; use Friendica\Model\FileTag;
use Friendica\Util\XML; use Friendica\Util\XML;
require_once 'include/items.php';
function filer_content(App $a) function filer_content(App $a)
{ {
if (! local_user()) { if (! local_user()) {

View File

@ -38,10 +38,6 @@ use Friendica\Util\Emailer;
use Friendica\Util\Security; use Friendica\Util\Security;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/enotify.php';
require_once 'include/text.php';
require_once 'include/items.php';
function item_post(App $a) { function item_post(App $a) {
if (!local_user() && !remote_user()) { if (!local_user() && !remote_user()) {
return 0; return 0;
@ -668,7 +664,6 @@ function item_post(App $a) {
// preview mode - prepare the body for display and send it via json // preview mode - prepare the body for display and send it via json
if ($preview) { if ($preview) {
require_once 'include/conversation.php';
// We set the datarray ID to -1 because in preview mode the dataray // We set the datarray ID to -1 because in preview mode the dataray
// doesn't have an ID. // doesn't have an ID.
$datarray["id"] = -1; $datarray["id"] = -1;

View File

@ -5,8 +5,6 @@ use Friendica\Core\System;
use Friendica\Model\Item; use Friendica\Model\Item;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/items.php';
function like_content(App $a) { function like_content(App $a) {
if (!local_user() && !remote_user()) { if (!local_user() && !remote_user()) {
return false; return false;

View File

@ -13,10 +13,6 @@ use Friendica\Model\User;
use Friendica\Util\DateTimeFormat; use Friendica\Util\DateTimeFormat;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'boot.php';
require_once 'include/enotify.php';
require_once 'include/text.php';
function lostpass_post(App $a) function lostpass_post(App $a)
{ {
$loginame = Strings::escapeTags(trim($_POST['login-name'])); $loginame = Strings::escapeTags(trim($_POST['login-name']));

View File

@ -10,8 +10,6 @@ use Friendica\Core\Renderer;
use Friendica\Core\System; use Friendica\Core\System;
use Friendica\Database\DBA; use Friendica\Database\DBA;
require_once "include/text.php";
function manage_post(App $a) { function manage_post(App $a) {
if (! local_user()) { if (! local_user()) {

View File

@ -12,11 +12,9 @@ use Friendica\Core\Renderer;
use Friendica\Core\System; use Friendica\Core\System;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\Model\Contact; use Friendica\Model\Contact;
use Friendica\Model\Profile;
use Friendica\Util\Network; use Friendica\Util\Network;
use Friendica\Util\Proxy as ProxyUtils; use Friendica\Util\Proxy as ProxyUtils;
use Friendica\Util\Strings;
require_once 'include/text.php';
/** /**
* @brief Controller for /match. * @brief Controller for /match.
@ -26,13 +24,12 @@ require_once 'include/text.php';
* *
* @param App $a App * @param App $a App
* *
* @return void|string * @return string
*/ */
function match_content(App $a) function match_content(App $a)
{ {
$o = ''; if (!local_user()) {
if (! local_user()) { return '';
return;
} }
$a->page['aside'] .= Widget::findPeople(); $a->page['aside'] .= Widget::findPeople();
@ -40,91 +37,102 @@ function match_content(App $a)
$_SESSION['return_path'] = $a->cmd; $_SESSION['return_path'] = $a->cmd;
$r = q( $profile = Profile::getByUID(local_user());
"SELECT `pub_keywords`, `prv_keywords` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
intval(local_user()) if (!DBA::isResult($profile)) {
); return '';
if (! DBA::isResult($r)) {
return;
} }
if (! $r[0]['pub_keywords'] && (! $r[0]['prv_keywords'])) { if (!$profile['pub_keywords'] && (!$profile['prv_keywords'])) {
notice(L10n::t('No keywords to match. Please add keywords to your default profile.') . EOL); notice(L10n::t('No keywords to match. Please add keywords to your default profile.') . EOL);
return; return '';
} }
$params = []; $params = [];
$tags = trim($r[0]['pub_keywords'] . ' ' . $r[0]['prv_keywords']); $tags = trim($profile['pub_keywords'] . ' ' . $profile['prv_keywords']);
if ($tags) { $params['s'] = $tags;
$pager = new Pager($a->query_string); $params['n'] = 100;
$params['s'] = $tags; if (strlen(Config::get('system', 'directory'))) {
if ($pager->getPage() != 1) { $host = get_server();
$params['p'] = $pager->getPage(); } else {
} $host = System::baseUrl();
}
if (strlen(Config::get('system', 'directory'))) { $msearch_json = Network::post($host . '/msearch', $params)->getBody();
$x = Network::post(get_server().'/msearch', $params)->getBody();
} else {
$x = Network::post(System::baseUrl() . '/msearch', $params)->getBody();
}
$j = json_decode($x); $msearch = json_decode($msearch_json);
if (count($j->results)) { $start = defaults($_GET, 'start', 0);
$pager->setItemsPerPage($j->items_page); $entries = [];
$paginate = '';
$id = 0; if (!empty($msearch->results)) {
for ($i = $start;count($entries) < 10 && $i < $msearch->total; $i++) {
$profile = $msearch->results[$i];
foreach ($j->results as $jj) { // Already known contact
$match_nurl = Strings::normaliseLink($jj->url); if (Contact::getIdForURL($profile->url, local_user(), true)) {
$match = q( continue;
"SELECT `nurl` FROM `contact` WHERE `uid` = '%d' AND nurl='%s' LIMIT 1",
intval(local_user()),
DBA::escape($match_nurl)
);
if (!count($match)) {
$jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo);
$connlnk = System::baseUrl() . '/follow/?url=' . $jj->url;
$photo_menu = [
'profile' => [L10n::t("View Profile"), Contact::magicLink($jj->url)],
'follow' => [L10n::t("Connect/Follow"), $connlnk]
];
$contact_details = Contact::getDetailsByURL($jj->url, local_user());
$entry = [
'url' => Contact::magicLink($jj->url),
'itemurl' => defaults($contact_details, 'addr', $jj->url),
'name' => $jj->name,
'details' => defaults($contact_details, 'location', ''),
'tags' => defaults($contact_details, 'keywords', ''),
'about' => defaults($contact_details, 'about', ''),
'account_type' => Contact::getAccountType($contact_details),
'thumb' => ProxyUtils::proxifyUrl($jj->photo, false, ProxyUtils::SIZE_THUMB),
'inttxt' => ' ' . L10n::t('is interested in:'),
'conntxt' => L10n::t('Connect'),
'connlnk' => $connlnk,
'img_hover' => $jj->tags,
'photo_menu' => $photo_menu,
'id' => ++$id,
];
$entries[] = $entry;
}
} }
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl'); // Workaround for wrong directory photo URL
$profile->photo = str_replace('http:///photo/', get_server() . '/photo/', $profile->photo);
$o .= Renderer::replaceMacros($tpl, [ $connlnk = System::baseUrl() . '/follow/?url=' . $profile->url;
'$title' => L10n::t('Profile Match'), $photo_menu = [
'$contacts' => $entries, 'profile' => [L10n::t("View Profile"), Contact::magicLink($profile->url)],
'$paginate' => $pager->renderFull($j->total) 'follow' => [L10n::t("Connect/Follow"), $connlnk]
]); ];
} else {
info(L10n::t('No matches') . EOL); $contact_details = Contact::getDetailsByURL($profile->url, 0);
$entry = [
'url' => Contact::magicLink($profile->url),
'itemurl' => defaults($contact_details, 'addr', $profile->url),
'name' => $profile->name,
'details' => defaults($contact_details, 'location', ''),
'tags' => defaults($contact_details, 'keywords', ''),
'about' => defaults($contact_details, 'about', ''),
'account_type' => Contact::getAccountType($contact_details),
'thumb' => ProxyUtils::proxifyUrl($profile->photo, false, ProxyUtils::SIZE_THUMB),
'conntxt' => L10n::t('Connect'),
'connlnk' => $connlnk,
'img_hover' => $profile->tags,
'photo_menu' => $photo_menu,
'id' => $i,
];
$entries[] = $entry;
} }
$data = [
'class' => 'pager',
'first' => [
'url' => 'match',
'text' => L10n::t('first'),
'class' => 'previous' . ($start == 0 ? 'disabled' : '')
],
'next' => [
'url' => 'match?start=' . $i,
'text' => L10n::t('next'),
'class' => 'next' . ($i >= $msearch->total ? ' disabled' : '')
]
];
$tpl = Renderer::getMarkupTemplate('paginate.tpl');
$paginate = Renderer::replaceMacros($tpl, ['pager' => $data]);
} }
if (empty($entries)) {
info(L10n::t('No matches') . EOL);
}
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
$o = Renderer::replaceMacros($tpl, [
'$title' => L10n::t('Profile Match'),
'$contacts' => $entries,
'$paginate' => $paginate
]);
return $o; return $o;
} }

View File

@ -21,8 +21,6 @@ use Friendica\Util\Proxy as ProxyUtils;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\Temporal; use Friendica\Util\Temporal;
require_once 'include/conversation.php';
function message_init(App $a) function message_init(App $a)
{ {
$tabs = ''; $tabs = '';

View File

@ -4,45 +4,64 @@ use Friendica\App;
use Friendica\Core\System; use Friendica\Core\System;
use Friendica\Database\DBA; use Friendica\Database\DBA;
function msearch_post(App $a) { function msearch_post(App $a)
{
$perpage = (($_POST['n']) ? $_POST['n'] : 80); $search = defaults($_POST, 's', '');
$page = (($_POST['p']) ? intval($_POST['p'] - 1) : 0); $perpage = intval(defaults($_POST, 'n', 80));
$startrec = (($page+1) * $perpage) - $perpage; $page = intval(defaults($_POST, 'p', 1));
$startrec = ($page - 1) * $perpage;
$search = $_POST['s'];
if(! strlen($search))
killme();
$r = q("SELECT COUNT(*) AS `total` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `user`.`hidewall` = 0 AND MATCH `pub_keywords` AGAINST ('%s') ",
DBA::escape($search)
);
if (DBA::isResult($r))
$total = $r[0]['total'];
$total = 0;
$results = []; $results = [];
$r = q("SELECT `pub_keywords`, `username`, `nickname`, `user`.`uid` FROM `user` LEFT JOIN `profile` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `user`.`hidewall` = 0 AND MATCH `pub_keywords` AGAINST ('%s') LIMIT %d , %d ", if (!strlen($search)) {
DBA::escape($search), $output = ['total' => 0, 'items_page' => $perpage, 'page' => $page, 'results' => $results];
intval($startrec), echo json_encode($output);
intval($perpage) exit();
);
if (DBA::isResult($r)) {
foreach($r as $rr)
$results[] = [
'name' => $rr['name'],
'url' => System::baseUrl() . '/profile/' . $rr['nickname'],
'photo' => System::baseUrl() . '/photo/avatar/' . $rr['uid'] . '.jpg',
'tags' => str_replace([',',' '],[' ',' '],$rr['pub_keywords'])
];
} }
$output = ['total' => $total, 'items_page' => $perpage, 'page' => $page + 1, 'results' => $results]; $count_stmt = DBA::p(
"SELECT COUNT(*) AS `total`
FROM `profile`
JOIN `user` ON `user`.`uid` = `profile`.`uid`
WHERE `is-default` = 1
AND `user`.`hidewall` = 0
AND MATCH(`pub_keywords`) AGAINST (?)",
$search
);
if (DBA::isResult($count_stmt)) {
$row = DBA::fetch($count_stmt);
$total = $row['total'];
}
DBA::close($count_stmt);
$search_stmt = DBA::p(
"SELECT `pub_keywords`, `username`, `nickname`, `user`.`uid`
FROM `user`
JOIN `profile` ON `user`.`uid` = `profile`.`uid`
WHERE `is-default` = 1
AND `user`.`hidewall` = 0
AND MATCH(`pub_keywords`) AGAINST (?)
LIMIT ?, ?",
$search,
$startrec,
$perpage
);
while($search_result = DBA::fetch($search_stmt)) {
$results[] = [
'name' => $search_result['name'],
'url' => System::baseUrl() . '/profile/' . $search_result['nickname'],
'photo' => System::baseUrl() . '/photo/avatar/' . $search_result['uid'] . '.jpg',
'tags' => str_replace([',', ' '], [' ', ' '], $search_result['pub_keywords'])
];
}
$output = ['total' => $total, 'items_page' => $perpage, 'page' => $page, 'results' => $results];
echo json_encode($output); echo json_encode($output);
killme(); exit();
} }

View File

@ -30,9 +30,6 @@ use Friendica\Util\DateTimeFormat;
use Friendica\Util\Proxy as ProxyUtils; use Friendica\Util\Proxy as ProxyUtils;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/conversation.php';
require_once 'include/items.php';
function network_init(App $a) function network_init(App $a)
{ {
if (!local_user()) { if (!local_user()) {

View File

@ -12,8 +12,6 @@ use Friendica\Core\Logger;
use Friendica\Core\System; use Friendica\Core\System;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\Util\Network; use Friendica\Util\Network;
require_once 'include/dba.php';
function nodeinfo_wellknown(App $a) { function nodeinfo_wellknown(App $a) {
$nodeinfo = ['links' => [['rel' => 'http://nodeinfo.diaspora.software/ns/schema/1.0', $nodeinfo = ['links' => [['rel' => 'http://nodeinfo.diaspora.software/ns/schema/1.0',
'href' => System::baseUrl().'/nodeinfo/1.0']]]; 'href' => System::baseUrl().'/nodeinfo/1.0']]];

View File

@ -34,8 +34,6 @@ function notes_content(App $a, $update = false)
return; return;
} }
require_once 'include/conversation.php';
$o = Profile::getTabs($a, true); $o = Profile::getTabs($a, true);
if (!$update) { if (!$update) {

View File

@ -15,8 +15,6 @@ use Friendica\Core\Logger;
use Friendica\Util\Network; use Friendica\Util\Network;
use Friendica\Util\ParseUrl; use Friendica\Util\ParseUrl;
require_once 'include/items.php';
function parse_url_content(App $a) function parse_url_content(App $a)
{ {
$text = null; $text = null;

View File

@ -34,8 +34,6 @@ use Friendica\Util\Temporal;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\XML; use Friendica\Util\XML;
require_once 'include/items.php';
function photos_init(App $a) { function photos_init(App $a) {
if ($a->argc > 1) { if ($a->argc > 1) {
@ -946,8 +944,6 @@ function photos_content(App $a)
return; return;
} }
require_once 'include/conversation.php';
if (empty($a->data['user'])) { if (empty($a->data['user'])) {
notice(L10n::t('No photos selected') . EOL); notice(L10n::t('No photos selected') . EOL);
return; return;

View File

@ -3,8 +3,6 @@
* @file mod/phpinfo.php * @file mod/phpinfo.php
*/ */
require_once 'boot.php';
function phpinfo_content() function phpinfo_content()
{ {
if (!is_site_admin()) { if (!is_site_admin()) {

View File

@ -22,8 +22,6 @@ use Friendica\Util\Temporal;
use Friendica\Util\Proxy as ProxyUtils; use Friendica\Util\Proxy as ProxyUtils;
use Friendica\Util\XML; use Friendica\Util\XML;
require_once 'include/enotify.php';
/** /**
* @brief Outputs the counts and the lists of various notifications * @brief Outputs the counts and the lists of various notifications
* *

View File

@ -25,8 +25,6 @@ use Friendica\Model\Item;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\XML; use Friendica\Util\XML;
require_once 'include/items.php';
function poke_init(App $a) function poke_init(App $a)
{ {
if (!local_user()) { if (!local_user()) {

View File

@ -127,9 +127,6 @@ function profile_content(App $a, $update = 0)
return Login::form(); return Login::form();
} }
require_once 'include/conversation.php';
require_once 'include/items.php';
$groups = []; $groups = [];
$remote_cid = null; $remote_cid = null;

View File

@ -9,8 +9,6 @@ use Friendica\Protocol\OStatus;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Core\System; use Friendica\Core\System;
require_once 'include/items.php';
function hub_return($valid, $body) function hub_return($valid, $body)
{ {
if ($valid) { if ($valid) {

View File

@ -18,8 +18,6 @@ use Friendica\Model;
use Friendica\Module\Tos; use Friendica\Module\Tos;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/enotify.php';
function register_post(App $a) function register_post(App $a)
{ {
BaseModule::checkFormSecurityTokenRedirectOnError('/register', 'register'); BaseModule::checkFormSecurityTokenRedirectOnError('/register', 'register');

View File

@ -13,8 +13,6 @@ use Friendica\Model\Register;
use Friendica\Model\User; use Friendica\Model\User;
use Friendica\Module\Login; use Friendica\Module\Login;
require_once 'include/enotify.php';
function user_allow($hash) function user_allow($hash)
{ {
$a = get_app(); $a = get_app();

View File

@ -12,8 +12,6 @@ use Friendica\Database\DBA;
use Friendica\Model\User; use Friendica\Model\User;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/enotify.php';
function removeme_post(App $a) function removeme_post(App $a)
{ {
if (!local_user()) { if (!local_user()) {

View File

@ -14,8 +14,6 @@ use Friendica\Protocol\Salmon;
use Friendica\Util\Crypto; use Friendica\Util\Crypto;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/items.php';
function salmon_post(App $a, $xml = '') { function salmon_post(App $a, $xml = '') {
if (empty($xml)) { if (empty($xml)) {

View File

@ -18,7 +18,6 @@ use Friendica\Database\DBA;
use Friendica\Model\Item; use Friendica\Model\Item;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/conversation.php';
require_once 'mod/dirfind.php'; require_once 'mod/dirfind.php';
function search_saved_searches() { function search_saved_searches() {

View File

@ -13,8 +13,6 @@ use Friendica\Util\Security;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\XML; use Friendica\Util\XML;
require_once 'include/items.php';
function subthread_content(App $a) { function subthread_content(App $a) {
if (!local_user() && !remote_user()) { if (!local_user() && !remote_user()) {

View File

@ -13,8 +13,6 @@ use Friendica\Model\Item;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\XML; use Friendica\Util\XML;
require_once 'include/items.php';
function tagger_content(App $a) { function tagger_content(App $a) {
if (!local_user() && !remote_user()) { if (!local_user() && !remote_user()) {

View File

@ -18,8 +18,6 @@ use Friendica\Model\Profile;
use Friendica\Protocol\DFRN; use Friendica\Protocol\DFRN;
use Friendica\Util\Security; use Friendica\Util\Security;
require_once 'include/items.php';
function videos_init(App $a) function videos_init(App $a)
{ {
if ($a->argc > 1) { if ($a->argc > 1) {
@ -195,8 +193,6 @@ function videos_content(App $a)
return; return;
} }
require_once 'include/conversation.php';
if (empty($a->data['user'])) { if (empty($a->data['user'])) {
notice(L10n::t('No videos selected') . EOL ); notice(L10n::t('No videos selected') . EOL );
return; return;

View File

@ -11,9 +11,6 @@ use Exception;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\Network\HTTPException\InternalServerErrorException; use Friendica\Network\HTTPException\InternalServerErrorException;
require_once 'boot.php';
require_once 'include/text.php';
/** /**
* *
* class: App * class: App

View File

@ -4,8 +4,6 @@
*/ */
namespace Friendica; namespace Friendica;
require_once 'boot.php';
/** /**
* Basic object * Basic object
* *

View File

@ -15,8 +15,6 @@ use Friendica\Database\DBA;
use Friendica\Model\Contact; use Friendica\Model\Contact;
use Friendica\Util\Proxy as ProxyUtils; use Friendica\Util\Proxy as ProxyUtils;
require_once 'include/dba.php';
/** /**
* @brief This class handles methods related to the forum functionality * @brief This class handles methods related to the forum functionality
*/ */

View File

@ -15,9 +15,6 @@ use Friendica\Database\DBA;
use Friendica\Model\Contact; use Friendica\Model\Contact;
use Friendica\Model\Profile; use Friendica\Model\Profile;
require_once 'boot.php';
require_once 'include/text.php';
class Nav class Nav
{ {
private static $selected = [ private static $selected = [

View File

@ -23,8 +23,6 @@ use Friendica\Util\ParseUrl;
use Friendica\Util\Proxy as ProxyUtils; use Friendica\Util\Proxy as ProxyUtils;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/dba.php';
/** /**
* Handles all OEmbed content fetching and replacement * Handles all OEmbed content fetching and replacement
* *

View File

@ -169,7 +169,7 @@ class Pager
'next' => [ 'next' => [
'url' => $this->ensureQueryParameter($this->baseQueryString . '&page=' . ($this->getPage() + 1)), 'url' => $this->ensureQueryParameter($this->baseQueryString . '&page=' . ($this->getPage() + 1)),
'text' => L10n::t('older'), 'text' => L10n::t('older'),
'class' => 'next' . ($displayedItemCount <= 0 ? ' disabled' : '') 'class' => 'next' . ($displayedItemCount < $this->getItemsPerPage() ? ' disabled' : '')
] ]
]; ];

View File

@ -21,9 +21,6 @@ use Friendica\Model\Profile;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\XML; use Friendica\Util\XML;
require_once 'boot.php';
require_once 'include/dba.php';
class Widget class Widget
{ {
/** /**

View File

@ -10,9 +10,6 @@ use Friendica\Content\Feature;
use Friendica\Core\L10n; use Friendica\Core\L10n;
use Friendica\Core\Renderer; use Friendica\Core\Renderer;
require_once 'boot.php';
require_once 'include/text.php';
/** /**
* TagCloud widget * TagCloud widget
* *

View File

@ -13,8 +13,6 @@ use Friendica\Database\DBA;
use Friendica\Model\Item; use Friendica\Model\Item;
use Friendica\Util\Security; use Friendica\Util\Security;
require_once 'include/dba.php';
/** /**
* TagCloud widget * TagCloud widget
* *

View File

@ -12,8 +12,6 @@ use Friendica\App;
use Friendica\BaseObject; use Friendica\BaseObject;
use Friendica\Core\Config; use Friendica\Core\Config;
require_once 'include/dba.php';
/** /**
* @brief Arbitrary system configuration storage * @brief Arbitrary system configuration storage
* *

View File

@ -4,8 +4,6 @@ namespace Friendica\Core\Config;
use Friendica\BaseObject; use Friendica\BaseObject;
use Friendica\Database\DBA; use Friendica\Database\DBA;
require_once 'include/dba.php';
/** /**
* JustInTime Configuration Adapter * JustInTime Configuration Adapter
* *

View File

@ -4,8 +4,6 @@ namespace Friendica\Core\Config;
use Friendica\BaseObject; use Friendica\BaseObject;
use Friendica\Database\DBA; use Friendica\Database\DBA;
require_once 'include/dba.php';
/** /**
* JustInTime User Configuration Adapter * JustInTime User Configuration Adapter
* *

View File

@ -6,8 +6,6 @@ use Exception;
use Friendica\BaseObject; use Friendica\BaseObject;
use Friendica\Database\DBA; use Friendica\Database\DBA;
require_once 'include/dba.php';
/** /**
* Preload Configuration Adapter * Preload Configuration Adapter
* *

View File

@ -6,8 +6,6 @@ use Exception;
use Friendica\BaseObject; use Friendica\BaseObject;
use Friendica\Database\DBA; use Friendica\Database\DBA;
require_once 'include/dba.php';
/** /**
* Preload User Configuration Adapter * Preload User Configuration Adapter
* *

View File

@ -11,8 +11,6 @@ use Friendica\Database\DBA;
use Friendica\Database\DBStructure; use Friendica\Database\DBStructure;
use RuntimeException; use RuntimeException;
require_once 'include/dba.php';
class AutomaticInstallation extends Console class AutomaticInstallation extends Console
{ {
protected function getHelp() protected function getHelp()

View File

@ -8,9 +8,6 @@ use Friendica\Database\DBA;
use Friendica\Database\DBStructure; use Friendica\Database\DBStructure;
use RuntimeException; use RuntimeException;
require_once 'boot.php';
require_once 'include/dba.php';
/** /**
* @brief Performs database updates from the command line * @brief Performs database updates from the command line
* *

View File

@ -8,8 +8,6 @@ use Friendica\Network\Probe;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use RuntimeException; use RuntimeException;
require_once 'include/text.php';
/** /**
* @brief tool to silence accounts on the global community page * @brief tool to silence accounts on the global community page
* *

View File

@ -4,9 +4,6 @@ namespace Friendica\Core\Console;
use Friendica\Core; use Friendica\Core;
require_once 'boot.php';
require_once 'include/dba.php';
/** /**
* @brief Sets maintenance mode for this node * @brief Sets maintenance mode for this node
* *

View File

@ -585,7 +585,6 @@ class Installer
*/ */
public function checkDB($dbhost, $dbuser, $dbpass, $dbdata) public function checkDB($dbhost, $dbuser, $dbpass, $dbdata)
{ {
require_once 'include/dba.php';
if (!DBA::connect($dbhost, $dbuser, $dbpass, $dbdata)) { if (!DBA::connect($dbhost, $dbuser, $dbpass, $dbdata)) {
$this->addCheck(L10n::t('Could not connect to database.'), false, true, ''); $this->addCheck(L10n::t('Could not connect to database.'), false, true, '');

View File

@ -10,9 +10,6 @@ use Friendica\Core\Addon;
use Friendica\Core\Logger; use Friendica\Core\Logger;
use Friendica\Core\System; use Friendica\Core\System;
require_once 'boot.php';
require_once 'include/dba.php';
/** /**
* Provide Language, Translation, and Localization functions to the application * Provide Language, Translation, and Localization functions to the application
* Localization can be referred to by the numeronym L10N (as in: "L", followed by ten more letters, and then "N"). * Localization can be referred to by the numeronym L10N (as in: "L", followed by ten more letters, and then "N").

View File

@ -19,8 +19,6 @@ use Friendica\Util\Proxy as ProxyUtils;
use Friendica\Util\Temporal; use Friendica\Util\Temporal;
use Friendica\Util\XML; use Friendica\Util\XML;
require_once 'include/dba.php';
/** /**
* @brief Methods for read and write notifications from/to database * @brief Methods for read and write notifications from/to database
* or for formatting notifications * or for formatting notifications

View File

@ -11,8 +11,6 @@ namespace Friendica\Core;
use Friendica\App; use Friendica\App;
use Friendica\BaseObject; use Friendica\BaseObject;
require_once 'include/dba.php';
/** /**
* @brief Management of user configuration storage * @brief Management of user configuration storage
* Note: * Note:

View File

@ -8,9 +8,6 @@ use Friendica\Core\Logger;
use Friendica\Core\Session; use Friendica\Core\Session;
use SessionHandlerInterface; use SessionHandlerInterface;
require_once 'boot.php';
require_once 'include/text.php';
/** /**
* SessionHandler using Friendica Cache * SessionHandler using Friendica Cache
* *

View File

@ -8,10 +8,6 @@ use Friendica\Core\Session;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use SessionHandlerInterface; use SessionHandlerInterface;
require_once 'boot.php';
require_once 'include/dba.php';
require_once 'include/text.php';
/** /**
* SessionHandler using database * SessionHandler using database
* *

View File

@ -9,8 +9,6 @@ namespace Friendica\Core;
use Friendica\Core\Logger; use Friendica\Core\Logger;
use Friendica\Core\System; use Friendica\Core\System;
require_once 'boot.php';
/** /**
* Some functions to handle themes * Some functions to handle themes
*/ */

View File

@ -13,8 +13,6 @@ use Friendica\Model\Photo;
use Friendica\Object\Image; use Friendica\Object\Image;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once "include/dba.php";
/** /**
* @brief UserImport class * @brief UserImport class
*/ */

View File

@ -11,8 +11,6 @@ use Friendica\Model\Process;
use Friendica\Util\DateTimeFormat; use Friendica\Util\DateTimeFormat;
use Friendica\Util\Network; use Friendica\Util\Network;
require_once 'include/dba.php';
/** /**
* @file src/Core/Worker.php * @file src/Core/Worker.php
* *

View File

@ -16,8 +16,6 @@ use PDO;
use PDOException; use PDOException;
use PDOStatement; use PDOStatement;
require_once 'include/dba.php';
/** /**
* @class MySQL database class * @class MySQL database class
* *

View File

@ -2,6 +2,7 @@
/** /**
* @file src/Database/DBStructure.php * @file src/Database/DBStructure.php
*/ */
namespace Friendica\Database; namespace Friendica\Database;
use Exception; use Exception;
@ -11,11 +12,6 @@ use Friendica\Core\L10n;
use Friendica\Core\Logger; use Friendica\Core\Logger;
use Friendica\Util\DateTimeFormat; use Friendica\Util\DateTimeFormat;
require_once 'boot.php';
require_once 'include/dba.php';
require_once 'include/enotify.php';
require_once 'include/text.php';
/** /**
* @brief This class contain functions for the database management * @brief This class contain functions for the database management
* *
@ -27,6 +23,9 @@ class DBStructure
const UPDATE_SUCCESSFUL = 1; // Database check was successful const UPDATE_SUCCESSFUL = 1; // Database check was successful
const UPDATE_FAILED = 2; // Database check failed const UPDATE_FAILED = 2; // Database check failed
const RENAME_COLUMN = 0;
const RENAME_PRIMARY_KEY = 1;
/** /**
* Database structure definition loaded from config/dbstructure.config.php * Database structure definition loaded from config/dbstructure.config.php
* *
@ -37,18 +36,19 @@ class DBStructure
/* /*
* Converts all tables from MyISAM to InnoDB * Converts all tables from MyISAM to InnoDB
*/ */
public static function convertToInnoDB() { public static function convertToInnoDB()
{
$r = q("SELECT `TABLE_NAME` FROM `information_schema`.`tables` WHERE `engine` = 'MyISAM' AND `table_schema` = '%s'", $r = q("SELECT `TABLE_NAME` FROM `information_schema`.`tables` WHERE `engine` = 'MyISAM' AND `table_schema` = '%s'",
DBA::escape(DBA::databaseName())); DBA::escape(DBA::databaseName()));
if (!DBA::isResult($r)) { if (!DBA::isResult($r)) {
echo L10n::t('There are no tables on MyISAM.')."\n"; echo L10n::t('There are no tables on MyISAM.') . "\n";
return; return;
} }
foreach ($r AS $table) { foreach ($r AS $table) {
$sql = sprintf("ALTER TABLE `%s` engine=InnoDB;", DBA::escape($table['TABLE_NAME'])); $sql = sprintf("ALTER TABLE `%s` engine=InnoDB;", DBA::escape($table['TABLE_NAME']));
echo $sql."\n"; echo $sql . "\n";
$result = DBA::e($sql); $result = DBA::e($sql);
if (!DBA::isResult($result)) { if (!DBA::isResult($result)) {
@ -57,80 +57,28 @@ class DBStructure
} }
} }
private static function tableStructure($table) { /**
$structures = q("DESCRIBE `%s`", $table); * @brief Print out database error messages
*
* @param string $message Message to be added to the error message
*
* @return string Error message
*/
private static function printUpdateError($message)
{
echo L10n::t("\nError %d occurred during database update:\n%s\n",
DBA::errorNo(), DBA::errorMessage());
$full_columns = q("SHOW FULL COLUMNS FROM `%s`", $table); return L10n::t('Errors encountered performing database changes: ') . $message . EOL;
$indexes = q("SHOW INDEX FROM `%s`", $table);
$table_status = q("SHOW TABLE STATUS WHERE `name` = '%s'", $table);
if (DBA::isResult($table_status)) {
$table_status = $table_status[0];
} else {
$table_status = [];
}
$fielddata = [];
$indexdata = [];
if (DBA::isResult($indexes)) {
foreach ($indexes AS $index) {
if ($index['Key_name'] != 'PRIMARY' && $index['Non_unique'] == '0' && !isset($indexdata[$index["Key_name"]])) {
$indexdata[$index["Key_name"]] = ['UNIQUE'];
}
$column = $index["Column_name"];
if ($index["Sub_part"] != "") {
$column .= "(".$index["Sub_part"].")";
}
$indexdata[$index["Key_name"]][] = $column;
}
}
if (DBA::isResult($structures)) {
foreach ($structures AS $field) {
// Replace the default size values so that we don't have to define them
$search = ['tinyint(1)', 'tinyint(3) unsigned', 'tinyint(4)', 'smallint(5) unsigned', 'smallint(6)', 'mediumint(8) unsigned', 'mediumint(9)', 'bigint(20)', 'int(10) unsigned', 'int(11)'];
$replace = ['boolean', 'tinyint unsigned', 'tinyint', 'smallint unsigned', 'smallint', 'mediumint unsigned', 'mediumint', 'bigint', 'int unsigned', 'int'];
$field["Type"] = str_replace($search, $replace, $field["Type"]);
$fielddata[$field["Field"]]["type"] = $field["Type"];
if ($field["Null"] == "NO") {
$fielddata[$field["Field"]]["not null"] = true;
}
if (isset($field["Default"])) {
$fielddata[$field["Field"]]["default"] = $field["Default"];
}
if ($field["Extra"] != "") {
$fielddata[$field["Field"]]["extra"] = $field["Extra"];
}
if ($field["Key"] == "PRI") {
$fielddata[$field["Field"]]["primary"] = true;
}
}
}
if (DBA::isResult($full_columns)) {
foreach ($full_columns AS $column) {
$fielddata[$column["Field"]]["Collation"] = $column["Collation"];
$fielddata[$column["Field"]]["comment"] = $column["Comment"];
}
}
return ["fields" => $fielddata, "indexes" => $indexdata, "table_status" => $table_status];
} }
public static function printStructure() { public static function printStructure()
{
$database = self::definition(false); $database = self::definition(false);
echo "-- ------------------------------------------\n"; echo "-- ------------------------------------------\n";
echo "-- ".FRIENDICA_PLATFORM." ".FRIENDICA_VERSION." (".FRIENDICA_CODENAME,")\n"; echo "-- " . FRIENDICA_PLATFORM . " " . FRIENDICA_VERSION . " (" . FRIENDICA_CODENAME, ")\n";
echo "-- DB_UPDATE_VERSION ".DB_UPDATE_VERSION."\n"; echo "-- DB_UPDATE_VERSION " . DB_UPDATE_VERSION . "\n";
echo "-- ------------------------------------------\n\n\n"; echo "-- ------------------------------------------\n\n\n";
foreach ($database AS $name => $structure) { foreach ($database AS $name => $structure) {
echo "--\n"; echo "--\n";
@ -143,17 +91,155 @@ class DBStructure
} }
/** /**
* @brief Print out database error messages * Loads the database structure definition from the config/dbstructure.config.php file.
* On first pass, defines DB_UPDATE_VERSION constant.
* *
* @param string $message Message to be added to the error message * @see config/dbstructure.config.php
* * @param boolean $with_addons_structure Whether to tack on addons additional tables
* @return string Error message * @return array
* @throws Exception
*/ */
private static function printUpdateError($message) { public static function definition($with_addons_structure = true)
echo L10n::t("\nError %d occurred during database update:\n%s\n", {
DBA::errorNo(), DBA::errorMessage()); if (!self::$definition) {
$a = \Friendica\BaseObject::getApp();
return L10n::t('Errors encountered performing database changes: ').$message.EOL; $filename = $a->getBasePath() . '/config/dbstructure.config.php';
if (!is_readable($filename)) {
throw new Exception('Missing database structure config file config/dbstructure.config.php');
}
$definition = require $filename;
if (!$definition) {
throw new Exception('Corrupted database structure config file config/dbstructure.config.php');
}
self::$definition = $definition;
} else {
$definition = self::$definition;
}
if ($with_addons_structure) {
Hook::callAll('dbstructure_definition', $definition);
}
return $definition;
}
private static function createTable($name, $structure, $verbose, $action)
{
$r = true;
$engine = "";
$comment = "";
$sql_rows = [];
$primary_keys = [];
foreach ($structure["fields"] AS $fieldname => $field) {
$sql_rows[] = "`" . DBA::escape($fieldname) . "` " . self::FieldCommand($field);
if (!empty($field['primary'])) {
$primary_keys[] = $fieldname;
}
}
if (!empty($structure["indexes"])) {
foreach ($structure["indexes"] AS $indexname => $fieldnames) {
$sql_index = self::createIndex($indexname, $fieldnames, "");
if (!is_null($sql_index)) {
$sql_rows[] = $sql_index;
}
}
}
if (isset($structure["engine"])) {
$engine = " ENGINE=" . $structure["engine"];
}
if (isset($structure["comment"])) {
$comment = " COMMENT='" . DBA::escape($structure["comment"]) . "'";
}
$sql = implode(",\n\t", $sql_rows);
$sql = sprintf("CREATE TABLE IF NOT EXISTS `%s` (\n\t", DBA::escape($name)) . $sql .
"\n)" . $engine . " DEFAULT COLLATE utf8mb4_general_ci" . $comment;
if ($verbose) {
echo $sql . ";\n";
}
if ($action) {
$r = DBA::e($sql);
}
return $r;
}
private static function FieldCommand($parameters, $create = true)
{
$fieldstruct = $parameters["type"];
if (isset($parameters["Collation"])) {
$fieldstruct .= " COLLATE " . $parameters["Collation"];
}
if (isset($parameters["not null"])) {
$fieldstruct .= " NOT NULL";
}
if (isset($parameters["default"])) {
if (strpos(strtolower($parameters["type"]), "int") !== false) {
$fieldstruct .= " DEFAULT " . $parameters["default"];
} else {
$fieldstruct .= " DEFAULT '" . $parameters["default"] . "'";
}
}
if (isset($parameters["extra"])) {
$fieldstruct .= " " . $parameters["extra"];
}
if (isset($parameters["comment"])) {
$fieldstruct .= " COMMENT '" . DBA::escape($parameters["comment"]) . "'";
}
/*if (($parameters["primary"] != "") && $create)
$fieldstruct .= " PRIMARY KEY";*/
return ($fieldstruct);
}
private static function createIndex($indexname, $fieldnames, $method = "ADD")
{
$method = strtoupper(trim($method));
if ($method != "" && $method != "ADD") {
throw new Exception("Invalid parameter 'method' in self::createIndex(): '$method'");
}
if (in_array($fieldnames[0], ["UNIQUE", "FULLTEXT"])) {
$index_type = array_shift($fieldnames);
$method .= " " . $index_type;
}
$names = "";
foreach ($fieldnames AS $fieldname) {
if ($names != "") {
$names .= ",";
}
if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches)) {
$names .= "`" . DBA::escape($matches[1]) . "`(" . intval($matches[2]) . ")";
} else {
$names .= "`" . DBA::escape($fieldname) . "`";
}
}
if ($indexname == "PRIMARY") {
return sprintf("%s PRIMARY KEY(%s)", $method, $names);
}
$sql = sprintf("%s INDEX `%s` (%s)", $method, DBA::escape($indexname), $names);
return ($sql);
} }
/** /**
@ -166,10 +252,11 @@ class DBStructure
* @param array $definition An array of the definition tables * @param array $definition An array of the definition tables
* @return string Empty string if the update is successful, error messages otherwise * @return string Empty string if the update is successful, error messages otherwise
*/ */
public static function update($verbose, $action, $install = false, array $tables = null, array $definition = null) { public static function update($verbose, $action, $install = false, array $tables = null, array $definition = null)
{
if ($action && !$install) { if ($action && !$install) {
Config::set('system', 'maintenance', 1); Config::set('system', 'maintenance', 1);
Config::set('system', 'maintenance_reason', L10n::t('%s: Database update', DateTimeFormat::utcNow().' '.date('e'))); Config::set('system', 'maintenance_reason', L10n::t('%s: Database update', DateTimeFormat::utcNow() . ' ' . date('e')));
} }
$errors = ''; $errors = '';
@ -221,16 +308,16 @@ class DBStructure
} else { } else {
foreach ($structure["indexes"] AS $indexname => $fieldnames) { foreach ($structure["indexes"] AS $indexname => $fieldnames) {
if (isset($database[$name]["indexes"][$indexname])) { if (isset($database[$name]["indexes"][$indexname])) {
$current_index_definition = implode(",",$database[$name]["indexes"][$indexname]); $current_index_definition = implode(",", $database[$name]["indexes"][$indexname]);
} else { } else {
$current_index_definition = "__NOT_SET__"; $current_index_definition = "__NOT_SET__";
} }
$new_index_definition = implode(",",$fieldnames); $new_index_definition = implode(",", $fieldnames);
if ($current_index_definition != $new_index_definition) { if ($current_index_definition != $new_index_definition) {
if ($fieldnames[0] == "UNIQUE") { if ($fieldnames[0] == "UNIQUE") {
$is_unique = true; $is_unique = true;
if ($ignore == "") { if ($ignore == "") {
$temp_name = "temp-".$name; $temp_name = "temp-" . $name;
} }
} }
} }
@ -242,29 +329,29 @@ class DBStructure
* and index name doesn't start with "local_" * and index name doesn't start with "local_"
*/ */
foreach ($database[$name]["indexes"] as $indexname => $fieldnames) { foreach ($database[$name]["indexes"] as $indexname => $fieldnames) {
$current_index_definition = implode(",",$fieldnames); $current_index_definition = implode(",", $fieldnames);
if (isset($structure["indexes"][$indexname])) { if (isset($structure["indexes"][$indexname])) {
$new_index_definition = implode(",",$structure["indexes"][$indexname]); $new_index_definition = implode(",", $structure["indexes"][$indexname]);
} else { } else {
$new_index_definition = "__NOT_SET__"; $new_index_definition = "__NOT_SET__";
} }
if ($current_index_definition != $new_index_definition && substr($indexname, 0, 6) != 'local_') { if ($current_index_definition != $new_index_definition && substr($indexname, 0, 6) != 'local_') {
$sql2=self::dropIndex($indexname); $sql2 = self::dropIndex($indexname);
if ($sql3 == "") { if ($sql3 == "") {
$sql3 = "ALTER".$ignore." TABLE `".$temp_name."` ".$sql2; $sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
} else { } else {
$sql3 .= ", ".$sql2; $sql3 .= ", " . $sql2;
} }
} }
} }
// Compare the field structure field by field // Compare the field structure field by field
foreach ($structure["fields"] AS $fieldname => $parameters) { foreach ($structure["fields"] AS $fieldname => $parameters) {
if (!isset($database[$name]["fields"][$fieldname])) { if (!isset($database[$name]["fields"][$fieldname])) {
$sql2=self::addTableField($fieldname, $parameters); $sql2 = self::addTableField($fieldname, $parameters);
if ($sql3 == "") { if ($sql3 == "") {
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2; $sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
} else { } else {
$sql3 .= ", ".$sql2; $sql3 .= ", " . $sql2;
} }
} else { } else {
// Compare the field definition // Compare the field definition
@ -289,9 +376,9 @@ class DBStructure
if ($current_field_definition != $new_field_definition) { if ($current_field_definition != $new_field_definition) {
$sql2 = self::modifyTableField($fieldname, $parameters); $sql2 = self::modifyTableField($fieldname, $parameters);
if ($sql3 == "") { if ($sql3 == "") {
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2; $sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
} else { } else {
$sql3 .= ", ".$sql2; $sql3 .= ", " . $sql2;
} }
} }
} }
@ -306,23 +393,21 @@ class DBStructure
if (!$is_new_table) { if (!$is_new_table) {
foreach ($structure["indexes"] AS $indexname => $fieldnames) { foreach ($structure["indexes"] AS $indexname => $fieldnames) {
if (isset($database[$name]["indexes"][$indexname])) { if (isset($database[$name]["indexes"][$indexname])) {
$current_index_definition = implode(",",$database[$name]["indexes"][$indexname]); $current_index_definition = implode(",", $database[$name]["indexes"][$indexname]);
} else { } else {
$current_index_definition = "__NOT_SET__"; $current_index_definition = "__NOT_SET__";
} }
$new_index_definition = implode(",",$fieldnames); $new_index_definition = implode(",", $fieldnames);
if ($current_index_definition != $new_index_definition) { if ($current_index_definition != $new_index_definition) {
$sql2 = self::createIndex($indexname, $fieldnames); $sql2 = self::createIndex($indexname, $fieldnames);
// Fetch the "group by" fields for unique indexes // Fetch the "group by" fields for unique indexes
if ($fieldnames[0] == "UNIQUE") { $group_by = self::groupBy($fieldnames);
$group_by = self::groupBy($indexname, $fieldnames);
}
if ($sql2 != "") { if ($sql2 != "") {
if ($sql3 == "") { if ($sql3 == "") {
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2; $sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
} else { } else {
$sql3 .= ", ".$sql2; $sql3 .= ", " . $sql2;
} }
} }
} }
@ -331,24 +416,24 @@ class DBStructure
if (isset($database[$name]["table_status"]["Comment"])) { if (isset($database[$name]["table_status"]["Comment"])) {
$structurecomment = defaults($structure, "comment", ""); $structurecomment = defaults($structure, "comment", "");
if ($database[$name]["table_status"]["Comment"] != $structurecomment) { if ($database[$name]["table_status"]["Comment"] != $structurecomment) {
$sql2 = "COMMENT = '".DBA::escape($structurecomment)."'"; $sql2 = "COMMENT = '" . DBA::escape($structurecomment) . "'";
if ($sql3 == "") { if ($sql3 == "") {
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2; $sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
} else { } else {
$sql3 .= ", ".$sql2; $sql3 .= ", " . $sql2;
} }
} }
} }
if (isset($database[$name]["table_status"]["Engine"]) && isset($structure['engine'])) { if (isset($database[$name]["table_status"]["Engine"]) && isset($structure['engine'])) {
if ($database[$name]["table_status"]["Engine"] != $structure['engine']) { if ($database[$name]["table_status"]["Engine"] != $structure['engine']) {
$sql2 = "ENGINE = '".DBA::escape($structure['engine'])."'"; $sql2 = "ENGINE = '" . DBA::escape($structure['engine']) . "'";
if ($sql3 == "") { if ($sql3 == "") {
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2; $sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
} else { } else {
$sql3 .= ", ".$sql2; $sql3 .= ", " . $sql2;
} }
} }
} }
@ -358,9 +443,9 @@ class DBStructure
$sql2 = "DEFAULT COLLATE utf8mb4_general_ci"; $sql2 = "DEFAULT COLLATE utf8mb4_general_ci";
if ($sql3 == "") { if ($sql3 == "") {
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2; $sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
} else { } else {
$sql3 .= ", ".$sql2; $sql3 .= ", " . $sql2;
} }
} }
} }
@ -385,9 +470,9 @@ class DBStructure
if ($field_definition['Collation'] != $parameters['Collation']) { if ($field_definition['Collation'] != $parameters['Collation']) {
$sql2 = self::modifyTableField($fieldname, $parameters); $sql2 = self::modifyTableField($fieldname, $parameters);
if (($sql3 == "") || (substr($sql3, -2, 2) == "; ")) { if (($sql3 == "") || (substr($sql3, -2, 2) == "; ")) {
$sql3 .= "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2; $sql3 .= "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;
} else { } else {
$sql3 .= ", ".$sql2; $sql3 .= ", " . $sql2;
} }
} }
} }
@ -412,27 +497,27 @@ class DBStructure
if ($ignore != "") { if ($ignore != "") {
echo "SET session old_alter_table=1;\n"; echo "SET session old_alter_table=1;\n";
} else { } else {
echo "DROP TABLE IF EXISTS `".$temp_name."`;\n"; echo "DROP TABLE IF EXISTS `" . $temp_name . "`;\n";
echo "CREATE TABLE `".$temp_name."` LIKE `".$name."`;\n"; echo "CREATE TABLE `" . $temp_name . "` LIKE `" . $name . "`;\n";
} }
} }
echo $sql3."\n"; echo $sql3 . "\n";
if ($is_unique && ($temp_name != $name)) { if ($is_unique && ($temp_name != $name)) {
if ($ignore != "") { if ($ignore != "") {
echo "SET session old_alter_table=0;\n"; echo "SET session old_alter_table=0;\n";
} else { } else {
echo "INSERT INTO `".$temp_name."` SELECT ".DBA::anyValueFallback($field_list)." FROM `".$name."`".$group_by.";\n"; echo "INSERT INTO `" . $temp_name . "` SELECT " . DBA::anyValueFallback($field_list) . " FROM `" . $name . "`" . $group_by . ";\n";
echo "DROP TABLE `".$name."`;\n"; echo "DROP TABLE `" . $name . "`;\n";
echo "RENAME TABLE `".$temp_name."` TO `".$name."`;\n"; echo "RENAME TABLE `" . $temp_name . "` TO `" . $name . "`;\n";
} }
} }
} }
if ($action) { if ($action) {
if (!$install) { if (!$install) {
Config::set('system', 'maintenance_reason', L10n::t('%s: updating %s table.', DateTimeFormat::utcNow().' '.date('e'), $name)); Config::set('system', 'maintenance_reason', L10n::t('%s: updating %s table.', DateTimeFormat::utcNow() . ' ' . date('e'), $name));
} }
// Ensure index conversion to unique removes duplicates // Ensure index conversion to unique removes duplicates
@ -440,13 +525,13 @@ class DBStructure
if ($ignore != "") { if ($ignore != "") {
DBA::e("SET session old_alter_table=1;"); DBA::e("SET session old_alter_table=1;");
} else { } else {
$r = DBA::e("DROP TABLE IF EXISTS `".$temp_name."`;"); $r = DBA::e("DROP TABLE IF EXISTS `" . $temp_name . "`;");
if (!DBA::isResult($r)) { if (!DBA::isResult($r)) {
$errors .= self::printUpdateError($sql3); $errors .= self::printUpdateError($sql3);
return $errors; return $errors;
} }
$r = DBA::e("CREATE TABLE `".$temp_name."` LIKE `".$name."`;"); $r = DBA::e("CREATE TABLE `" . $temp_name . "` LIKE `" . $name . "`;");
if (!DBA::isResult($r)) { if (!DBA::isResult($r)) {
$errors .= self::printUpdateError($sql3); $errors .= self::printUpdateError($sql3);
return $errors; return $errors;
@ -462,17 +547,17 @@ class DBStructure
if ($ignore != "") { if ($ignore != "") {
DBA::e("SET session old_alter_table=0;"); DBA::e("SET session old_alter_table=0;");
} else { } else {
$r = DBA::e("INSERT INTO `".$temp_name."` SELECT ".$field_list." FROM `".$name."`".$group_by.";"); $r = DBA::e("INSERT INTO `" . $temp_name . "` SELECT " . $field_list . " FROM `" . $name . "`" . $group_by . ";");
if (!DBA::isResult($r)) { if (!DBA::isResult($r)) {
$errors .= self::printUpdateError($sql3); $errors .= self::printUpdateError($sql3);
return $errors; return $errors;
} }
$r = DBA::e("DROP TABLE `".$name."`;"); $r = DBA::e("DROP TABLE `" . $name . "`;");
if (!DBA::isResult($r)) { if (!DBA::isResult($r)) {
$errors .= self::printUpdateError($sql3); $errors .= self::printUpdateError($sql3);
return $errors; return $errors;
} }
$r = DBA::e("RENAME TABLE `".$temp_name."` TO `".$name."`;"); $r = DBA::e("RENAME TABLE `" . $temp_name . "` TO `" . $name . "`;");
if (!DBA::isResult($r)) { if (!DBA::isResult($r)) {
$errors .= self::printUpdateError($sql3); $errors .= self::printUpdateError($sql3);
return $errors; return $errors;
@ -497,133 +582,105 @@ class DBStructure
return $errors; return $errors;
} }
private static function FieldCommand($parameters, $create = true) { private static function tableStructure($table)
$fieldstruct = $parameters["type"]; {
$structures = q("DESCRIBE `%s`", $table);
if (isset($parameters["Collation"])) { $full_columns = q("SHOW FULL COLUMNS FROM `%s`", $table);
$fieldstruct .= " COLLATE ".$parameters["Collation"];
$indexes = q("SHOW INDEX FROM `%s`", $table);
$table_status = q("SHOW TABLE STATUS WHERE `name` = '%s'", $table);
if (DBA::isResult($table_status)) {
$table_status = $table_status[0];
} else {
$table_status = [];
} }
if (isset($parameters["not null"])) { $fielddata = [];
$fieldstruct .= " NOT NULL"; $indexdata = [];
}
if (isset($parameters["default"])) { if (DBA::isResult($indexes)) {
if (strpos(strtolower($parameters["type"]),"int")!==false) { foreach ($indexes AS $index) {
$fieldstruct .= " DEFAULT ".$parameters["default"]; if ($index["Key_name"] != "PRIMARY" && $index["Non_unique"] == "0" && !isset($indexdata[$index["Key_name"]])) {
} else { $indexdata[$index["Key_name"]] = ["UNIQUE"];
$fieldstruct .= " DEFAULT '".$parameters["default"]."'"; }
if ($index["Index_type"] == "FULLTEXT" && !isset($indexdata[$index["Key_name"]])) {
$indexdata[$index["Key_name"]] = ["FULLTEXT"];
}
$column = $index["Column_name"];
if ($index["Sub_part"] != "") {
$column .= "(" . $index["Sub_part"] . ")";
}
$indexdata[$index["Key_name"]][] = $column;
} }
} }
if (isset($parameters["extra"])) { if (DBA::isResult($structures)) {
$fieldstruct .= " ".$parameters["extra"]; foreach ($structures AS $field) {
} // Replace the default size values so that we don't have to define them
$search = ['tinyint(1)', 'tinyint(3) unsigned', 'tinyint(4)', 'smallint(5) unsigned', 'smallint(6)', 'mediumint(8) unsigned', 'mediumint(9)', 'bigint(20)', 'int(10) unsigned', 'int(11)'];
$replace = ['boolean', 'tinyint unsigned', 'tinyint', 'smallint unsigned', 'smallint', 'mediumint unsigned', 'mediumint', 'bigint', 'int unsigned', 'int'];
$field["Type"] = str_replace($search, $replace, $field["Type"]);
if (isset($parameters["comment"])) { $fielddata[$field["Field"]]["type"] = $field["Type"];
$fieldstruct .= " COMMENT '".DBA::escape($parameters["comment"])."'"; if ($field["Null"] == "NO") {
} $fielddata[$field["Field"]]["not null"] = true;
}
/*if (($parameters["primary"] != "") && $create) if (isset($field["Default"])) {
$fieldstruct .= " PRIMARY KEY";*/ $fielddata[$field["Field"]]["default"] = $field["Default"];
}
return($fieldstruct); if ($field["Extra"] != "") {
} $fielddata[$field["Field"]]["extra"] = $field["Extra"];
}
private static function createTable($name, $structure, $verbose, $action) { if ($field["Key"] == "PRI") {
$r = true; $fielddata[$field["Field"]]["primary"] = true;
$engine = "";
$comment = "";
$sql_rows = [];
$primary_keys = [];
foreach ($structure["fields"] AS $fieldname => $field) {
$sql_rows[] = "`".DBA::escape($fieldname)."` ".self::FieldCommand($field);
if (!empty($field['primary'])) {
$primary_keys[] = $fieldname;
}
}
if (!empty($structure["indexes"])) {
foreach ($structure["indexes"] AS $indexname => $fieldnames) {
$sql_index = self::createIndex($indexname, $fieldnames, "");
if (!is_null($sql_index)) {
$sql_rows[] = $sql_index;
} }
} }
} }
if (DBA::isResult($full_columns)) {
if (isset($structure["engine"])) { foreach ($full_columns AS $column) {
$engine = " ENGINE=" . $structure["engine"]; $fielddata[$column["Field"]]["Collation"] = $column["Collation"];
$fielddata[$column["Field"]]["comment"] = $column["Comment"];
}
} }
if (isset($structure["comment"])) { return ["fields" => $fielddata, "indexes" => $indexdata, "table_status" => $table_status];
$comment = " COMMENT='" . DBA::escape($structure["comment"]) . "'";
}
$sql = implode(",\n\t", $sql_rows);
$sql = sprintf("CREATE TABLE IF NOT EXISTS `%s` (\n\t", DBA::escape($name)).$sql.
"\n)" . $engine . " DEFAULT COLLATE utf8mb4_general_ci" . $comment;
if ($verbose) {
echo $sql.";\n";
}
if ($action) {
$r = DBA::e($sql);
}
return $r;
} }
private static function addTableField($fieldname, $parameters) { private static function dropIndex($indexname)
$sql = sprintf("ADD `%s` %s", DBA::escape($fieldname), self::FieldCommand($parameters)); {
return($sql);
}
private static function modifyTableField($fieldname, $parameters) {
$sql = sprintf("MODIFY `%s` %s", DBA::escape($fieldname), self::FieldCommand($parameters, false));
return($sql);
}
private static function dropIndex($indexname) {
$sql = sprintf("DROP INDEX `%s`", DBA::escape($indexname)); $sql = sprintf("DROP INDEX `%s`", DBA::escape($indexname));
return($sql); return ($sql);
} }
private static function createIndex($indexname, $fieldnames, $method = "ADD") { private static function addTableField($fieldname, $parameters)
$method = strtoupper(trim($method)); {
if ($method!="" && $method!="ADD") { $sql = sprintf("ADD `%s` %s", DBA::escape($fieldname), self::FieldCommand($parameters));
throw new Exception("Invalid parameter 'method' in self::createIndex(): '$method'"); return ($sql);
}
if ($fieldnames[0] == "UNIQUE") {
array_shift($fieldnames);
$method .= ' UNIQUE';
}
$names = "";
foreach ($fieldnames AS $fieldname) {
if ($names != "") {
$names .= ",";
}
if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches)) {
$names .= "`".DBA::escape($matches[1])."`(".intval($matches[2]).")";
} else {
$names .= "`".DBA::escape($fieldname)."`";
}
}
if ($indexname == "PRIMARY") {
return sprintf("%s PRIMARY KEY(%s)", $method, $names);
}
$sql = sprintf("%s INDEX `%s` (%s)", $method, DBA::escape($indexname), $names);
return($sql);
} }
private static function groupBy($indexname, $fieldnames) { private static function modifyTableField($fieldname, $parameters)
{
$sql = sprintf("MODIFY `%s` %s", DBA::escape($fieldname), self::FieldCommand($parameters, false));
return ($sql);
}
/**
* Constructs a GROUP BY clause from a UNIQUE index definition.
*
* @param array $fieldnames
* @return string
*/
private static function groupBy(array $fieldnames)
{
if ($fieldnames[0] != "UNIQUE") { if ($fieldnames[0] != "UNIQUE") {
return ""; return "";
} }
@ -637,9 +694,9 @@ class DBStructure
} }
if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches)) { if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches)) {
$names .= "`".DBA::escape($matches[1])."`"; $names .= "`" . DBA::escape($matches[1]) . "`";
} else { } else {
$names .= "`".DBA::escape($fieldname)."`"; $names .= "`" . DBA::escape($fieldname) . "`";
} }
} }
@ -647,92 +704,21 @@ class DBStructure
return $sql; return $sql;
} }
/**
* Check if a table exists
*
* @param string $table Table name
*
* @return boolean Does the table exist?
*/
public static function existsTable($table)
{
if (empty($table)) {
return false;
}
$table = DBA::escape($table);
$sql = "SHOW TABLES LIKE '" . $table . "';";
$stmt = DBA::p($sql);
if (is_bool($stmt)) {
$retval = $stmt;
} else {
$retval = (DBA::numRows($stmt) > 0);
}
DBA::close($stmt);
return $retval;
}
/**
* Check if the columns of the table exists
*
* @param string $table Table name
* @param array $columns Columns to check ( Syntax: [ $col1, $col2, .. ] )
*
* @return boolean Does the table exist?
*/
public static function existsColumn($table, $columns = []) {
if (empty($table)) {
return false;
}
if (is_null($columns) || empty($columns)) {
return self::existsTable($table);
}
$table = DBA::escape($table);
foreach ($columns AS $column) {
$sql = "SHOW COLUMNS FROM `" . $table . "` LIKE '" . $column . "';";
$stmt = DBA::p($sql);
if (is_bool($stmt)) {
$retval = $stmt;
} else {
$retval = (DBA::numRows($stmt) > 0);
}
DBA::close($stmt);
if (!$retval) {
return false;
}
}
return true;
}
const RENAME_COLUMN = 0;
const RENAME_PRIMARY_KEY = 1;
/** /**
* Renames columns or the primary key of a table * Renames columns or the primary key of a table
*
* @todo You cannot rename a primary key if "auto increment" is set * @todo You cannot rename a primary key if "auto increment" is set
* *
* @param string $table Table name * @param string $table Table name
* @param array $columns Columns Syntax for Rename: [ $old1 => [ $new1, $type1 ], $old2 => [ $new2, $type2 ], ... ] ) * @param array $columns Columns Syntax for Rename: [ $old1 => [ $new1, $type1 ], $old2 => [ $new2, $type2 ], ... ] )
* Syntax for Primary Key: [ $col1, $col2, ...] ) * Syntax for Primary Key: [ $col1, $col2, ...] )
* @param int $type The type of renaming (Default is Column) * @param int $type The type of renaming (Default is Column)
* *
* @return boolean Was the renaming successful? * @return boolean Was the renaming successful?
* *
*/ */
public static function rename($table, $columns, $type = self::RENAME_COLUMN) { public static function rename($table, $columns, $type = self::RENAME_COLUMN)
{
if (empty($table) || empty($columns)) { if (empty($table) || empty($columns)) {
return false; return false;
} }
@ -783,40 +769,73 @@ class DBStructure
} }
/** /**
* Loads the database structure definition from the config/dbstructure.config.php file. * Check if the columns of the table exists
* On first pass, defines DB_UPDATE_VERSION constant.
* *
* @see config/dbstructure.config.php * @param string $table Table name
* @param boolean $with_addons_structure Whether to tack on addons additional tables * @param array $columns Columns to check ( Syntax: [ $col1, $col2, .. ] )
* @return array *
* @throws Exception * @return boolean Does the table exist?
*/ */
public static function definition($with_addons_structure = true) public static function existsColumn($table, $columns = [])
{ {
if (!self::$definition) { if (empty($table)) {
$a = \Friendica\BaseObject::getApp(); return false;
}
$filename = $a->getBasePath() . '/config/dbstructure.config.php'; if (is_null($columns) || empty($columns)) {
return self::existsTable($table);
}
if (!is_readable($filename)) { $table = DBA::escape($table);
throw new Exception('Missing database structure config file config/dbstructure.config.php');
foreach ($columns AS $column) {
$sql = "SHOW COLUMNS FROM `" . $table . "` LIKE '" . $column . "';";
$stmt = DBA::p($sql);
if (is_bool($stmt)) {
$retval = $stmt;
} else {
$retval = (DBA::numRows($stmt) > 0);
} }
$definition = require $filename; DBA::close($stmt);
if (!$definition) { if (!$retval) {
throw new Exception('Corrupted database structure config file config/dbstructure.config.php'); return false;
} }
}
self::$definition = $definition; return true;
}
/**
* Check if a table exists
*
* @param string $table Table name
*
* @return boolean Does the table exist?
*/
public static function existsTable($table)
{
if (empty($table)) {
return false;
}
$table = DBA::escape($table);
$sql = "SHOW TABLES LIKE '" . $table . "';";
$stmt = DBA::p($sql);
if (is_bool($stmt)) {
$retval = $stmt;
} else { } else {
$definition = self::$definition; $retval = (DBA::numRows($stmt) > 0);
} }
if ($with_addons_structure) { DBA::close($stmt);
Hook::callAll('dbstructure_definition', $definition);
}
return $definition; return $retval;
} }
} }

View File

@ -13,8 +13,6 @@ use Friendica\Model\ItemURI;
use Friendica\Model\PermissionSet; use Friendica\Model\PermissionSet;
use Friendica\Database\DBA; use Friendica\Database\DBA;
require_once 'include/dba.php';
/** /**
* Post update functions * Post update functions
*/ */

View File

@ -16,8 +16,6 @@ use Friendica\Util\JsonLD;
use Friendica\Util\DateTimeFormat; use Friendica\Util\DateTimeFormat;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'boot.php';
class APContact extends BaseObject class APContact extends BaseObject
{ {
/** /**

View File

@ -27,10 +27,6 @@ use Friendica\Util\DateTimeFormat;
use Friendica\Util\Network; use Friendica\Util\Network;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'boot.php';
require_once 'include/dba.php';
require_once 'include/text.php';
/** /**
* @brief functions for interacting with a contact * @brief functions for interacting with a contact
*/ */
@ -1376,8 +1372,6 @@ class Contact extends BaseObject
{ {
$a = self::getApp(); $a = self::getApp();
require_once 'include/conversation.php';
$cid = Self::getIdForURL($contact_url); $cid = Self::getIdForURL($contact_url);
$contact = DBA::selectFirst('contact', ['contact-type', 'network'], ['id' => $cid]); $contact = DBA::selectFirst('contact', ['contact-type', 'network'], ['id' => $cid]);

View File

@ -10,8 +10,6 @@ use Friendica\Core\Protocol;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\Util\DateTimeFormat; use Friendica\Util\DateTimeFormat;
require_once "include/dba.php";
class Conversation class Conversation
{ {
/* /*

View File

@ -19,10 +19,6 @@ use Friendica\Util\Map;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\XML; use Friendica\Util\XML;
require_once 'boot.php';
require_once 'include/dba.php';
require_once 'include/items.php';
/** /**
* @brief functions for interacting with the event database table * @brief functions for interacting with the event database table
*/ */

View File

@ -19,8 +19,6 @@ use Friendica\Util\DateTimeFormat;
use Friendica\Util\Network; use Friendica\Util\Network;
use Friendica\Util\Strings; use Friendica\Util\Strings;
require_once 'include/dba.php';
/** /**
* @brief This class handles GlobalContact related functions * @brief This class handles GlobalContact related functions
*/ */

View File

@ -12,10 +12,6 @@ use Friendica\Core\Renderer;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\Util\Security; use Friendica\Util\Security;
require_once 'boot.php';
require_once 'include/dba.php';
require_once 'include/text.php';
/** /**
* @brief functions for interacting with the group database table * @brief functions for interacting with the group database table
*/ */

View File

@ -36,10 +36,6 @@ use Friendica\Util\Security;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Text_LanguageDetect; use Text_LanguageDetect;
require_once 'boot.php';
require_once 'include/items.php';
require_once 'include/text.php';
class Item extends BaseObject class Item extends BaseObject
{ {
// Posting types, inspired by https://www.w3.org/TR/activitystreams-vocabulary/#object-types // Posting types, inspired by https://www.w3.org/TR/activitystreams-vocabulary/#object-types

View File

@ -11,10 +11,6 @@ use Friendica\Content\Text;
use Friendica\Core\PConfig; use Friendica\Core\PConfig;
use Friendica\Core\Protocol; use Friendica\Core\Protocol;
require_once 'boot.php';
require_once 'include/items.php';
require_once 'include/text.php';
class ItemContent extends BaseObject class ItemContent extends BaseObject
{ {
/** /**

View File

@ -9,8 +9,6 @@ namespace Friendica\Model;
use Friendica\BaseObject; use Friendica\BaseObject;
use Friendica\Database\DBA; use Friendica\Database\DBA;
require_once 'boot.php';
class ItemURI extends BaseObject class ItemURI extends BaseObject
{ {
/** /**

View File

@ -13,8 +13,6 @@ use Friendica\Database\DBA;
use Friendica\Network\Probe; use Friendica\Network\Probe;
use Friendica\Util\DateTimeFormat; use Friendica\Util\DateTimeFormat;
require_once 'include/dba.php';
/** /**
* Class to handle private messages * Class to handle private messages
*/ */

View File

@ -7,8 +7,6 @@ namespace Friendica\Model;
use Friendica\BaseObject; use Friendica\BaseObject;
use Friendica\Database\DBA; use Friendica\Database\DBA;
require_once 'include/dba.php';
/** /**
* @brief functions for interacting with the permission set of an object (item, photo, event, ...) * @brief functions for interacting with the permission set of an object (item, photo, event, ...)
*/ */

View File

@ -16,8 +16,6 @@ use Friendica\Util\DateTimeFormat;
use Friendica\Util\Network; use Friendica\Util\Network;
use Friendica\Util\Security; use Friendica\Util\Security;
require_once 'include/dba.php';
/** /**
* Class to handle photo dabatase table * Class to handle photo dabatase table
*/ */

View File

@ -8,8 +8,6 @@ use Friendica\BaseObject;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\Util\DateTimeFormat; use Friendica\Util\DateTimeFormat;
require_once 'include/dba.php';
/** /**
* @brief functions for interacting with a process * @brief functions for interacting with a process
*/ */

View File

@ -28,8 +28,6 @@ use Friendica\Util\Proxy as ProxyUtils;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use Friendica\Util\Temporal; use Friendica\Util\Temporal;
require_once 'include/dba.php';
class Profile class Profile
{ {
/** /**

View File

@ -9,8 +9,6 @@ use Friendica\Core\Worker;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\Util\DateTimeFormat; use Friendica\Util\DateTimeFormat;
require_once 'include/dba.php';
class PushSubscriber class PushSubscriber
{ {
/** /**

View File

@ -9,8 +9,6 @@ use Friendica\Core\Logger;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\Util\DateTimeFormat; use Friendica\Util\DateTimeFormat;
require_once 'include/dba.php';
class Queue class Queue
{ {
/** /**

View File

@ -7,10 +7,6 @@ namespace Friendica\Model;
use Friendica\Core\System; use Friendica\Core\System;
use Friendica\Database\DBA; use Friendica\Database\DBA;
require_once 'boot.php';
require_once 'include/conversation.php';
require_once 'include/dba.php';
class Term class Term
{ {
public static function tagTextFromItemId($itemid) public static function tagTextFromItemId($itemid)

View File

@ -24,10 +24,6 @@ use Friendica\Util\Network;
use Friendica\Util\Strings; use Friendica\Util\Strings;
use LightOpenID; use LightOpenID;
require_once 'boot.php';
require_once 'include/dba.php';
require_once 'include/enotify.php';
require_once 'include/text.php';
/** /**
* @brief This class handles User related functions * @brief This class handles User related functions
*/ */

Some files were not shown because too many files have changed in this diff Show More