2020-10-17 00:23:08 -04:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-10-17 00:23:08 -04:00
|
|
|
|
|
|
|
package convert
|
|
|
|
|
|
|
|
import (
|
2021-11-19 08:39:57 -05:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2020-10-17 00:23:08 -04:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
|
|
)
|
|
|
|
|
2022-08-24 22:31:57 -04:00
|
|
|
// ToRelease convert a repo_model.Release to api.Release
|
|
|
|
func ToRelease(r *repo_model.Release) *api.Release {
|
2020-10-17 00:23:08 -04:00
|
|
|
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 12:45:26 -04:00
|
|
|
Publisher: ToUser(r.Publisher, nil),
|
2022-12-09 01:35:56 -05:00
|
|
|
Attachments: ToAttachments(r.Attachments),
|
2020-10-17 00:23:08 -04:00
|
|
|
}
|
|
|
|
}
|