2020-10-17 09:53:08 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-10-17 09:53:08 +05:30
|
|
|
|
|
|
|
package convert
|
|
|
|
|
|
|
|
import (
|
2021-11-19 19:09:57 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2020-10-17 09:53:08 +05:30
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
|
|
)
|
|
|
|
|
2022-08-25 08:01:57 +05:30
|
|
|
// ToRelease convert a repo_model.Release to api.Release
|
|
|
|
func ToRelease(r *repo_model.Release) *api.Release {
|
2020-10-17 09:53:08 +05:30
|
|
|
return &api.Release{
|
|
|
|
ID: r.ID,
|
|
|
|
TagName: r.TagName,
|
|
|
|
Target: r.Target,
|
|
|
|
Title: r.Title,
|
|
|
|
Note: r.Note,
|
|
|
|
URL: r.APIURL(),
|
|
|
|
HTMLURL: r.HTMLURL(),
|
|
|
|
TarURL: r.TarURL(),
|
|
|
|
ZipURL: r.ZipURL(),
|
|
|
|
IsDraft: r.IsDraft,
|
|
|
|
IsPrerelease: r.IsPrerelease,
|
|
|
|
CreatedAt: r.CreatedUnix.AsTime(),
|
|
|
|
PublishedAt: r.CreatedUnix.AsTime(),
|
2021-03-27 22:15:26 +05:30
|
|
|
Publisher: ToUser(r.Publisher, nil),
|
2022-12-09 12:05:56 +05:30
|
|
|
Attachments: ToAttachments(r.Attachments),
|
2020-10-17 09:53:08 +05:30
|
|
|
}
|
|
|
|
}
|