2015-12-04 15:16:42 -07:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-12-17 00:28:47 -07:00
|
|
|
package convert
|
2015-12-04 15:16:42 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-06-08 08:31:11 -06:00
|
|
|
"time"
|
2015-12-04 15:16:42 -07:00
|
|
|
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/models"
|
2019-03-27 03:33:00 -06:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2018-02-20 05:50:42 -07:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-04-15 10:36:59 -06:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2019-05-11 04:21:34 -06:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2018-02-20 05:50:42 -07:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2019-03-27 03:33:00 -06:00
|
|
|
|
|
|
|
"github.com/Unknwon/com"
|
2015-12-04 15:16:42 -07:00
|
|
|
)
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// ToEmail convert models.EmailAddress to api.Email
|
2016-03-13 21:20:22 -06:00
|
|
|
func ToEmail(email *models.EmailAddress) *api.Email {
|
2015-12-15 20:57:18 -07:00
|
|
|
return &api.Email{
|
|
|
|
Email: email.Email,
|
|
|
|
Verified: email.IsActivated,
|
|
|
|
Primary: email.IsPrimary,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-08 08:31:11 -06:00
|
|
|
// ToBranch convert a git.Commit and git.Branch to an api.Branch
|
2019-04-19 06:17:27 -06:00
|
|
|
func ToBranch(repo *models.Repository, b *git.Branch, c *git.Commit) *api.Branch {
|
2016-01-28 12:49:05 -07:00
|
|
|
return &api.Branch{
|
2016-03-13 21:20:22 -06:00
|
|
|
Name: b.Name,
|
2018-02-20 05:50:42 -07:00
|
|
|
Commit: ToCommit(repo, c),
|
2016-03-13 21:20:22 -06:00
|
|
|
}
|
2016-01-28 12:49:05 -07:00
|
|
|
}
|
|
|
|
|
2019-06-08 08:31:11 -06:00
|
|
|
// ToTag convert a git.Tag to an api.Tag
|
2019-02-07 05:00:52 -07:00
|
|
|
func ToTag(repo *models.Repository, t *git.Tag) *api.Tag {
|
|
|
|
return &api.Tag{
|
2019-06-08 08:31:11 -06:00
|
|
|
Name: t.Name,
|
|
|
|
ID: t.ID.String(),
|
|
|
|
Commit: ToCommitMeta(repo, t),
|
|
|
|
ZipballURL: util.URLJoin(repo.HTMLURL(), "archive", t.Name+".zip"),
|
|
|
|
TarballURL: util.URLJoin(repo.HTMLURL(), "archive", t.Name+".tar.gz"),
|
2019-02-07 05:00:52 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-08 08:31:11 -06:00
|
|
|
// ToCommit convert a git.Commit to api.PayloadCommit
|
2018-02-20 05:50:42 -07:00
|
|
|
func ToCommit(repo *models.Repository, c *git.Commit) *api.PayloadCommit {
|
2016-08-09 23:01:57 -06:00
|
|
|
authorUsername := ""
|
2018-02-20 05:50:42 -07:00
|
|
|
if author, err := models.GetUserByEmail(c.Author.Email); err == nil {
|
2016-08-09 23:01:57 -06:00
|
|
|
authorUsername = author.Name
|
2018-02-20 05:50:42 -07:00
|
|
|
} else if !models.IsErrUserNotExist(err) {
|
2019-04-02 01:48:31 -06:00
|
|
|
log.Error("GetUserByEmail: %v", err)
|
2016-08-09 23:01:57 -06:00
|
|
|
}
|
2018-02-20 05:50:42 -07:00
|
|
|
|
2016-08-09 23:01:57 -06:00
|
|
|
committerUsername := ""
|
2018-02-20 05:50:42 -07:00
|
|
|
if committer, err := models.GetUserByEmail(c.Committer.Email); err == nil {
|
2016-08-09 23:01:57 -06:00
|
|
|
committerUsername = committer.Name
|
2018-02-20 05:50:42 -07:00
|
|
|
} else if !models.IsErrUserNotExist(err) {
|
2019-04-02 01:48:31 -06:00
|
|
|
log.Error("GetUserByEmail: %v", err)
|
2016-08-09 23:01:57 -06:00
|
|
|
}
|
2018-02-20 05:50:42 -07:00
|
|
|
|
2016-01-28 12:49:05 -07:00
|
|
|
return &api.PayloadCommit{
|
2016-03-13 21:20:22 -06:00
|
|
|
ID: c.ID.String(),
|
2016-01-28 12:49:05 -07:00
|
|
|
Message: c.Message(),
|
2019-06-08 08:31:11 -06:00
|
|
|
URL: util.URLJoin(repo.HTMLURL(), "commit", c.ID.String()),
|
2016-08-14 05:17:26 -06:00
|
|
|
Author: &api.PayloadUser{
|
2016-08-09 23:01:57 -06:00
|
|
|
Name: c.Author.Name,
|
|
|
|
Email: c.Author.Email,
|
|
|
|
UserName: authorUsername,
|
|
|
|
},
|
2016-08-14 05:17:26 -06:00
|
|
|
Committer: &api.PayloadUser{
|
2016-08-09 23:01:57 -06:00
|
|
|
Name: c.Committer.Name,
|
|
|
|
Email: c.Committer.Email,
|
|
|
|
UserName: committerUsername,
|
2016-01-28 12:49:05 -07:00
|
|
|
},
|
2019-06-08 08:31:11 -06:00
|
|
|
Timestamp: c.Author.When,
|
|
|
|
Verification: ToVerification(c),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToVerification convert a git.Commit.Signature to an api.PayloadCommitVerification
|
|
|
|
func ToVerification(c *git.Commit) *api.PayloadCommitVerification {
|
|
|
|
verif := models.ParseCommitWithSignature(c)
|
|
|
|
var signature, payload string
|
|
|
|
if c.Signature != nil {
|
|
|
|
signature = c.Signature.Signature
|
|
|
|
payload = c.Signature.Payload
|
|
|
|
}
|
|
|
|
return &api.PayloadCommitVerification{
|
|
|
|
Verified: verif.Verified,
|
|
|
|
Reason: verif.Reason,
|
|
|
|
Signature: signature,
|
|
|
|
Payload: payload,
|
2016-01-28 12:49:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// ToPublicKey convert models.PublicKey to api.PublicKey
|
2016-03-13 21:20:22 -06:00
|
|
|
func ToPublicKey(apiLink string, key *models.PublicKey) *api.PublicKey {
|
2015-12-04 15:16:42 -07:00
|
|
|
return &api.PublicKey{
|
2017-11-28 08:21:39 -07:00
|
|
|
ID: key.ID,
|
|
|
|
Key: key.Content,
|
|
|
|
URL: apiLink + com.ToStr(key.ID),
|
|
|
|
Title: key.Name,
|
|
|
|
Fingerprint: key.Fingerprint,
|
2017-12-10 21:37:04 -07:00
|
|
|
Created: key.CreatedUnix.AsTime(),
|
2015-12-04 15:16:42 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-15 19:27:35 -06:00
|
|
|
// ToGPGKey converts models.GPGKey to api.GPGKey
|
|
|
|
func ToGPGKey(key *models.GPGKey) *api.GPGKey {
|
|
|
|
subkeys := make([]*api.GPGKey, len(key.SubsKey))
|
|
|
|
for id, k := range key.SubsKey {
|
|
|
|
subkeys[id] = &api.GPGKey{
|
|
|
|
ID: k.ID,
|
|
|
|
PrimaryKeyID: k.PrimaryKeyID,
|
|
|
|
KeyID: k.KeyID,
|
|
|
|
PublicKey: k.Content,
|
2017-12-10 21:37:04 -07:00
|
|
|
Created: k.CreatedUnix.AsTime(),
|
|
|
|
Expires: k.ExpiredUnix.AsTime(),
|
2017-03-15 19:27:35 -06:00
|
|
|
CanSign: k.CanSign,
|
|
|
|
CanEncryptComms: k.CanEncryptComms,
|
|
|
|
CanEncryptStorage: k.CanEncryptStorage,
|
|
|
|
CanCertify: k.CanSign,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
emails := make([]*api.GPGKeyEmail, len(key.Emails))
|
|
|
|
for i, e := range key.Emails {
|
|
|
|
emails[i] = ToGPGKeyEmail(e)
|
|
|
|
}
|
|
|
|
return &api.GPGKey{
|
|
|
|
ID: key.ID,
|
|
|
|
PrimaryKeyID: key.PrimaryKeyID,
|
|
|
|
KeyID: key.KeyID,
|
|
|
|
PublicKey: key.Content,
|
2017-12-10 21:37:04 -07:00
|
|
|
Created: key.CreatedUnix.AsTime(),
|
|
|
|
Expires: key.ExpiredUnix.AsTime(),
|
2017-03-15 19:27:35 -06:00
|
|
|
Emails: emails,
|
|
|
|
SubsKey: subkeys,
|
|
|
|
CanSign: key.CanSign,
|
|
|
|
CanEncryptComms: key.CanEncryptComms,
|
|
|
|
CanEncryptStorage: key.CanEncryptStorage,
|
|
|
|
CanCertify: key.CanSign,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToGPGKeyEmail convert models.EmailAddress to api.GPGKeyEmail
|
|
|
|
func ToGPGKeyEmail(email *models.EmailAddress) *api.GPGKeyEmail {
|
|
|
|
return &api.GPGKeyEmail{
|
|
|
|
Email: email.Email,
|
|
|
|
Verified: email.IsActivated,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// ToHook convert models.Webhook to api.Hook
|
2016-03-13 21:20:22 -06:00
|
|
|
func ToHook(repoLink string, w *models.Webhook) *api.Hook {
|
2015-12-04 15:16:42 -07:00
|
|
|
config := map[string]string{
|
|
|
|
"url": w.URL,
|
|
|
|
"content_type": w.ContentType.Name(),
|
|
|
|
}
|
|
|
|
if w.HookTaskType == models.SLACK {
|
|
|
|
s := w.GetSlackHook()
|
|
|
|
config["channel"] = s.Channel
|
|
|
|
config["username"] = s.Username
|
|
|
|
config["icon_url"] = s.IconURL
|
|
|
|
config["color"] = s.Color
|
|
|
|
}
|
|
|
|
|
|
|
|
return &api.Hook{
|
|
|
|
ID: w.ID,
|
|
|
|
Type: w.HookTaskType.Name(),
|
|
|
|
URL: fmt.Sprintf("%s/settings/hooks/%d", repoLink, w.ID),
|
|
|
|
Active: w.IsActive,
|
|
|
|
Config: config,
|
|
|
|
Events: w.EventsArray(),
|
2017-12-10 21:37:04 -07:00
|
|
|
Updated: w.UpdatedUnix.AsTime(),
|
|
|
|
Created: w.CreatedUnix.AsTime(),
|
2015-12-04 15:16:42 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-16 23:31:08 -06:00
|
|
|
// ToGitHook convert git.Hook to api.GitHook
|
|
|
|
func ToGitHook(h *git.Hook) *api.GitHook {
|
|
|
|
return &api.GitHook{
|
|
|
|
Name: h.Name(),
|
|
|
|
IsActive: h.IsActive,
|
|
|
|
Content: h.Content,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// ToDeployKey convert models.DeployKey to api.DeployKey
|
2016-03-13 21:20:22 -06:00
|
|
|
func ToDeployKey(apiLink string, key *models.DeployKey) *api.DeployKey {
|
2015-12-04 15:16:42 -07:00
|
|
|
return &api.DeployKey{
|
2018-10-31 21:40:49 -06:00
|
|
|
ID: key.ID,
|
|
|
|
KeyID: key.KeyID,
|
|
|
|
Key: key.Content,
|
|
|
|
Fingerprint: key.Fingerprint,
|
|
|
|
URL: apiLink + com.ToStr(key.ID),
|
|
|
|
Title: key.Name,
|
|
|
|
Created: key.CreatedUnix.AsTime(),
|
|
|
|
ReadOnly: key.Mode == models.AccessModeRead, // All deploy keys are read-only.
|
2015-12-04 15:16:42 -07:00
|
|
|
}
|
|
|
|
}
|
2015-12-17 00:28:47 -07:00
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// ToOrganization convert models.User to api.Organization
|
2016-03-13 21:20:22 -06:00
|
|
|
func ToOrganization(org *models.User) *api.Organization {
|
2015-12-17 00:28:47 -07:00
|
|
|
return &api.Organization{
|
2016-07-23 11:08:22 -06:00
|
|
|
ID: org.ID,
|
2016-11-29 01:25:47 -07:00
|
|
|
AvatarURL: org.AvatarLink(),
|
2015-12-17 00:28:47 -07:00
|
|
|
UserName: org.Name,
|
|
|
|
FullName: org.FullName,
|
|
|
|
Description: org.Description,
|
|
|
|
Website: org.Website,
|
|
|
|
Location: org.Location,
|
2019-05-30 11:57:55 -06:00
|
|
|
Visibility: org.Visibility.String(),
|
2015-12-17 00:28:47 -07:00
|
|
|
}
|
|
|
|
}
|
2016-03-21 10:47:54 -06:00
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// ToTeam convert models.Team to api.Team
|
2016-03-21 10:47:54 -06:00
|
|
|
func ToTeam(team *models.Team) *api.Team {
|
|
|
|
return &api.Team{
|
|
|
|
ID: team.ID,
|
|
|
|
Name: team.Name,
|
|
|
|
Description: team.Description,
|
|
|
|
Permission: team.Authorize.String(),
|
2018-11-10 12:45:32 -07:00
|
|
|
Units: team.GetUnitNames(),
|
2016-03-21 10:47:54 -06:00
|
|
|
}
|
|
|
|
}
|
2019-04-15 10:36:59 -06:00
|
|
|
|
|
|
|
// ToUser convert models.User to api.User
|
2019-07-27 08:25:16 -06:00
|
|
|
func ToUser(user *models.User, signed, authed bool) *api.User {
|
2019-04-15 10:36:59 -06:00
|
|
|
result := &api.User{
|
|
|
|
UserName: user.Name,
|
|
|
|
AvatarURL: user.AvatarLink(),
|
|
|
|
FullName: markup.Sanitize(user.FullName),
|
2019-06-15 21:28:32 -06:00
|
|
|
Created: user.CreatedUnix.AsTime(),
|
2019-04-15 10:36:59 -06:00
|
|
|
}
|
2019-07-27 08:25:16 -06:00
|
|
|
// hide primary email if API caller isn't user itself or an admin
|
|
|
|
if !signed {
|
|
|
|
result.Email = ""
|
|
|
|
} else if user.KeepEmailPrivate && !authed {
|
|
|
|
result.Email = user.GetEmail()
|
2019-10-24 00:01:40 -06:00
|
|
|
} else { // only user himself and admin could visit these information
|
|
|
|
result.ID = user.ID
|
2019-04-15 10:36:59 -06:00
|
|
|
result.Email = user.Email
|
2019-10-24 00:01:40 -06:00
|
|
|
result.IsAdmin = user.IsAdmin
|
|
|
|
result.LastLogin = user.LastLoginUnix.AsTime()
|
2019-04-15 10:36:59 -06:00
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
2019-06-08 08:31:11 -06:00
|
|
|
|
|
|
|
// ToAnnotatedTag convert git.Tag to api.AnnotatedTag
|
|
|
|
func ToAnnotatedTag(repo *models.Repository, t *git.Tag, c *git.Commit) *api.AnnotatedTag {
|
|
|
|
return &api.AnnotatedTag{
|
|
|
|
Tag: t.Name,
|
|
|
|
SHA: t.ID.String(),
|
|
|
|
Object: ToAnnotatedTagObject(repo, c),
|
|
|
|
Message: t.Message,
|
|
|
|
URL: util.URLJoin(repo.APIURL(), "git/tags", t.ID.String()),
|
|
|
|
Tagger: ToCommitUser(t.Tagger),
|
|
|
|
Verification: ToVerification(c),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToAnnotatedTagObject convert a git.Commit to an api.AnnotatedTagObject
|
|
|
|
func ToAnnotatedTagObject(repo *models.Repository, commit *git.Commit) *api.AnnotatedTagObject {
|
|
|
|
return &api.AnnotatedTagObject{
|
|
|
|
SHA: commit.ID.String(),
|
|
|
|
Type: string(git.ObjectCommit),
|
|
|
|
URL: util.URLJoin(repo.APIURL(), "git/commits", commit.ID.String()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToCommitUser convert a git.Signature to an api.CommitUser
|
|
|
|
func ToCommitUser(sig *git.Signature) *api.CommitUser {
|
|
|
|
return &api.CommitUser{
|
|
|
|
Identity: api.Identity{
|
|
|
|
Name: sig.Name,
|
|
|
|
Email: sig.Email,
|
|
|
|
},
|
|
|
|
Date: sig.When.UTC().Format(time.RFC3339),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToCommitMeta convert a git.Tag to an api.CommitMeta
|
|
|
|
func ToCommitMeta(repo *models.Repository, tag *git.Tag) *api.CommitMeta {
|
|
|
|
return &api.CommitMeta{
|
2019-06-29 04:44:17 -06:00
|
|
|
SHA: tag.Object.String(),
|
2019-06-08 08:31:11 -06:00
|
|
|
// TODO: Add the /commits API endpoint and use it here (https://developer.github.com/v3/repos/commits/#get-a-single-commit)
|
|
|
|
URL: util.URLJoin(repo.APIURL(), "git/commits", tag.ID.String()),
|
|
|
|
}
|
|
|
|
}
|