Documentation ¶
Index ¶
- func ToAPIIssue(issue *models.Issue) *api.Issue
- func ToAPIIssueList(il models.IssueList) []*api.Issue
- func ToAPIMilestone(m *models.Milestone) *api.Milestone
- func ToAPIPullRequest(pr *models.PullRequest, doer *user_model.User) *api.PullRequest
- func ToAnnotatedTag(repo *repo_model.Repository, t *git.Tag, c *git.Commit) *api.AnnotatedTag
- func ToAnnotatedTagObject(repo *repo_model.Repository, commit *git.Commit) *api.AnnotatedTagObject
- func ToBranch(repo *repo_model.Repository, b *git.Branch, c *git.Commit, ...) (*api.Branch, error)
- func ToBranchProtection(bp *models.ProtectedBranch) *api.BranchProtection
- func ToCombinedStatus(statuses []*models.CommitStatus, repo *api.Repository) *api.CombinedStatus
- func ToComment(c *models.Comment) *api.Comment
- func ToCommit(repo *repo_model.Repository, commit *git.Commit, ...) (*api.Commit, error)
- func ToCommitMeta(repo *repo_model.Repository, tag *git.Tag) *api.CommitMeta
- func ToCommitStatus(status *models.CommitStatus) *api.CommitStatus
- func ToCommitUser(sig *git.Signature) *api.CommitUser
- func ToCorrectPageSize(size int) int
- func ToDeployKey(apiLink string, key *asymkey_model.DeployKey) *api.DeployKey
- func ToEmail(email *user_model.EmailAddress) *api.Email
- func ToGPGKey(key *asymkey_model.GPGKey) *api.GPGKey
- func ToGPGKeyEmail(email *user_model.EmailAddress) *api.GPGKeyEmail
- func ToGitHook(h *git.Hook) *api.GitHook
- func ToGitServiceType(value string) structs.GitServiceType
- func ToHook(repoLink string, w *webhook.Webhook) *api.Hook
- func ToLFSLock(l *models.LFSLock) *api.LFSLock
- func ToLabel(label *models.Label, repo *repo_model.Repository, org *user_model.User) *api.Label
- func ToLabelList(labels []*models.Label, repo *repo_model.Repository, org *user_model.User) []*api.Label
- func ToNotificationThread(n *models.Notification) *api.NotificationThread
- func ToNotifications(nl models.NotificationList) []*api.NotificationThread
- func ToOAuth2Application(app *auth.OAuth2Application) *api.OAuth2Application
- func ToOrganization(org *models.Organization) *api.Organization
- func ToPayloadCommit(repo *repo_model.Repository, c *git.Commit) *api.PayloadCommit
- func ToPublicKey(apiLink string, key *asymkey_model.PublicKey) *api.PublicKey
- func ToPullReview(r *models.Review, doer *user_model.User) (*api.PullReview, error)
- func ToPullReviewCommentList(review *models.Review, doer *user_model.User) ([]*api.PullReviewComment, error)
- func ToPullReviewList(rl []*models.Review, doer *user_model.User) ([]*api.PullReview, error)
- func ToRelease(r *models.Release) *api.Release
- func ToReleaseAttachment(a *repo_model.Attachment) *api.Attachment
- func ToRepo(repo *repo_model.Repository, mode perm.AccessMode) *api.Repository
- func ToRepoTransfer(t *models.RepoTransfer) *api.RepoTransfer
- func ToStopWatches(sws []*models.Stopwatch) (api.StopWatches, error)
- func ToTag(repo *repo_model.Repository, t *git.Tag) *api.Tag
- func ToTeam(team *models.Team) *api.Team
- func ToTimelineComment(c *models.Comment, doer *user_model.User) *api.TimelineComment
- func ToTopicResponse(topic *repo_model.Topic) *api.TopicResponse
- func ToTrackedTime(t *models.TrackedTime) (apiT *api.TrackedTime)
- func ToTrackedTimeList(tl models.TrackedTimeList) api.TrackedTimeList
- func ToUser(user, doer *user_model.User) *api.User
- func ToUserWithAccessMode(user *user_model.User, accessMode perm.AccessMode) *api.User
- func ToUsers(doer *user_model.User, users []*user_model.User) []*api.User
- func ToVerification(c *git.Commit) *api.PayloadCommitVerification
- func ToWikiCommit(commit *git.Commit) *api.WikiCommit
- func ToWikiCommitList(commits []*git.Commit, total int64) *api.WikiCommitList
- func ToWikiPageMetaData(title string, lastCommit *git.Commit, repo *repo_model.Repository) *api.WikiPageMetaData
- func User2UserSettings(user *user_model.User) api.UserSettings
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ToAPIIssue ¶ added in v1.12.0
ToAPIIssue converts an Issue to API format it assumes some fields assigned with values: Required - Poster, Labels, Optional - Milestone, Assignee, PullRequest
func ToAPIIssueList ¶ added in v1.12.0
ToAPIIssueList converts an IssueList to API format
func ToAPIMilestone ¶ added in v1.12.0
ToAPIMilestone converts Milestone into API Format
func ToAPIPullRequest ¶ added in v1.12.0
func ToAPIPullRequest(pr *models.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(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 ToBranch ¶
func ToBranch(repo *repo_model.Repository, b *git.Branch, c *git.Commit, bp *models.ProtectedBranch, user *user_model.User, isRepoAdmin bool) (*api.Branch, error)
ToBranch convert a git.Commit and git.Branch to an api.Branch
func ToBranchProtection ¶ added in v1.12.0
func ToBranchProtection(bp *models.ProtectedBranch) *api.BranchProtection
ToBranchProtection convert a ProtectedBranch to api.BranchProtection
func ToCombinedStatus ¶ added in v1.14.0
func ToCombinedStatus(statuses []*models.CommitStatus, repo *api.Repository) *api.CombinedStatus
ToCombinedStatus converts List of CommitStatus to a CombinedStatus
func ToCommit ¶
func ToCommit(repo *repo_model.Repository, commit *git.Commit, userCache map[string]*user_model.User) (*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 ¶ added in v1.14.0
func ToCommitStatus(status *models.CommitStatus) *api.CommitStatus
ToCommitStatus converts models.CommitStatus to api.CommitStatus
func ToCommitUser ¶
func ToCommitUser(sig *git.Signature) *api.CommitUser
ToCommitUser convert a git.Signature to an api.CommitUser
func ToCorrectPageSize ¶
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 ToGitServiceType ¶ added in v1.13.0
func ToGitServiceType(value string) structs.GitServiceType
ToGitServiceType return GitServiceType based on string
func ToLabel ¶ added in v1.12.0
func ToLabel(label *models.Label, repo *repo_model.Repository, org *user_model.User) *api.Label
ToLabel converts Label to API format
func ToLabelList ¶ added in v1.12.0
func ToLabelList(labels []*models.Label, repo *repo_model.Repository, org *user_model.User) []*api.Label
ToLabelList converts list of Label to API format
func ToNotificationThread ¶ added in v1.14.0
func ToNotificationThread(n *models.Notification) *api.NotificationThread
ToNotificationThread convert a Notification to api.NotificationThread
func ToNotifications ¶ added in v1.14.0
func ToNotifications(nl models.NotificationList) []*api.NotificationThread
ToNotifications convert list of Notification to api.NotificationThread list
func ToOAuth2Application ¶ added in v1.12.0
func ToOAuth2Application(app *auth.OAuth2Application) *api.OAuth2Application
ToOAuth2Application convert from auth.OAuth2Application to api.OAuth2Application
func ToOrganization ¶
func ToOrganization(org *models.Organization) *api.Organization
ToOrganization convert user_model.User to api.Organization
func ToPayloadCommit ¶ added in v1.13.0
func ToPayloadCommit(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 ¶ added in v1.12.0
func ToPullReview(r *models.Review, doer *user_model.User) (*api.PullReview, error)
ToPullReview convert a review to api format
func ToPullReviewCommentList ¶ added in v1.12.0
func ToPullReviewCommentList(review *models.Review, doer *user_model.User) ([]*api.PullReviewComment, error)
ToPullReviewCommentList convert the CodeComments of an review to it's api format
func ToPullReviewList ¶ added in v1.12.0
func ToPullReviewList(rl []*models.Review, doer *user_model.User) ([]*api.PullReview, error)
ToPullReviewList convert a list of review to it's api format
func ToReleaseAttachment ¶ added in v1.14.0
func ToReleaseAttachment(a *repo_model.Attachment) *api.Attachment
ToReleaseAttachment converts models.Attachment to api.Attachment
func ToRepo ¶ added in v1.14.0
func ToRepo(repo *repo_model.Repository, mode perm.AccessMode) *api.Repository
ToRepo converts a Repository to api.Repository
func ToRepoTransfer ¶ added in v1.16.0
func ToRepoTransfer(t *models.RepoTransfer) *api.RepoTransfer
ToRepoTransfer convert a models.RepoTransfer to a structs.RepeTransfer
func ToStopWatches ¶ added in v1.13.0
func ToStopWatches(sws []*models.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 ToTimelineComment ¶ added in v1.16.0
func ToTimelineComment(c *models.Comment, doer *user_model.User) *api.TimelineComment
ToTimelineComment converts a models.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 ¶ added in v1.12.0
func ToTrackedTime(t *models.TrackedTime) (apiT *api.TrackedTime)
ToTrackedTime converts TrackedTime to API format
func ToTrackedTimeList ¶ added in v1.12.0
func ToTrackedTimeList(tl models.TrackedTimeList) api.TrackedTimeList
ToTrackedTimeList converts TrackedTimeList to API format
func ToUser ¶
func ToUser(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 ToUserWithAccessMode ¶ added in v1.15.0
func ToUserWithAccessMode(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 ¶ added in v1.15.0
func ToUsers(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(c *git.Commit) *api.PayloadCommitVerification
ToVerification convert a git.Commit.Signature to an api.PayloadCommitVerification
func ToWikiCommit ¶ added in v1.16.0
func ToWikiCommit(commit *git.Commit) *api.WikiCommit
ToWikiCommit convert a git commit into a WikiCommit
func ToWikiCommitList ¶ added in v1.16.0
func ToWikiCommitList(commits []*git.Commit, total int64) *api.WikiCommitList
ToWikiCommitList convert a list of git commits into a WikiCommitList
func ToWikiPageMetaData ¶ added in v1.16.0
func ToWikiPageMetaData(title string, lastCommit *git.Commit, repo *repo_model.Repository) *api.WikiPageMetaData
ToWikiPageMetaData converts meta information to a WikiPageMetaData
func User2UserSettings ¶ added in v1.15.0
func User2UserSettings(user *user_model.User) api.UserSettings
User2UserSettings return UserSettings based on a user
Types ¶
This section is empty.