/var/www/flurhymez/vendor/spatie/laravel-analytics/src
NameSizeModeActions
Exceptions/-0755rm
Analytics.php55750644editdlrm
AnalyticsClient.php28850644editdlrm
AnalyticsClientFactory.php16900644editdlrm
AnalyticsFacade.php2590644editdlrm
AnalyticsServiceProvider.php17250644editdlrm
Period.php14410644editdlrm
Edit: /var/www/flurhymez/vendor/spatie/laravel-analytics/src/AnalyticsClient.php (2885B)
service = $service; $this->cache = $cache; } /** * Set the cache time. * * @param int $cacheLifeTimeInMinutes * * @return self */ public function setCacheLifeTimeInMinutes(int $cacheLifeTimeInMinutes) { $this->cacheLifeTimeInMinutes = $cacheLifeTimeInMinutes * 60; return $this; } /** * Query the Google Analytics Service with given parameters. * * @param string $viewId * @param \DateTimeInterface $startDate * @param \DateTimeInterface $endDate * @param string $metrics * @param array $others * * @return array|null */ public function performQuery(string $viewId, DateTimeInterface $startDate, DateTimeInterface $endDate, string $metrics, array $others = []) { $cacheName = $this->determineCacheName(func_get_args()); if ($this->cacheLifeTimeInMinutes == 0) { $this->cache->forget($cacheName); } return $this->cache->remember($cacheName, $this->cacheLifeTimeInMinutes, function () use ($viewId, $startDate, $endDate, $metrics, $others) { $result = $this->service->data_ga->get( "ga:{$viewId}", $startDate->format('Y-m-d'), $endDate->format('Y-m-d'), $metrics, $others ); while ($nextLink = $result->getNextLink()) { if (isset($others['max-results']) && count($result->rows) >= $others['max-results']) { break; } $options = []; parse_str(substr($nextLink, strpos($nextLink, '?') + 1), $options); $response = $this->service->data_ga->call('get', [$options], 'Google_Service_Analytics_GaData'); if ($response->rows) { $result->rows = array_merge($result->rows, $response->rows); } $result->nextLink = $response->nextLink; } return $result; }); } public function getAnalyticsService(): Google_Service_Analytics { return $this->service; } /* * Determine the cache name for the set of query properties given. */ protected function determineCacheName(array $properties): string { return 'spatie.laravel-analytics.'.md5(serialize($properties)); } }