. * */ namespace Friendica\Model\Post; use Friendica\Database\DBA; use \BadMethodCallException; use Friendica\Database\Database; use Friendica\Database\DBStructure; class User { /** * Insert a new post user entry * * @param integer $uri_id * @param integer $uid * @param array $fields * @return int ID of inserted post-user * @throws \Exception */ public static function insert(int $uri_id, int $uid, array $data = []) { if (empty($uri_id)) { throw new BadMethodCallException('Empty URI_id'); } if (DBA::exists('post-user', ['uri-id' => $uri_id, 'uid' => $uid])) { return false; } $fields = DBStructure::getFieldsForTable('post-user', $data); // Additionally assign the key fields $fields['uri-id'] = $uri_id; $fields['uid'] = $uid; // Public posts are always seen if ($uid == 0) { $fields['unseen'] = false; } if (!DBA::insert('post-user', $fields, Database::INSERT_IGNORE)) { return 0; } return DBA::lastInsertId(); } /** * Update a post user entry * * @param integer $uri_id * @param integer $uid * @param array $data * @param bool $insert_if_missing * @return bool * @throws \Exception */ public static function update(int $uri_id, int $uid, array $data = [], bool $insert_if_missing = false) { if (empty($uri_id)) { throw new BadMethodCallException('Empty URI_id'); } $fields = DBStructure::getFieldsForTable('post-user', $data); // Remove the key fields unset($fields['uri-id']); unset($fields['uid']); if (empty($fields)) { return true; } return DBA::update('post-user', $fields, ['uri-id' => $uri_id, 'uid' => $uid], $insert_if_missing ? true : []); } /** * Delete a row from the post-user table * * @param array $conditions Field condition(s) * @param array $options * - cascade: If true we delete records in other tables that depend on the one we're deleting through * relations (default: true) * * @return boolean was the delete successful? * @throws \Exception */ public static function delete(array $conditions, array $options = []) { return DBA::delete('post-user', $conditions, $options); } }