mirror of
https://github.com/mbirth/tcl_update_db.git
synced 2024-11-09 23:06:45 +00:00
128 lines
4.1 KiB
PHP
128 lines
4.1 KiB
PHP
<?php
|
|
|
|
namespace TclUpdates;
|
|
|
|
class SQLiteWriter
|
|
{
|
|
private $dbFile;
|
|
private $pdo;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->dbFile = __DIR__ . '/../../otadb.db3';
|
|
$this->pdo = new \PDO('sqlite:' . $this->dbFile);
|
|
if ($this->pdo === false) {
|
|
return false;
|
|
}
|
|
$this->pdo->exec('PRAGMA foreign_keys=on;');
|
|
}
|
|
|
|
private function insertArray($table, $data, $replace = false)
|
|
{
|
|
$placeholders = array_fill(0, count($data), '?');
|
|
$sql = 'INSERT ';
|
|
if ($replace) {
|
|
$sql .= 'OR REPLACE ';
|
|
}
|
|
$sql .= 'INTO "' . $table . '" (' . implode(', ', array_keys($data)) . ') VALUES (' . implode(', ', $placeholders) . ')';
|
|
$stmt = $this->pdo->prepare($sql);
|
|
$ok = $stmt->execute(array_values($data));
|
|
return $ok;
|
|
}
|
|
|
|
public function addFile($file_arr)
|
|
{
|
|
// Try fetch previous entry
|
|
$sql = 'SELECT * FROM "files" WHERE "sha1"=?';
|
|
$stmt = $this->pdo->prepare($sql);
|
|
$ok = $stmt->execute(array($file_arr['file_sha1']));
|
|
$result = $stmt->fetchAll(\PDO::FETCH_ASSOC);
|
|
$pubFirst = '2099-12-31';
|
|
$pubLast = '1970-01-01';
|
|
$note = array('en' => null, 'ja' => null, 'ko' => null, 'zh' => null);
|
|
if (count($result) > 0) {
|
|
$pubFirst = $result[0]['published_first'];
|
|
$pubLast = $result[0]['published_last'];
|
|
$note = json_decode($result[0]['note'], true);
|
|
$hasChanged = false;
|
|
} else {
|
|
$hasChanged = true;
|
|
}
|
|
|
|
if (strtotime($file_arr['pubDate']) < strtotime($pubFirst)) {
|
|
$pubFirst = $file_arr['pubDate'];
|
|
$hasChanged = true;
|
|
}
|
|
|
|
if (strtotime($file_arr['pubDate']) > strtotime($pubLast)) {
|
|
$pubLast = $file_arr['pubDate'];
|
|
$hasChanged = true;
|
|
}
|
|
|
|
foreach ($file_arr['note'] as $lang => $desc) {
|
|
// TODO: Maybe improve, i.e. compare for different contents
|
|
if (strpos($desc, chr(0xc3)) !== false) {
|
|
// fix double-UTF-8 encoding
|
|
$desc = utf8_decode($desc);
|
|
}
|
|
if (mb_strlen($desc) > mb_strlen($note[$lang])) {
|
|
$note[$lang] = $desc;
|
|
$hasChanged = true;
|
|
}
|
|
}
|
|
|
|
if ($hasChanged) {
|
|
$this->insertArray('files', array(
|
|
'sha1' => $file_arr['file_sha1'],
|
|
'file_name' => $file_arr['file_name'],
|
|
'file_size' => $file_arr['file_size'],
|
|
'fv' => $file_arr['fv'],
|
|
'tv' => $file_arr['tv'],
|
|
'type' => $file_arr['type'],
|
|
'note' => json_encode($note, JSON_UNESCAPED_UNICODE),
|
|
'published_first' => $pubFirst,
|
|
'published_last' => $pubLast,
|
|
), true);
|
|
}
|
|
}
|
|
|
|
public function addGotu(GotuObject $g, $seenDate = false)
|
|
{
|
|
if ($seenDate === false) {
|
|
$seenDate = gmdate('c');
|
|
}
|
|
$this->addFile(array(
|
|
'file_sha1' => $g->file_chksum,
|
|
'file_name' => $g->filename,
|
|
'file_size' => $g->file_size,
|
|
'type' => $g->type,
|
|
'fv' => $g->fv,
|
|
'tv' => $g->tv,
|
|
'note' => array(
|
|
'en' => $g->description_en,
|
|
'ja' => $g->description_ja,
|
|
'ko' => $g->description_ko,
|
|
'zh' => $g->description_zh,
|
|
),
|
|
'pubDate' => $g->time,
|
|
));
|
|
$ok = $this->insertArray('updates', array(
|
|
'curef' => $g->curef,
|
|
'update_desc' => $g->update_desc,
|
|
'svn' => $g->svn,
|
|
'seenDate' => $seenDate,
|
|
'pubDate' => $g->time,
|
|
'publisher' => $g->publisher,
|
|
'fwId' => $g->fw_id,
|
|
'num_files' => $g->fileset_count,
|
|
'file_id' => $g->file_id,
|
|
'file_sha1' => $g->file_chksum,
|
|
));
|
|
if ($ok) {
|
|
$key = $this->pdo->lastInsertId();
|
|
return $key;
|
|
}
|
|
return false;
|
|
}
|
|
}
|