harbor/src/common/models/notification.go

56 lines
1.3 KiB
Go
Raw Normal View History

// Copyright Project Harbor Authors
2017-04-13 12:54:58 +02:00
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2016-02-26 11:54:14 +01:00
2016-02-01 12:59:10 +01:00
package models
import (
"time"
)
// Notification holds all events.
2016-02-01 12:59:10 +01:00
type Notification struct {
Events []Event
}
// Event holds the details of a event.
2016-02-01 12:59:10 +01:00
type Event struct {
2016-02-26 09:07:20 +01:00
ID string `json:"Id"`
2016-02-01 12:59:10 +01:00
TimeStamp time.Time
Action string
Target *Target
Request *Request
Actor *Actor
}
// Target holds information about the target of a event.
2016-02-01 12:59:10 +01:00
type Target struct {
MediaType string
Digest string
Repository string
2016-02-26 09:07:20 +01:00
URL string `json:"Url"`
Tag string
2016-02-01 12:59:10 +01:00
}
// Actor holds information about actor.
2016-02-01 12:59:10 +01:00
type Actor struct {
Name string
}
// Request holds information about a request.
2016-02-01 12:59:10 +01:00
type Request struct {
2016-02-26 09:07:20 +01:00
ID string `json:"Id"`
2016-02-01 12:59:10 +01:00
Method string
UserAgent string
}