i think this will work with mastodon import and boosts
This commit is contained in:
parent
758ad54a04
commit
2e3094a4b6
47
import.go
47
import.go
|
@ -39,6 +39,32 @@ func importMain(username, flavor, source string) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type TootObject struct {
|
||||||
|
Summary string
|
||||||
|
Content string
|
||||||
|
InReplyTo string
|
||||||
|
Conversation string
|
||||||
|
Published time.Time
|
||||||
|
Tag []struct {
|
||||||
|
Type string
|
||||||
|
Name string
|
||||||
|
}
|
||||||
|
Attachment []struct {
|
||||||
|
Type string
|
||||||
|
MediaType string
|
||||||
|
Url string
|
||||||
|
Name string
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type PlainTootObject TootObject
|
||||||
|
|
||||||
|
func (obj *TootObject) UnmarshalJSON(b []byte) error {
|
||||||
|
p := (*PlainTootObject)(obj)
|
||||||
|
json.Unmarshal(b, p)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func importMastodon(username, source string) {
|
func importMastodon(username, source string) {
|
||||||
user, err := butwhatabout(username)
|
user, err := butwhatabout(username)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -49,23 +75,7 @@ func importMastodon(username, source string) {
|
||||||
Type string
|
Type string
|
||||||
To []string
|
To []string
|
||||||
Cc []string
|
Cc []string
|
||||||
Object struct {
|
Object TootObject
|
||||||
Summary string
|
|
||||||
Content string
|
|
||||||
InReplyTo string
|
|
||||||
Conversation string
|
|
||||||
Published time.Time
|
|
||||||
Tag []struct {
|
|
||||||
Type string
|
|
||||||
Name string
|
|
||||||
}
|
|
||||||
Attachment []struct {
|
|
||||||
Type string
|
|
||||||
MediaType string
|
|
||||||
Url string
|
|
||||||
Name string
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
var outbox struct {
|
var outbox struct {
|
||||||
OrderedItems []Toot
|
OrderedItems []Toot
|
||||||
|
@ -94,6 +104,9 @@ func importMastodon(username, source string) {
|
||||||
re_tootid := regexp.MustCompile("[^/]+$")
|
re_tootid := regexp.MustCompile("[^/]+$")
|
||||||
for _, item := range outbox.OrderedItems {
|
for _, item := range outbox.OrderedItems {
|
||||||
toot := item
|
toot := item
|
||||||
|
if toot.Type != "Create" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
tootid := re_tootid.FindString(toot.Id)
|
tootid := re_tootid.FindString(toot.Id)
|
||||||
xid := fmt.Sprintf("%s/%s/%s", user.URL, honkSep, tootid)
|
xid := fmt.Sprintf("%s/%s/%s", user.URL, honkSep, tootid)
|
||||||
if havetoot(xid) {
|
if havetoot(xid) {
|
||||||
|
|
Loading…
Reference in New Issue