File: release.go

package info (click to toggle)
golang-code.forgejo-f3-gof3 3.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,952 kB
  • sloc: sh: 100; makefile: 65
file content (48 lines) | stat: -rw-r--r-- 1,302 bytes parent folder | download
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
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright Earl Warren <contact@earl-warren.org>
// Copyright Loïc Dachary <loic@dachary.org>
// SPDX-License-Identifier: MIT

package f3

import (
	"time"
)

type Release struct {
	Common
	TagName         string        `json:"tag_name"`
	TargetCommitish string        `json:"target_commitish"`
	Name            string        `json:"name"`
	Body            string        `json:"body"`
	Draft           bool          `json:"draft"`
	Prerelease      bool          `json:"prerelease"`
	PublisherID     *Reference    `json:"publisher_id"`
	Attachments     []*Attachment `json:"attachments"`
	Created         time.Time     `json:"created"`
}

func (o Release) Equal(other Release) bool {
	return o.Common.Equal(other.Common) &&
		o.TagName == other.TagName &&
		o.TargetCommitish == other.TargetCommitish &&
		o.Name == other.Name &&
		o.Body == other.Body &&
		o.Draft == other.Draft &&
		o.Prerelease == other.Prerelease &&
		nilOrEqual(o.PublisherID, other.PublisherID) &&
		arrayEqual(o.Attachments, other.Attachments)
}

func (o *Release) GetReferences() References {
	references := o.Common.GetReferences()
	if !o.PublisherID.IsNil() {
		references = append(references, o.PublisherID)
	}
	return references
}

func (o *Release) Clone() Interface {
	clone := &Release{}
	*clone = *o
	return clone
}