convert

package
v1.19.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 3, 2023 License: MIT Imports: 27 Imported by: 20

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ToAPIIssue

func ToAPIIssue(ctx context.Context, issue *issues_model.Issue) *api.Issue

ToAPIIssue converts an Issue to API format it assumes some fields assigned with values: Required - Poster, Labels, Optional - Milestone, Assignee, PullRequest

func ToAPIIssueList

func ToAPIIssueList(ctx context.Context, il issues_model.IssueList) []*api.Issue

ToAPIIssueList converts an IssueList to API format

func ToAPIMilestone

func ToAPIMilestone(m *issues_model.Milestone) *api.Milestone

ToAPIMilestone converts Milestone into API Format

func ToAPIPullRequest

func ToAPIPullRequest(ctx context.Context, pr *issues_model.PullRequest, doer *user_model.User) *api.PullRequest

ToAPIPullRequest assumes following fields have been assigned with valid values: Required - Issue Optional - Merger

func ToAnnotatedTag

func ToAnnotatedTag(ctx context.Context, repo *repo_model.Repository, t *git.Tag, c *git.Commit) *api.AnnotatedTag

ToAnnotatedTag convert git.Tag to api.AnnotatedTag

func ToAnnotatedTagObject

func ToAnnotatedTagObject(repo *repo_model.Repository, commit *git.Commit) *api.AnnotatedTagObject

ToAnnotatedTagObject convert a git.Commit to an api.AnnotatedTagObject

func ToAttachment

func ToAttachment(a *repo_model.Attachment) *api.Attachment

ToAttachment converts models.Attachment to api.Attachment

func ToAttachments

func ToAttachments(attachments []*repo_model.Attachment) []*api.Attachment

func ToBranch

func ToBranch(ctx context.Context, repo *repo_model.Repository, b *git.Branch, c *git.Commit, bp *git_model.ProtectedBranch, user *user_model.User, isRepoAdmin bool) (*api.Branch, error)

ToBranch convert a git.Commit and git.Branch to an api.Branch

func ToBranchProtection

func ToBranchProtection(bp *git_model.ProtectedBranch) *api.BranchProtection

ToBranchProtection convert a ProtectedBranch to api.BranchProtection

func ToChangedFile

func ToChangedFile(f *gitdiff.DiffFile, repo *repo_model.Repository, commit string) *api.ChangedFile

ToChangedFile convert a gitdiff.DiffFile to api.ChangedFile

func ToCombinedStatus

func ToCombinedStatus(ctx context.Context, statuses []*git_model.CommitStatus, repo *api.Repository) *api.CombinedStatus

ToCombinedStatus converts List of CommitStatus to a CombinedStatus

func ToComment

func ToComment(ctx context.Context, c *issues_model.Comment) *api.Comment

ToComment converts a issues_model.Comment to the api.Comment format

func ToCommit

func ToCommit(ctx context.Context, repo *repo_model.Repository, gitRepo *git.Repository, commit *git.Commit, userCache map[string]*user_model.User, stat bool) (*api.Commit, error)

ToCommit convert a git.Commit to api.Commit

func ToCommitMeta

func ToCommitMeta(repo *repo_model.Repository, tag *git.Tag) *api.CommitMeta

ToCommitMeta convert a git.Tag to an api.CommitMeta

func ToCommitStatus

func ToCommitStatus(ctx context.Context, status *git_model.CommitStatus) *api.CommitStatus

ToCommitStatus converts git_model.CommitStatus to api.CommitStatus

func ToCommitUser

func ToCommitUser(sig *git.Signature) *api.CommitUser

ToCommitUser convert a git.Signature to an api.CommitUser

func ToCorrectPageSize

func ToCorrectPageSize(size int) int

ToCorrectPageSize makes sure page size is in allowed range.

func ToDeployKey

func ToDeployKey(apiLink string, key *asymkey_model.DeployKey) *api.DeployKey

ToDeployKey convert asymkey_model.DeployKey to api.DeployKey

func ToEmail

func ToEmail(email *user_model.EmailAddress) *api.Email

ToEmail convert models.EmailAddress to api.Email

func ToGPGKey

func ToGPGKey(key *asymkey_model.GPGKey) *api.GPGKey

ToGPGKey converts models.GPGKey to api.GPGKey

func ToGPGKeyEmail

func ToGPGKeyEmail(email *user_model.EmailAddress) *api.GPGKeyEmail

ToGPGKeyEmail convert models.EmailAddress to api.GPGKeyEmail

func ToGitHook

func ToGitHook(h *git.Hook) *api.GitHook

ToGitHook convert git.Hook to api.GitHook

func ToGitServiceType

func ToGitServiceType(value string) structs.GitServiceType

ToGitServiceType return GitServiceType based on string

func ToLFSLock

func ToLFSLock(ctx context.Context, l *git_model.LFSLock) *api.LFSLock

ToLFSLock convert a LFSLock to api.LFSLock

func ToLabel

func ToLabel(label *issues_model.Label, repo *repo_model.Repository, org *user_model.User) *api.Label

ToLabel converts Label to API format

func ToLabelList

func ToLabelList(labels []*issues_model.Label, repo *repo_model.Repository, org *user_model.User) []*api.Label

ToLabelList converts list of Label to API format

func ToNotificationThread

func ToNotificationThread(n *activities_model.Notification) *api.NotificationThread

ToNotificationThread convert a Notification to api.NotificationThread

func ToNotifications

ToNotifications convert list of Notification to api.NotificationThread list

func ToOAuth2Application

func ToOAuth2Application(app *auth.OAuth2Application) *api.OAuth2Application

ToOAuth2Application convert from auth.OAuth2Application to api.OAuth2Application

func ToOrganization

func ToOrganization(ctx context.Context, org *organization.Organization) *api.Organization

ToOrganization convert user_model.User to api.Organization

func ToPackage

func ToPackage(ctx context.Context, pd *packages.PackageDescriptor, doer *user_model.User) (*api.Package, error)

ToPackage convert a packages.PackageDescriptor to api.Package

func ToPackageFile

func ToPackageFile(pfd *packages.PackageFileDescriptor) *api.PackageFile

ToPackageFile converts packages.PackageFileDescriptor to api.PackageFile

func ToPayloadCommit

func ToPayloadCommit(ctx context.Context, repo *repo_model.Repository, c *git.Commit) *api.PayloadCommit

ToPayloadCommit convert a git.Commit to api.PayloadCommit

func ToPublicKey

func ToPublicKey(apiLink string, key *asymkey_model.PublicKey) *api.PublicKey

ToPublicKey convert asymkey_model.PublicKey to api.PublicKey

func ToPullReview

func ToPullReview(ctx context.Context, r *issues_model.Review, doer *user_model.User) (*api.PullReview, error)

ToPullReview convert a review to api format

func ToPullReviewCommentList

func ToPullReviewCommentList(ctx context.Context, review *issues_model.Review, doer *user_model.User) ([]*api.PullReviewComment, error)

ToPullReviewCommentList convert the CodeComments of an review to it's api format

func ToPullReviewList

func ToPullReviewList(ctx context.Context, rl []*issues_model.Review, doer *user_model.User) ([]*api.PullReview, error)

ToPullReviewList convert a list of review to it's api format

func ToPushMirror

func ToPushMirror(pm *repo_model.PushMirror) (*api.PushMirror, error)

ToPushMirror convert from repo_model.PushMirror and remoteAddress to api.TopicResponse

func ToRelease

func ToRelease(ctx context.Context, r *repo_model.Release) *api.Release

ToRelease convert a repo_model.Release to api.Release

func ToRepo

ToRepo converts a Repository to api.Repository

func ToRepoTransfer

func ToRepoTransfer(ctx context.Context, t *models.RepoTransfer) *api.RepoTransfer

ToRepoTransfer convert a models.RepoTransfer to a structs.RepeTransfer

func ToStopWatches

func ToStopWatches(sws []*issues_model.Stopwatch) (api.StopWatches, error)

ToStopWatches convert Stopwatch list to api.StopWatches

func ToTag

func ToTag(repo *repo_model.Repository, t *git.Tag) *api.Tag

ToTag convert a git.Tag to an api.Tag

func ToTeam

func ToTeam(ctx context.Context, team *organization.Team, loadOrg ...bool) (*api.Team, error)

ToTeam convert models.Team to api.Team

func ToTeams

func ToTeams(ctx context.Context, teams []*organization.Team, loadOrgs bool) ([]*api.Team, error)

ToTeams convert models.Team list to api.Team list

func ToTimelineComment

func ToTimelineComment(ctx context.Context, c *issues_model.Comment, doer *user_model.User) *api.TimelineComment

ToTimelineComment converts a issues_model.Comment to the api.TimelineComment format

func ToTopicResponse

func ToTopicResponse(topic *repo_model.Topic) *api.TopicResponse

ToTopicResponse convert from models.Topic to api.TopicResponse

func ToTrackedTime

func ToTrackedTime(ctx context.Context, t *issues_model.TrackedTime) (apiT *api.TrackedTime)

ToTrackedTime converts TrackedTime to API format

func ToTrackedTimeList

ToTrackedTimeList converts TrackedTimeList to API format

func ToUser

func ToUser(ctx context.Context, user, doer *user_model.User) *api.User

ToUser convert user_model.User to api.User if doer is set, private information is added if the doer has the permission to see it

func ToUserAndPermission

func ToUserAndPermission(ctx context.Context, user, doer *user_model.User, accessMode perm.AccessMode) api.RepoCollaboratorPermission

ToUserAndPermission return User and its collaboration permission for a repository

func ToUserWithAccessMode

func ToUserWithAccessMode(ctx context.Context, user *user_model.User, accessMode perm.AccessMode) *api.User

ToUserWithAccessMode convert user_model.User to api.User AccessMode is not none show add some more information

func ToUsers

func ToUsers(ctx context.Context, doer *user_model.User, users []*user_model.User) []*api.User

ToUsers convert list of user_model.User to list of api.User

func ToVerification

func ToVerification(ctx context.Context, c *git.Commit) *api.PayloadCommitVerification

ToVerification convert a git.Commit.Signature to an api.PayloadCommitVerification

func ToWikiCommit

func ToWikiCommit(commit *git.Commit) *api.WikiCommit

ToWikiCommit convert a git commit into a WikiCommit

func ToWikiCommitList

func ToWikiCommitList(commits []*git.Commit, total int64) *api.WikiCommitList

ToWikiCommitList convert a list of git commits into a WikiCommitList

func ToWikiPageMetaData

func ToWikiPageMetaData(title string, lastCommit *git.Commit, repo *repo_model.Repository) *api.WikiPageMetaData

ToWikiPageMetaData converts meta information to a WikiPageMetaData

func User2UserSettings

func User2UserSettings(user *user_model.User) api.UserSettings

User2UserSettings return UserSettings based on a user

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL