blob: 49a14ffa4849b83c60bddf370c9442ef10903002 [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/model/auto_submit_query_result.dart';
import 'package:auto_submit/service/log.dart';
import 'package:github/github.dart' as gh;
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> autoApproval(gh.PullRequest pullRequest) async {
final String? author = pullRequest.user!.login;
if (!config.rollerAccounts.contains(author)) {
log.info('Auto-review ignored for $author');
} else {
await _approve(pullRequest, author);
}
}
/// Auto approves a pull request when the revert label is present.
Future<void> revertApproval(QueryResult queryResult, gh.PullRequest pullRequest) async {
final Set<String> approvedAuthorAssociations = <String>{'MEMBER', 'OWNER'};
final String? author = pullRequest.user!.login;
// Use the QueryResult for this field
final String? authorAssociation = queryResult.repository!.pullRequest!.authorAssociation;
log.info('Attempting to approve revert request by author $author, authorAssociation $authorAssociation.');
final List<String> labelNames =
(pullRequest.labels as List<gh.IssueLabel>).map<String>((gh.IssueLabel labelMap) => labelMap.name).toList();
log.info('Found labels $labelNames on this pullRequest.');
if (labelNames.contains(Config.kRevertLabel) &&
(config.rollerAccounts.contains(author) || approvedAuthorAssociations.contains(authorAssociation))) {
log.info(
'Revert label and author has been validated. Attempting to approve the pull request. ${pullRequest.repo} by $author');
await _approve(pullRequest, author);
} else {
log.info('Auto-review ignored for $author');
}
}
Future<void> _approve(gh.PullRequest pullRequest, String? author) async {
final gh.RepositorySlug slug = pullRequest.base!.repo!.slug();
final gh.GitHub botClient = await config.createFlutterGitHubBotClient(slug);
Stream<gh.PullRequestReview> reviews = botClient.pullRequests.listReviews(slug, pullRequest.number!);
await for (gh.PullRequestReview review in reviews) {
if (review.user.login == 'fluttergithubbot' && review.state == 'APPROVED') {
// Already approved.
return;
}
}
final gh.CreatePullRequestReview review =
gh.CreatePullRequestReview(slug.owner, slug.name, pullRequest.number!, 'APPROVE');
await botClient.pullRequests.createReview(slug, review);
log.info('Review for $author complete');
}
}