Removed some unused tables and functions
This commit is contained in:
parent
75c7dc0fa0
commit
583914a548
23
database.sql
23
database.sql
|
@ -274,29 +274,6 @@ CREATE TABLE IF NOT EXISTS `fcontact` (
|
||||||
UNIQUE INDEX `url` (`url`(190))
|
UNIQUE INDEX `url` (`url`(190))
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
|
||||||
--
|
|
||||||
-- TABLE ffinder
|
|
||||||
--
|
|
||||||
CREATE TABLE IF NOT EXISTS `ffinder` (
|
|
||||||
`id` int(10) unsigned NOT NULL auto_increment,
|
|
||||||
`uid` int(10) unsigned NOT NULL DEFAULT 0,
|
|
||||||
`cid` int(10) unsigned NOT NULL DEFAULT 0,
|
|
||||||
`fid` int(10) unsigned NOT NULL DEFAULT 0,
|
|
||||||
PRIMARY KEY(`id`)
|
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- TABLE fserver
|
|
||||||
--
|
|
||||||
CREATE TABLE IF NOT EXISTS `fserver` (
|
|
||||||
`id` int(11) NOT NULL auto_increment,
|
|
||||||
`server` varchar(255) NOT NULL DEFAULT '',
|
|
||||||
`posturl` varchar(255) NOT NULL DEFAULT '',
|
|
||||||
`key` text,
|
|
||||||
PRIMARY KEY(`id`),
|
|
||||||
INDEX `server` (`server`(32))
|
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- TABLE fsuggest
|
-- TABLE fsuggest
|
||||||
--
|
--
|
||||||
|
|
|
@ -888,29 +888,6 @@ function db_definition() {
|
||||||
"url" => array("UNIQUE", "url(190)"),
|
"url" => array("UNIQUE", "url(190)"),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$database["ffinder"] = array(
|
|
||||||
"fields" => array(
|
|
||||||
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
||||||
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
||||||
"cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
|
||||||
"fid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("fcontact" => "id")),
|
|
||||||
),
|
|
||||||
"indexes" => array(
|
|
||||||
"PRIMARY" => array("id"),
|
|
||||||
)
|
|
||||||
);
|
|
||||||
$database["fserver"] = array(
|
|
||||||
"fields" => array(
|
|
||||||
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
||||||
"server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
||||||
"posturl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
||||||
"key" => array("type" => "text"),
|
|
||||||
),
|
|
||||||
"indexes" => array(
|
|
||||||
"PRIMARY" => array("id"),
|
|
||||||
"server" => array("server(32)"),
|
|
||||||
)
|
|
||||||
);
|
|
||||||
$database["fsuggest"] = array(
|
$database["fsuggest"] = array(
|
||||||
"fields" => array(
|
"fields" => array(
|
||||||
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
use Friendica\Database\DBM;
|
|
||||||
|
|
||||||
function fcontact_store($url,$name,$photo) {
|
|
||||||
|
|
||||||
$nurl = str_replace(array('https:','//www.'), array('http:','//'), $url);
|
|
||||||
|
|
||||||
$r = q("SELECT `id` FROM `fcontact` WHERE `url` = '%s' LIMIT 1",
|
|
||||||
dbesc($nurl)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (DBM::is_result($r))
|
|
||||||
return $r[0]['id'];
|
|
||||||
|
|
||||||
$r = dba::insert('fcontact', array('url' => $nurl, 'name' => $name, 'photo' => $photo));
|
|
||||||
|
|
||||||
if (DBM::is_result($r)) {
|
|
||||||
$r = q("SELECT `id` FROM `fcontact` WHERE `url` = '%s' LIMIT 1",
|
|
||||||
dbesc($nurl)
|
|
||||||
);
|
|
||||||
if (DBM::is_result($r))
|
|
||||||
return $r[0]['id'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
function ffinder_store($uid,$cid,$fid) {
|
|
||||||
$r = dba::insert('ffinder', array('uid' => $uid, 'cid' => $cid, 'fid' => $fid));
|
|
||||||
return $r;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue