mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 19:38:23 +00:00 
			
		
		
		
	Close #14601 Fix #3690 Revive of #14601. Updated to current code, cleanup and added more read/write checks. Signed-off-by: Andrew Thornton <art27@cantab.net> Signed-off-by: Andre Bruch <ab@andrebruch.com> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Norwin <git@nroo.de> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			810 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			810 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2020 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package convert
 | |
| 
 | |
| import (
 | |
| 	repo_model "code.gitea.io/gitea/models/repo"
 | |
| 	api "code.gitea.io/gitea/modules/structs"
 | |
| )
 | |
| 
 | |
| // ToRelease convert a repo_model.Release to api.Release
 | |
| func ToRelease(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(),
 | |
| 		IsDraft:      r.IsDraft,
 | |
| 		IsPrerelease: r.IsPrerelease,
 | |
| 		CreatedAt:    r.CreatedUnix.AsTime(),
 | |
| 		PublishedAt:  r.CreatedUnix.AsTime(),
 | |
| 		Publisher:    ToUser(r.Publisher, nil),
 | |
| 		Attachments:  ToAttachments(r.Attachments),
 | |
| 	}
 | |
| }
 |