diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-02-05 00:10:23 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-02-05 00:13:21 +0300 |
commit | 1f919eaef022b4721ecb9f72a0ea703b2ac3e89a (patch) | |
tree | 53f75ef906c296b9da4598e128f677b4b926194b /insert-api-objects.php |
Diffstat (limited to 'insert-api-objects.php')
-rw-r--r-- | insert-api-objects.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/insert-api-objects.php b/insert-api-objects.php new file mode 100644 index 0000000..f2d3823 --- /dev/null +++ b/insert-api-objects.php @@ -0,0 +1,44 @@ +<?php + +require_once __DIR__.'/common.php'; + +$file = $argv[1] ?? ''; +if (!$file) + fatalError("no file provided"); + +$str = file_get_contents($file); +$str = iconv('windows-1251', 'utf-8//IGNORE', $str); + +$is_modified = false; + +try { + $doc = onEachMessageOrAttachment($str, function (simplehtmldom\HtmlDocument $doc, int $id, simplehtmldom\HtmlNode $node) { + global $is_modified; + + $file = ARCHIVE_DIR.'/messages/api/'.($id % 100).'/'.$id.'.txt'; + if (!file_exists($file)) + return; + + $obj = file_get_contents($file); + + $a = $doc->createElement('a'); + $a->setAttribute('href', 'javascript:void(0)'); + $a->setAttribute('onclick', "this.nextSibling.style.display = (this.nextSibling.style.display === 'none' ? 'block' : 'none')"); + $a->appendChild($doc->createTextNode('Показать/скрыть объект API')); + + $div = $doc->createElement('div'); + $div->setAttribute('style', 'display: none; font-size: 11px; font-family: monospace; background-color: #edeef0; padding: 10px; white-space: pre; overflow: auto;'); + $div->appendChild($doc->createTextNode($obj)); + + $node->appendChild($doc->createElement('br')); + $node->appendChild($a); + $node->appendChild($div); + + $is_modified = true; + }, null); +} catch (Exception $e) { + fatalError($e->getMessage()); +} + +if ($is_modified) + file_put_contents($file, iconv('utf-8', 'windows-1251//IGNORE', $doc->outertext));
\ No newline at end of file |