squawk-github 2.47.0

Postgres SQL linter Github APIs used in Squawk
Documentation
use log::info;

use crate::app;
use crate::app::SQUAWK_USER_AGENT;
use crate::{Comment, DEFAULT_GITHUB_API_URL, GitHubApi, GithubError};

pub struct GitHub {
    github_api_url: String,
    github_token: String,
}
impl GitHub {
    #[must_use]
    pub fn new(github_token: &str) -> Self {
        Self::new_with_url(DEFAULT_GITHUB_API_URL, github_token)
    }

    #[must_use]
    pub fn new_with_url(github_api_url: &str, github_token: &str) -> Self {
        info!("github user agent {SQUAWK_USER_AGENT}");
        GitHub {
            github_api_url: github_api_url.to_string(),
            github_token: github_token.to_string(),
        }
    }
}
impl GitHubApi for GitHub {
    fn app_slug(&self) -> String {
        "github-actions[bot]".to_string()
    }
    fn create_issue_comment(
        &self,
        owner: &str,
        repo: &str,
        issue_id: i64,
        body: &str,
    ) -> Result<(), GithubError> {
        app::create_comment(
            &self.github_api_url,
            app::CommentArgs {
                owner: owner.to_string(),
                repo: repo.to_string(),
                issue: issue_id,
                body: body.to_string(),
            },
            &self.github_token,
        )
    }
    fn list_issue_comments(
        &self,
        owner: &str,
        repo: &str,
        issue_id: i64,
    ) -> Result<Vec<Comment>, GithubError> {
        app::list_comments(
            &self.github_api_url,
            &app::PullRequest {
                issue: issue_id,
                owner: owner.to_string(),
                repo: repo.to_string(),
            },
            &self.github_token,
        )
    }
    fn update_issue_comment(
        &self,
        owner: &str,
        repo: &str,
        comment_id: i64,
        body: &str,
    ) -> Result<(), GithubError> {
        app::update_comment(
            &self.github_api_url,
            owner,
            repo,
            comment_id,
            body.to_string(),
            &self.github_token,
        )
    }
}