mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
76 lines
2.0 KiB
Go
76 lines
2.0 KiB
Go
package plugin_gb28181
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"google.golang.org/protobuf/types/known/emptypb"
|
|
"google.golang.org/protobuf/types/known/timestamppb"
|
|
"m7s.live/v5/pkg/config"
|
|
"m7s.live/v5/plugin/gb28181/pb"
|
|
gb28181 "m7s.live/v5/plugin/gb28181/pkg"
|
|
)
|
|
|
|
func (gb *GB28181Plugin) List(context.Context, *emptypb.Empty) (ret *pb.ResponseList, err error) {
|
|
ret = &pb.ResponseList{}
|
|
for d := range gb.devices.Range {
|
|
var channels []*pb.Channel
|
|
for c := range d.channels.Range {
|
|
channels = append(channels, &pb.Channel{
|
|
DeviceID: c.DeviceID,
|
|
ParentID: c.ParentID,
|
|
Name: c.Name,
|
|
Manufacturer: c.Manufacturer,
|
|
Model: c.Model,
|
|
Owner: c.Owner,
|
|
CivilCode: c.CivilCode,
|
|
Address: c.Address,
|
|
Port: int32(c.Port),
|
|
Parental: int32(c.Parental),
|
|
SafetyWay: int32(c.SafetyWay),
|
|
RegisterWay: int32(c.RegisterWay),
|
|
Secrecy: int32(c.Secrecy),
|
|
Status: string(c.Status),
|
|
Longitude: c.Longitude,
|
|
Latitude: c.Latitude,
|
|
GpsTime: timestamppb.New(c.GpsTime),
|
|
})
|
|
}
|
|
ret.Data = append(ret.Data, &pb.Device{
|
|
Id: d.ID,
|
|
Name: d.Name,
|
|
Manufacturer: d.Manufacturer,
|
|
Model: d.Model,
|
|
Owner: d.Owner,
|
|
Status: string(d.Status),
|
|
Longitude: d.Longitude,
|
|
Latitude: d.Latitude,
|
|
GpsTime: timestamppb.New(d.GpsTime),
|
|
RegisterTime: timestamppb.New(d.StartTime),
|
|
UpdateTime: timestamppb.New(d.UpdateTime),
|
|
Channels: channels,
|
|
})
|
|
}
|
|
return
|
|
}
|
|
|
|
func (gb *GB28181Plugin) api_ps_replay(w http.ResponseWriter, r *http.Request) {
|
|
dump := r.URL.Query().Get("dump")
|
|
streamPath := r.PathValue("streamPath")
|
|
if dump == "" {
|
|
dump = "dump/ps"
|
|
}
|
|
if streamPath == "" {
|
|
if strings.HasPrefix(dump, "/") {
|
|
streamPath = "replay" + dump
|
|
} else {
|
|
streamPath = "replay/" + dump
|
|
}
|
|
}
|
|
var puller gb28181.DumpPuller
|
|
puller.GetPullJob().Init(&puller, &gb.Plugin, streamPath, config.Pull{
|
|
URL: dump,
|
|
}, nil)
|
|
}
|