BetaAnalyticsDataClient not found

Created on 14 January 2025, 3 months ago

Problem/Motivation

The BetaAnalyticsDataClient file has moved in google/analytics-data v0.22.0 (released "2025-01-11 02:14 UTC" according to packagist.org). This breaks the API module.

<!--break-->

Steps to reproduce

After updating your site using Composer, a 'google_analytics_reports_api' error will be reported in dblog after attempting to retrieve GA data:
There was an authentication error. Message: Class "Google\Analytics\Data\V1beta\BetaAnalyticsDataClient" not found.

Note that after updating the path in Drupal\google_analytics_reports_api\GoogleAnalyticsReportsApiFeed I then got the following:
TypeError: Google\Analytics\Data\V1beta\Client\BetaAnalyticsDataClient::runReport(): Argument #1 ($request) must be of type Google\Analytics\Data\V1beta\RunReportRequest, array given, called in /var/www/html/docroot/modules/contrib/google_analytics_reports/modules/google_analytics_reports_api/src/GoogleAnalyticsReportsApiFeed.php on line 301 in Google\Analytics\Data\V1beta\Client\BetaAnalyticsDataClient->runReport() (line 780 of /var/www/html/vendor/google/analytics-data/src/V1beta/Client/BetaAnalyticsDataClient.php).

I don't see any change between 0.21.x and 0.22.0 in the call or response, so this may be a PHP version issue. (My PHP version is 8.3.12; Drupal version 11.0.10)

Proposed resolution

Update the path to the BetaAnalyticsDataClient file. Replace the array argument when calling runReport() with a RunReportRequest.

Remaining tasks

  • ✅ File an issue
  • ➖ Addition/Change/Update/Fix
  • ➖ Testing to ensure no regression
  • ➖ Automated unit testing coverage
  • ➖ Automated functional testing coverage
  • ➖ UX/UI designer responsibilities
  • ➖ Readability
  • ➖ Accessibility
  • ➖ Performance
  • ➖ Security
  • ➖ Documentation
  • ➖ Code review by maintainers
  • ➖ Full testing and approval
  • ➖ Credit contributors
  • ➖ Review with the product owner
  • ➖ Release notes snippet
  • ❌ Release

API changes

  • BetaAnalyticsDataClient has moved in google/analytics-data, from "Google\Analytics\Data\V1beta\BetaAnalyticsDataClient" to "Google\Analytics\Data\V1beta\Client\BetaAnalyticsDataClient"

Data model changes

  • N/A

Release notes snippet

  • N/A
🐛 Bug report
Status

Active

Version

4.0

Component

API module

Created by

🇺🇸United States wsantell

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @wsantell
  • 🇨🇦Canada mahde Vancouver

    @wsantell - I am facing the same issue, did you fix this error?
    TypeError: Google\Analytics\Data\V1beta\Client\BetaAnalyticsDataClient::runReport(): Argument #1 ($request) must be of type Google\Analytics\Data\V1beta\RunReportRequest, array given

  • 🇨🇦Canada mahde Vancouver

    In GoogleAnalyticsReportsApiFeed class the arguments needs to be pass as RunReportRequest and GetMetadataRequest objects as the following example:

      /**
       * Call a static drupal function.
       */
      public function __call($func, $params) {
        $icached = &drupal_static(__FUNCTION__);
        $tthis = $this;
    
        $bind = [
          'getMetadata' => static function () use ($tthis) {
            // Create the GetMetadataRequest object
            $request = new GetMetadataRequest();
            
            $property = $tthis->property;
            $request->setName("properties/{$property}/metadata");
        
            // Call the getMetadata method with the GetMetadataRequest object
            return $tthis->client->getMetadata($request);
          },
        ];
    
        $params = \is_array($params) ? $params : [];
        $params[0] = \is_array($params[0] ?? FALSE) ? $params[0] : [];
        $params[0] += ['property' => 'properties/' . $this->property];
    
        // Check if cache is available.
        $cache_options = [
          'cid' => NULL,
          'bin' => 'default',
          'expire' => self::google_analytics_reports_api_cache_time(),
          'refresh' => FALSE,
        ];
    
        if (empty($cache_options['cid'])) {
          $cache_options['cid'] =
            'google_analytics_reports_data:' .
            md5(serialize(array_merge($params, [$func])));
        }
    
        // Check for internal cached.
        if ($icached[$cache_options['bin']][$cache_options['cid']] ?? FALSE) {
          return $icached[$cache_options['bin']][$cache_options['cid']];
        }
    
        // Check for DB cache.
        $cache = $this->cacheFactory
          ->get($cache_options['bin']);
        $cache = $cache ? $cache->get($cache_options['cid']) : FALSE;
    
        if (
          !$cache_options['refresh']
          && isset($cache)
          && !empty($cache->data)
          && $cache->expire > $this->time->getRequestTime()
        ) {
          $this->fromCache = TRUE;
    
          return $cache->data;
        }
    
        try {
          if (\in_array($func, array_keys($bind), TRUE)) {
            $ret = \call_user_func_array($bind[$func], $params);
          }
          else {
            // Create a RunReportRequest object
            $request = new RunReportRequest();
        
            // Set the property ID (replace with your actual property ID)
            $propertyId = 'properties/' . $this->property;
            $request->setProperty($propertyId);
        
            // Create a DateRange object and set the dates
            $dateRange = new DateRange();
            $dateRange->setStartDate('2023-01-01');
            $dateRange->setEndDate('2023-12-31');
            $request->setDateRanges([$dateRange]);
    
            $dimension1 = new Dimension();
            $dimension1->setName('city');
    
            $dimension2 = new Dimension();
            $dimension2->setName('deviceCategory');
    
            // Add the dimensions to the request
            $request->setDimensions([$dimension1, $dimension2]);
    
            // Create Metric objects
            $metric1 = new Metric();
            $metric1->setName('eventCount');
    
            $metric2 = new Metric();
            $metric2->setName('totalUsers');
    
            // Add the metrics to the request
            $request->setMetrics([$metric1, $metric2]);
    
            // Now pass the RunReportRequest object to the runReport() method
            $ret = \call_user_func_array([$this->client, $func], [$request]);
          }
        }
        catch (ApiException $e) {
          $this->messenger->addMessage($this->t('Error occurred! @e', ['@e' => $e]), 'error');
          return FALSE;
        }
        catch (ValidationException $e) {
          $this->messenger->addMessage($this->t('Validation error: @e', ['@e' => $e]), 'error');
          return FALSE;
        }
    
        if ($ret) {
          $icached[$cache_options['bin']][$cache_options['cid']] = $ret;
          $this->cacheFactory
            ->get($cache_options['bin'])
            ->set($cache_options['cid'], $ret, $cache_options['expire']);
        }
    
        return $ret;
      }
  • First commit to issue fork.
  • 🇬🇧United Kingdom progga

    Providing a merge request to resolve this.

  • 🇲🇦Morocco lakhal

    Hi

    I got the same problem when uploading the credintials json file in the Initial setup.

    "There was an authentication error. Message: Class "Google\Analytics\Data\V1beta\BetaAnalyticsDataClient" not found."

  • 🇲🇾Malaysia akmalfikri

    It seems that the namespace is not correct.

    Below is the correct one :

    Google\Analytics\Data\V1beta\Client\BetaAnalyticsDataClient;

  • Status changed to Needs review 20 days ago
  • 🇺🇸United States kurttrowbridge

    Will let someone who's setting up the module fresh reconfirm and mark RTBC, but for what it's worth, this fixed the issue for me after having previously set things up.

Production build 0.71.5 2024