logger->info('Building calendar index (' . $offset . '/' . $stopAt . ')'); $startTime = $this->time->getTime(); while (($this->time->getTime() - $startTime) < 15) { $offset = $this->buildIndex($offset, $stopAt); if ($offset >= $stopAt) { break; } } if ($offset >= $stopAt) { $this->logger->info('Building calendar index done'); } else { $this->jobList->add(self::class, [ 'offset' => $offset, 'stopAt' => $stopAt ]); $this->logger->info('New building calendar index job scheduled with offset ' . $offset); } } /** * @param int $offset * @param int $stopAt * @return int */ private function buildIndex(int $offset, int $stopAt): int { $query = $this->db->getQueryBuilder(); $query->select(['id', 'calendarid', 'uri', 'calendardata']) ->from('calendarobjects') ->where($query->expr()->lte('id', $query->createNamedParameter($stopAt))) ->andWhere($query->expr()->gt('id', $query->createNamedParameter($offset))) ->orderBy('id', 'ASC') ->setMaxResults(500); $result = $query->executeQuery(); while ($row = $result->fetch(\PDO::FETCH_ASSOC)) { $offset = $row['id']; $calendarData = $row['calendardata']; if (is_resource($calendarData)) { $calendarData = stream_get_contents($calendarData); } $this->calDavBackend->updateProperties($row['calendarid'], $row['uri'], $calendarData); } return $offset; } }