You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
richdocuments/lib/db/op.php

95 lines
2.0 KiB
PHTML

11 years ago
<?php
11 years ago
/**
* ownCloud - Documents App
11 years ago
*
* @author Victor Dubiniuk
* @copyright 2013 Victor Dubiniuk victor.dubiniuk@gmail.com
*
* This file is licensed under the Affero General Public License version 3 or
* later.
*/
11 years ago
namespace OCA\Documents;
11 years ago
class Db_Op extends Db {
11 years ago
const DB_TABLE = '`*PREFIX*documents_op`';
protected $tableName = '`*PREFIX*documents_op`';
11 years ago
protected $insertStatement = 'INSERT INTO `*PREFIX*documents_op` (`es_id`, `member`, `opspec`) VALUES (?, ?, ?)';
11 years ago
public static function addOpsArray($esId, $memberId, $ops){
$lastSeq = "";
$opObj = new Db_Op();
11 years ago
foreach ($ops as $op) {
$opObj->setData(array(
$esId,
$memberId,
json_encode($op)
));
$opObj->insert();
$lastSeq = $opObj->getLastInsertId();
11 years ago
}
return $lastSeq;
}
/**
* @returns "" when there are no Ops, or the seq of the last Op
*/
public function getHeadSeq($esId){
$query = \OCP\DB::prepare('
SELECT `seq`
FROM ' . $this->tableName . '
WHERE `es_id`=?
ORDER BY `seq` DESC
', 1);
11 years ago
$result = $query->execute(array(
$esId
))
->fetchOne()
;
11 years ago
return !$result ? "" : $result;
}
public function getOpsAfterJson($esId, $seq){
$ops = $this->getOpsAfter($esId, $seq);
11 years ago
if (!is_array($ops)){
$ops = array();
}
11 years ago
$ops = array_map(
function($x){
11 years ago
$decoded = json_decode($x['opspec'], true);
$decoded['memberid'] = strval($decoded['memberid']);
return $decoded;
},
11 years ago
$ops
11 years ago
);
11 years ago
return $ops;
11 years ago
}
public function getOpsAfter($esId, $seq){
11 years ago
if ($seq == ""){
$seq = -1;
}
$query = \OCP\DB::prepare('
SELECT `opspec`
FROM ' . self::DB_TABLE . '
WHERE `es_id`=?
AND `seq`>?
ORDER BY `seq` ASC
');
$result = $query->execute(array($esId, $seq));
return $result->fetchAll();
11 years ago
}
public function removeCursor($esId, $memberId){
$op = new Db_Op(array(
$esId,
0,
'{"optype":"RemoveCursor","memberid":"'. $memberId .'","reason":"server-idle","timestamp":'. time() .'}'
));
$op->insert();
}
11 years ago
}