Compare commits
1 Commits
master
...
dd94c88a0e
| Author | SHA1 | Date | |
|---|---|---|---|
|
dd94c88a0e
|
@@ -18,7 +18,4 @@ func printVOD(v *streamdata.VOD) {
|
|||||||
} else {
|
} else {
|
||||||
fmt.Printf("YouTube : %s | %s\n", v.Title, date)
|
fmt.Printf("YouTube : %s | %s\n", v.Title, date)
|
||||||
}
|
}
|
||||||
if v.Mirror != "" {
|
|
||||||
fmt.Println("Mirror :", v.Mirror)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"cmp"
|
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -12,8 +11,6 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
"path"
|
"path"
|
||||||
"slices"
|
|
||||||
"strconv"
|
|
||||||
"strings"
|
"strings"
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
@@ -224,108 +221,13 @@ func main() {
|
|||||||
return errors.New("list requires a channel selected")
|
return errors.New("list requires a channel selected")
|
||||||
}
|
}
|
||||||
|
|
||||||
for ident := range channel.All(&err, true) {
|
for ident := range channel.All(&err) {
|
||||||
fmt.Println(ident)
|
fmt.Println(ident)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
c.NewCommand(
|
|
||||||
"mirror",
|
|
||||||
"Populate mirror address of the next un-mirrored asset",
|
|
||||||
func([]string) (err error) {
|
|
||||||
if channel == nil {
|
|
||||||
return errors.New("mirror requires a channel selected")
|
|
||||||
}
|
|
||||||
|
|
||||||
idents := slices.Collect(channel.All(&err, false))
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
slices.SortFunc(idents, func(a, b *streamdata.Ident) int {
|
|
||||||
return cmp.Compare(a.Serial, b.Serial)
|
|
||||||
})
|
|
||||||
|
|
||||||
unique := errors.New("entry already mirrored")
|
|
||||||
for i, ident := range idents {
|
|
||||||
if err = channel.Edit(ident, func(v *streamdata.VOD) (err error) {
|
|
||||||
if v.Mirror != "" {
|
|
||||||
return unique
|
|
||||||
}
|
|
||||||
|
|
||||||
var parts []*streamdata.VOD
|
|
||||||
for _, next := range idents[i+1:] {
|
|
||||||
var part *streamdata.VOD
|
|
||||||
if part, err = channel.Load(next); err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if part.Title != v.Title {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
parts = append(parts, part)
|
|
||||||
}
|
|
||||||
|
|
||||||
pathname := path.Join(
|
|
||||||
flagBase,
|
|
||||||
"upload"+streamdata.ChannelVODSuffix,
|
|
||||||
)
|
|
||||||
if err = os.Symlink(path.Join(
|
|
||||||
"vod",
|
|
||||||
ident.String()+streamdata.ChannelVODSuffix,
|
|
||||||
), pathname); err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
log.Println("pending video at", pathname)
|
|
||||||
defer func() {
|
|
||||||
removeErr := os.Remove(pathname)
|
|
||||||
if err == nil {
|
|
||||||
err = removeErr
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
defer toErr(&err)
|
|
||||||
isattyStd()
|
|
||||||
br := bufio.NewReader(os.Stdin)
|
|
||||||
|
|
||||||
if len(parts) > 0 {
|
|
||||||
fmt.Println("assets with identical title:")
|
|
||||||
for j := range parts {
|
|
||||||
fmt.Println(idents[i+1+j])
|
|
||||||
}
|
|
||||||
if !require(promptBool(br, "Proceed? ", true)) {
|
|
||||||
for j, part := range parts {
|
|
||||||
fmt.Println(idents[i+1+j])
|
|
||||||
printVOD(part)
|
|
||||||
}
|
|
||||||
return errors.New(
|
|
||||||
strconv.Itoa(len(parts)) + " trailing parts",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
retry:
|
|
||||||
fmt.Println(ident)
|
|
||||||
printVOD(v)
|
|
||||||
v.Mirror = require(promptTrimNoEmpty(br, "Mirror : "))
|
|
||||||
if !require(promptBool(br, "Proceed? ", true)) {
|
|
||||||
v.Mirror = ""
|
|
||||||
goto retry
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}); err != nil {
|
|
||||||
if err == unique {
|
|
||||||
err = nil
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
break
|
|
||||||
}
|
|
||||||
return
|
|
||||||
},
|
|
||||||
)
|
|
||||||
|
|
||||||
c.MustParse(os.Args[1:], func(err error) {
|
c.MustParse(os.Args[1:], func(err error) {
|
||||||
if channel != nil {
|
if channel != nil {
|
||||||
if closeErr := channel.Close(); closeErr != nil {
|
if closeErr := channel.Close(); closeErr != nil {
|
||||||
|
|||||||
@@ -130,8 +130,6 @@ type VOD struct {
|
|||||||
Date time.Time `json:"date"`
|
Date time.Time `json:"date"`
|
||||||
// Free-form category string.
|
// Free-form category string.
|
||||||
Category string `json:"category,omitempty"`
|
Category string `json:"category,omitempty"`
|
||||||
// A mirror site the asset is uploaded to, usually YouTube.
|
|
||||||
Mirror string `json:"mirror,omitempty"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ChannelMismatchError describes a mismatching [Ident.Channel] passed to [Channel.Add].
|
// ChannelMismatchError describes a mismatching [Ident.Channel] passed to [Channel.Add].
|
||||||
@@ -276,10 +274,7 @@ func (c *Channel) Path(ident *Ident) string {
|
|||||||
// All returns an iterator over all known [Ident] in the on-disk representation.
|
// All returns an iterator over all known [Ident] in the on-disk representation.
|
||||||
// Iteration stops when encountering the first non-nil error, and its value is
|
// Iteration stops when encountering the first non-nil error, and its value is
|
||||||
// saved to the value pointed to by errP.
|
// saved to the value pointed to by errP.
|
||||||
//
|
func (c *Channel) All(errP *error) iter.Seq[*Ident] {
|
||||||
// If reuse is true, the same value is updated every iteration and the same
|
|
||||||
// address is yileded as a result.
|
|
||||||
func (c *Channel) All(errP *error, reuse bool) iter.Seq[*Ident] {
|
|
||||||
return func(yield func(*Ident) bool) {
|
return func(yield func(*Ident) bool) {
|
||||||
dents, err := c.root.FS().(fs.ReadDirFS).ReadDir(channelPathVOD)
|
dents, err := c.root.FS().(fs.ReadDirFS).ReadDir(channelPathVOD)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -301,11 +296,7 @@ func (c *Channel) All(errP *error, reuse bool) iter.Seq[*Ident] {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
p := &ident
|
if !yield(&ident) {
|
||||||
if !reuse {
|
|
||||||
p = new(ident)
|
|
||||||
}
|
|
||||||
if !yield(p) {
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -303,7 +303,7 @@ func TestChannel(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var iterErr error
|
var iterErr error
|
||||||
idents := slices.Collect(c.All(&iterErr, false))
|
idents := slices.Collect(c.All(&iterErr))
|
||||||
if iterErr != nil {
|
if iterErr != nil {
|
||||||
t.Fatalf("All: error = %#v", iterErr)
|
t.Fatalf("All: error = %#v", iterErr)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user