resource = $resource; $this->logFactory = $logFactory; } /** * Save (insert new or update existing) log. * * @param int $viewerId * @param string $lastViewVersion * @return bool */ public function log(int $viewerId, string $lastViewVersion) : bool { /** @var \Magento\Framework\DB\Adapter\AdapterInterface $connection */ $connection = $this->resource->getConnection(ResourceConnection::DEFAULT_CONNECTION); $connection->insertOnDuplicate( $this->resource->getTableName(self::LOG_TABLE_NAME), [ 'viewer_id' => $viewerId, 'last_view_version' => $lastViewVersion ], [ 'last_view_version' ] ); return true; } /** * Get log by viewer Id. * * @param int $viewerId * @return Log */ public function get(int $viewerId) : Log { return $this->logFactory->create(['data' => $this->loadLogData($viewerId)]); } /** * Load release notification viewer log data by viewer id * * @param int $viewerId * @return array */ private function loadLogData(int $viewerId) : array { $connection = $this->resource->getConnection(); $select = $connection->select() ->from($this->resource->getTableName(self::LOG_TABLE_NAME)) ->where('viewer_id = ?', $viewerId); $data = $connection->fetchRow($select); if (!$data) { $data = []; } return $data; } }