summaryrefslogtreecommitdiffstats
path: root/services/convert/release.go
blob: 8c0f61b56cb8d5662f574fa0fb29480b15424303 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package convert

import (
	"context"

	repo_model "code.gitea.io/gitea/models/repo"
	api "code.gitea.io/gitea/modules/structs"
)

// ToAPIRelease convert a repo_model.Release to api.Release
func ToAPIRelease(ctx context.Context, repo *repo_model.Repository, r *repo_model.Release) *api.Release {
	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(),
		HideArchiveLinks:     r.HideArchiveLinks,
		UploadURL:            r.APIUploadURL(),
		IsDraft:              r.IsDraft,
		IsPrerelease:         r.IsPrerelease,
		CreatedAt:            r.CreatedUnix.AsTime(),
		PublishedAt:          r.CreatedUnix.AsTime(),
		Publisher:            ToUser(ctx, r.Publisher, nil),
		Attachments:          ToAPIAttachments(repo, r.Attachments),
		ArchiveDownloadCount: r.ArchiveDownloadCount,
	}
}