29 lines
1.3 KiB
Go
29 lines
1.3 KiB
Go
package port
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"forge.cadoles.com/wpetit/clearcase/internal/core/model"
|
|
)
|
|
|
|
var (
|
|
ErrFileNotFound = errors.New("file not found")
|
|
ErrPullRequestNotFound = errors.New("pull request not found")
|
|
)
|
|
|
|
type Forge interface {
|
|
ListProjects(ctx context.Context) ([]*model.Project, error)
|
|
ListOpenedPullRequests(ctx context.Context, projectID string) ([]*model.PullRequest, error)
|
|
GetPullRequestDiff(ctx context.Context, projectID string, pullRequestID string) (string, error)
|
|
GetPullRequestTemplate(ctx context.Context, projectID string) (string, error)
|
|
GetPullRequests(ctx context.Context, projectID string, pullRequestIDs ...string) ([]*model.PullRequest, error)
|
|
UpdatePullRequest(ctx context.Context, projectID string, pullRequestID string, title string, body string) (string, error)
|
|
CreateIssue(ctx context.Context, projectID string, title string, body string) (string, error)
|
|
GetIssues(ctx context.Context, projectID string, issueIDs ...string) ([]*model.Issue, error)
|
|
GetIssueTemplate(ctx context.Context, projectID string) (string, error)
|
|
GetProjectLanguages(ctx context.Context, projectID string) ([]string, error)
|
|
GetProject(ctx context.Context, projectID string) (*model.Project, error)
|
|
GetFile(ctx context.Context, projectID string, path string) ([]byte, error)
|
|
}
|