File: reviewcomment.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 (46 lines) | stat: -rw-r--r-- 1,171 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
// Copyright Earl Warren <contact@earl-warren.org>
// Copyright Loïc Dachary <loic@dachary.org>
// SPDX-License-Identifier: MIT

package f3

import (
	"time"
)

type ReviewComment struct {
	Common
	Content    string     `json:"content"`
	TreePath   string     `json:"tree_path"`
	DiffHunk   string     `json:"diff_hunk"`
	Line       int        `json:"line"`
	LinesCount int        `json:"lines_count"`
	CommitID   string     `json:"commit_id"`
	PosterID   *Reference `json:"poster_id"`
	CreatedAt  time.Time  `json:"created_at"`
	UpdatedAt  time.Time  `json:"updated_at"`
}

func (o ReviewComment) Equal(other ReviewComment) bool {
	return o.Common.Equal(other.Common) &&
		o.Content == other.Content &&
		o.TreePath == other.TreePath &&
		o.Line == other.Line &&
		o.LinesCount == other.LinesCount &&
		o.CommitID == other.CommitID &&
		nilOrEqual(o.PosterID, other.PosterID)
}

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

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