blob: afb36fff440f81d375be400ffe3d078bb311e2ae [file] [log] [blame]
// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:async';
import 'package:analysis_server/protocol/protocol_generated.dart';
import 'package:analysis_server/src/handler/legacy/legacy_handler.dart';
/// The handler for the `analytics.sendEvent` request.
class AnalyticsSendEventHandler extends LegacyHandler {
/// Initialize a newly created handler to be able to service requests for the
/// [server].
AnalyticsSendEventHandler(
super.server, super.request, super.cancellationToken);
String get _clientId => server.options.clientId ?? 'client';
@override
Future<void> handle() async {
final analytics = server.options.analytics;
if (analytics == null) {
sendResult(AnalyticsSendEventResult());
return;
}
var params = AnalyticsSendEventParams.fromRequest(request);
analytics.sendEvent(_clientId, params.action);
sendResult(AnalyticsSendEventResult());
}
}