blob: 421591bf43d6ede0ce333f4e0c6e46ebd124cc4f [file] [log] [blame]
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:auto_submit/service/log.dart';
import 'package:github/github.dart';
import '../service/config.dart';
/// Function signature for a [ApproverService] provider.
typedef ApproverServiceProvider = ApproverService Function(Config config);
/// Provides github PR approval services.
class ApproverService {
const ApproverService(this.config);
final Config config;
/// Creates and returns a [ApproverService] using [config].
static ApproverService defaultProvider(Config config) {
return ApproverService(config);
}
Future<void> approve(PullRequest pullRequest) async {
final String? author = pullRequest.user!.login;
if (!config.rollerAccounts.contains(author)) {
log.info('Auto-review ignored for $author');
return;
}
final RepositorySlug slug = pullRequest.base!.repo!.slug();
final GitHub botClient = await config.createFlutterGitHubBotClient(slug);
Stream<PullRequestReview> reviews = botClient.pullRequests.listReviews(slug, pullRequest.number!);
await for (PullRequestReview review in reviews) {
if (review.user.login == 'fluttergithubbot' && review.state == 'APPROVED') {
// Already approved.
return;
}
}
final CreatePullRequestReview review =
CreatePullRequestReview(slug.owner, slug.name, pullRequest.number!, 'APPROVE');
botClient.pullRequests.createReview(slug, review);
log.info('Review for $author complete');
}
}