-
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* create document entity * add upload, previews, most of api methods * ui start * better ui, search, uploading (icons by myslivets) Co-Authored-By: Daniel <[email protected]> * add editing functions * add viewer and gallery * preparations for picker * things * add counter on tab * add tags * fix gif processing * fix png processing * picker * addd search * add fast uploader * openvk midn. support, change midn.photomodal color * fix low register format chekc * add gif play on click * unauthorized limitations --------- Co-authored-by: Daniel <[email protected]>
- Loading branch information
Showing
45 changed files
with
2,550 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,215 @@ | ||
<?php declare(strict_types=1); | ||
namespace openvk\VKAPI\Handlers; | ||
use Chandler\Database\DatabaseConnection; | ||
use openvk\Web\Models\Entities\Document; | ||
use openvk\Web\Models\Repositories\Documents; | ||
|
||
final class Docs extends VKAPIRequestHandler | ||
{ | ||
function add(int $owner_id, int $doc_id, ?string $access_key): string | ||
{ | ||
$this->requireUser(); | ||
$this->willExecuteWriteAction(); | ||
|
||
$doc = (new Documents)->getDocumentById($owner_id, $doc_id); | ||
if(!$doc || $doc->isDeleted()) | ||
$this->fail(1150, "Invalid document id"); | ||
|
||
if(!$doc->checkAccessKey($access_key)) | ||
$this->fail(15, "Access denied"); | ||
|
||
if($doc->isCopiedBy($this->getUser())) | ||
$this->fail(100, "One of the parameters specified was missing or invalid: this document already added"); | ||
|
||
$new_doc = $doc->copy($this->getUser()); | ||
|
||
return $new_doc->getPrettyId(); | ||
} | ||
|
||
function delete(int $owner_id, int $doc_id): int | ||
{ | ||
$this->requireUser(); | ||
$this->willExecuteWriteAction(); | ||
$doc = (new Documents)->getDocumentByIdUnsafe($owner_id, $doc_id); | ||
if(!$doc || $doc->isDeleted()) | ||
$this->fail(1150, "Invalid document id"); | ||
|
||
if(!$doc->canBeModifiedBy($this->getUser())) | ||
$this->fail(1153, "Access to document is denied"); | ||
|
||
$doc->delete(); | ||
|
||
return 1; | ||
} | ||
|
||
function restore(int $owner_id, int $doc_id): int | ||
{ | ||
$this->requireUser(); | ||
$this->willExecuteWriteAction(); | ||
|
||
return $this->add($owner_id, $doc_id, ""); | ||
} | ||
|
||
function edit(int $owner_id, int $doc_id, ?string $title = "", ?string $tags = "", ?int $folder_id = 0, int $owner_hidden = -1): int | ||
{ | ||
$this->requireUser(); | ||
$this->willExecuteWriteAction(); | ||
|
||
$doc = (new Documents)->getDocumentByIdUnsafe($owner_id, $doc_id); | ||
if(!$doc || $doc->isDeleted()) | ||
$this->fail(1150, "Invalid document id"); | ||
if(!$doc->canBeModifiedBy($this->getUser())) | ||
$this->fail(1153, "Access to document is denied"); | ||
if(iconv_strlen($title ?? "") > 128 || iconv_strlen($title ?? "") < 0) | ||
$this->fail(1152, "Invalid document title"); | ||
if(iconv_strlen($tags ?? "") > 256) | ||
$this->fail(1154, "Invalid tags"); | ||
|
||
if($title) | ||
$doc->setName($title); | ||
|
||
$doc->setTags($tags); | ||
if(in_array($folder_id, [0, 3])) | ||
$doc->setFolder_id($folder_id); | ||
if(in_array($owner_hidden, [0, 1])) | ||
$doc->setOwner_hidden($owner_hidden); | ||
|
||
try { | ||
$doc->setEdited(time()); | ||
$doc->save(); | ||
} catch(\Throwable $e) { | ||
return 0; | ||
} | ||
|
||
return 1; | ||
} | ||
|
||
function get(int $count = 30, int $offset = 0, int $type = -1, int $owner_id = NULL, int $return_tags = 0, int $order = 0): object | ||
{ | ||
$this->requireUser(); | ||
if(!$owner_id) | ||
$owner_id = $this->getUser()->getId(); | ||
|
||
if($owner_id > 0 && $owner_id != $this->getUser()->getId()) | ||
$this->fail(15, "Access denied"); | ||
|
||
$documents = (new Documents)->getDocumentsByOwner($owner_id, $order, $type); | ||
$res = (object)[ | ||
"count" => $documents->size(), | ||
"items" => [], | ||
]; | ||
|
||
foreach($documents->offsetLimit($offset, $count) as $doc) { | ||
$res->items[] = $doc->toVkApiStruct($this->getUser(), $return_tags == 1); | ||
} | ||
|
||
return $res; | ||
} | ||
|
||
function getById(string $docs, int $return_tags = 0): array | ||
{ | ||
$this->requireUser(); | ||
|
||
$item_ids = explode(",", $docs); | ||
$response = []; | ||
if(sizeof($item_ids) < 1) { | ||
$this->fail(100, "One of the parameters specified was missing or invalid: docs is undefined"); | ||
} | ||
|
||
foreach($item_ids as $id) { | ||
$splitted_id = explode("_", $id); | ||
$doc = (new Documents)->getDocumentById((int)$splitted_id[0], (int)$splitted_id[1], $splitted_id[2]); | ||
if(!$doc || $doc->isDeleted()) | ||
continue; | ||
|
||
$response[] = $doc->toVkApiStruct($this->getUser(), $return_tags === 1); | ||
} | ||
|
||
return $response; | ||
} | ||
|
||
function getTypes(?int $owner_id) | ||
{ | ||
$this->requireUser(); | ||
if(!$owner_id) | ||
$owner_id = $this->getUser()->getId(); | ||
|
||
if($owner_id > 0 && $owner_id != $this->getUser()->getId()) | ||
$this->fail(15, "Access denied"); | ||
|
||
$types = (new Documents)->getTypes($owner_id); | ||
return [ | ||
"count" => sizeof($types), | ||
"items" => $types, | ||
]; | ||
} | ||
|
||
function getTags(?int $owner_id, ?int $type = 0) | ||
{ | ||
$this->requireUser(); | ||
if(!$owner_id) | ||
$owner_id = $this->getUser()->getId(); | ||
|
||
if($owner_id > 0 && $owner_id != $this->getUser()->getId()) | ||
$this->fail(15, "Access denied"); | ||
|
||
$tags = (new Documents)->getTags($owner_id, $type); | ||
return $tags; | ||
} | ||
|
||
function search(string $q = "", int $search_own = -1, int $order = -1, int $count = 30, int $offset = 0, int $return_tags = 0, int $type = 0, ?string $tags = NULL): object | ||
{ | ||
$this->requireUser(); | ||
|
||
$params = []; | ||
$o_order = ["type" => "id", "invert" => false]; | ||
|
||
if(iconv_strlen($q) > 512) | ||
$this->fail(100, "One of the parameters specified was missing or invalid: q should be not more 512 letters length"); | ||
|
||
if(in_array($type, [1,2,3,4,5,6,7,8])) | ||
$params["type"] = $type; | ||
|
||
if(iconv_strlen($tags ?? "") < 512) | ||
$params["tags"] = $tags; | ||
|
||
if($search_own === 1) | ||
$params["from_me"] = $this->getUser()->getId(); | ||
|
||
$documents = (new Documents)->find($q, $params, $o_order); | ||
$res = (object)[ | ||
"count" => $documents->size(), | ||
"items" => [], | ||
]; | ||
|
||
foreach($documents->offsetLimit($offset, $count) as $doc) { | ||
$res->items[] = $doc->toVkApiStruct($this->getUser(), $return_tags == 1); | ||
} | ||
|
||
return $res; | ||
} | ||
|
||
function getUploadServer(?int $group_id = NULL) | ||
{ | ||
$this->requireUser(); | ||
$this->willExecuteWriteAction(); | ||
|
||
return 0; | ||
} | ||
|
||
function getWallUploadServer(?int $group_id = NULL) | ||
{ | ||
$this->requireUser(); | ||
$this->willExecuteWriteAction(); | ||
|
||
return 0; | ||
} | ||
|
||
function save(string $file, string $title, string $tags, ?int $return_tags = 0) | ||
{ | ||
$this->requireUser(); | ||
$this->willExecuteWriteAction(); | ||
|
||
return 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.