mirror of
https://github.com/openvk/openvk
synced 2025-01-09 17:29:42 +03:00
90 lines
2.2 KiB
PHP
90 lines
2.2 KiB
PHP
|
<?php declare(strict_types=1);
|
||
|
namespace openvk\Web\Models\Entities\UserInfoEntities;
|
||
|
use openvk\Web\Models\RowModel;
|
||
|
use openvk\Web\Models\Repositories\Users;
|
||
|
use Chandler\Database\DatabaseConnection;
|
||
|
|
||
|
class AdditionalField extends RowModel
|
||
|
{
|
||
|
protected $tableName = "additional_fields";
|
||
|
|
||
|
const PLACE_CONTACTS = 0;
|
||
|
const PLACE_INTERESTS = 1;
|
||
|
|
||
|
function getOwner(): int
|
||
|
{
|
||
|
return (int) $this->getRecord()->owner;
|
||
|
}
|
||
|
|
||
|
function getName(): string
|
||
|
{
|
||
|
$orig_name = $this->getRecord()->name;
|
||
|
$name = $orig_name;
|
||
|
if($name[0] === "_")
|
||
|
$name = tr("custom_fav_" . substr($name, 1));
|
||
|
|
||
|
if(str_contains($name, "custom_fav"))
|
||
|
return $orig_name;
|
||
|
|
||
|
return $name;
|
||
|
}
|
||
|
|
||
|
function getContent(): string
|
||
|
{
|
||
|
return $this->getRecord()->text;
|
||
|
}
|
||
|
|
||
|
function getPlace(): string
|
||
|
{
|
||
|
switch($this->getRecord()->place) {
|
||
|
case AdditionalField::PLACE_CONTACTS:
|
||
|
return "contact";
|
||
|
case AdditionalField::PLACE_INTERESTS:
|
||
|
return "interest";
|
||
|
}
|
||
|
|
||
|
return "contact";
|
||
|
}
|
||
|
|
||
|
function toVkApiStruct(): object
|
||
|
{
|
||
|
return (object) [
|
||
|
"type" => $this->getRecord()->place,
|
||
|
"name" => $this->getName(),
|
||
|
"text" => $this->getContent()
|
||
|
];
|
||
|
}
|
||
|
|
||
|
static function getById(int $id)
|
||
|
{
|
||
|
$ctx = DatabaseConnection::i()->getContext();
|
||
|
$entry = $ctx->table("additional_fields")->where([
|
||
|
"id" => $id,
|
||
|
])->fetch();
|
||
|
|
||
|
if(!$entry)
|
||
|
return NULL;
|
||
|
|
||
|
return new AdditionalField($entry);
|
||
|
}
|
||
|
|
||
|
static function getByOwner(int $owner): \Traversable
|
||
|
{
|
||
|
$ctx = DatabaseConnection::i()->getContext();
|
||
|
$entries = $ctx->table("additional_fields")->where([
|
||
|
"owner" => $owner,
|
||
|
]);
|
||
|
|
||
|
foreach($entries as $entry) {
|
||
|
yield new AdditionalField($entry);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static function getCountByOwner(int $owner): \Traversable
|
||
|
{
|
||
|
return DatabaseConnection::i()->getContext()->table("additional_fields")->where([
|
||
|
"owner" => $owner,
|
||
|
])->count();
|
||
|
}
|
||
|
}
|