diff --git a/go.mod b/go.mod index 791561b75..578eed119 100644 --- a/go.mod +++ b/go.mod @@ -10,7 +10,6 @@ require ( github.com/gin-contrib/cors v1.3.1 github.com/gin-contrib/sessions v0.0.3 github.com/gin-gonic/gin v1.7.2-0.20210908033055-3a6f18f32f22 - github.com/go-fed/activity v1.0.1-0.20210803212804-d866ba75dd0f github.com/go-fed/httpsig v1.1.0 github.com/go-playground/validator/v10 v10.9.0 github.com/google/uuid v1.3.0 @@ -25,6 +24,7 @@ require ( github.com/russross/blackfriday/v2 v2.1.0 github.com/sirupsen/logrus v1.8.1 github.com/stretchr/testify v1.7.0 + github.com/superseriousbusiness/activity v1.0.1-0.20211113133524-56560b73ace8 github.com/superseriousbusiness/exifremove v0.0.0-20210330092427-6acd27eac203 github.com/superseriousbusiness/oauth2/v4 v4.3.2-SSB github.com/tdewolff/minify/v2 v2.9.21 diff --git a/go.sum b/go.sum index 89178bb03..9eb2f6c28 100644 --- a/go.sum +++ b/go.sum @@ -151,8 +151,6 @@ github.com/go-errors/errors v1.0.2/go.mod h1:psDX2osz5VnTOnFWbDeWwS7yejl+uV3FEWE github.com/go-errors/errors v1.1.1/go.mod h1:psDX2osz5VnTOnFWbDeWwS7yejl+uV3FEWEp4lssFEs= github.com/go-errors/errors v1.4.0 h1:2OA7MFw38+e9na72T1xgkomPb6GzZzzxvJ5U630FoRM= github.com/go-errors/errors v1.4.0/go.mod h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og= -github.com/go-fed/activity v1.0.1-0.20210803212804-d866ba75dd0f h1:etNMc6V75EEoPVbFxXjMb7r6bmIoodXN4McXuPuljLY= -github.com/go-fed/activity v1.0.1-0.20210803212804-d866ba75dd0f/go.mod h1:v4QoPaAzjWZ8zN2VFVGL5ep9C02mst0hQYHUpQwso4Q= github.com/go-fed/httpsig v0.1.1-0.20190914113940-c2de3672e5b5/go.mod h1:T56HUNYZUQ1AGUzhAYPugZfp36sKApVnGBgKlIY+aIE= github.com/go-fed/httpsig v1.1.0 h1:9M+hb0jkEICD8/cAiNqEB66R87tTINszBRTjwjQzWcI= github.com/go-fed/httpsig v1.1.0/go.mod h1:RCMrTZvN1bJYtofsG4rd5NaO5obxQ5xBkdiS7xsT7bM= @@ -445,6 +443,8 @@ github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5 github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/superseriousbusiness/activity v1.0.1-0.20211113133524-56560b73ace8 h1:8Bwy6CSsT33/sF5FhjND4vr7jiJCaq4elNTAW4rUzVc= +github.com/superseriousbusiness/activity v1.0.1-0.20211113133524-56560b73ace8/go.mod h1:ZY9xwFDucvp6zTvM6FQZGl8PSOofPBFIAy6gSc85XkY= github.com/superseriousbusiness/exifremove v0.0.0-20210330092427-6acd27eac203 h1:1SWXcTphBQjYGWRRxLFIAR1LVtQEj4eR7xPtyeOVM/c= github.com/superseriousbusiness/exifremove v0.0.0-20210330092427-6acd27eac203/go.mod h1:0Xw5cYMOYpgaWs+OOSx41ugycl2qvKTi9tlMMcZhFyY= github.com/superseriousbusiness/oauth2/v4 v4.3.2-SSB h1:PtW2w6budTvRV2J5QAoSvThTHBuvh8t/+BXIZFAaBSc= diff --git a/internal/ap/extract.go b/internal/ap/extract.go index f6ba555a8..b96079dec 100644 --- a/internal/ap/extract.go +++ b/internal/ap/extract.go @@ -31,7 +31,7 @@ import ( "strings" "time" - "github.com/go-fed/activity/pub" + "github.com/superseriousbusiness/activity/pub" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" "github.com/superseriousbusiness/gotosocial/internal/util" ) @@ -671,3 +671,21 @@ func isFollowers(uris []*url.URL, followersURI string) bool { } return false } + +// ExtractSensitive extracts whether or not an item is 'sensitive'. +// If no sensitive property is set on the item at all, or if this property +// isn't a boolean, then false will be returned by default. +func ExtractSensitive(withSensitive WithSensitive) bool { + sensitiveProp := withSensitive.GetActivityStreamsSensitive() + if sensitiveProp == nil { + return false + } + + for iter := sensitiveProp.Begin(); iter != sensitiveProp.End(); iter = iter.Next() { + if iter.IsXMLSchemaBoolean() { + return iter.Get() + } + } + + return false +} diff --git a/internal/ap/extract_test.go b/internal/ap/extract_test.go index 1b5c1f11f..5a3907ef7 100644 --- a/internal/ap/extract_test.go +++ b/internal/ap/extract_test.go @@ -22,10 +22,10 @@ import ( "context" "encoding/json" - "github.com/go-fed/activity/pub" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/pub" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/testrig" ) @@ -49,6 +49,10 @@ func document1() vocab.ActivityStreamsDocument { dBlurhash.Set("UxQ0EkRP_4tRxtRjWBt7%hozM_ayV@oLf6WB") d.SetTootBlurhash(dBlurhash) + dSensitive := streams.NewActivityStreamsSensitiveProperty() + dSensitive.AppendXMLSchemaBoolean(true) + d.SetActivityStreamsSensitive(dSensitive) + return d } diff --git a/internal/ap/extractattachments_test.go b/internal/ap/extractattachments_test.go index 3be340cc5..e6262b5aa 100644 --- a/internal/ap/extractattachments_test.go +++ b/internal/ap/extractattachments_test.go @@ -21,8 +21,8 @@ package ap_test import ( "testing" - "github.com/go-fed/activity/streams" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams" "github.com/superseriousbusiness/gotosocial/internal/ap" ) diff --git a/internal/ap/extractsensitive_test.go b/internal/ap/extractsensitive_test.go new file mode 100644 index 000000000..00b96d736 --- /dev/null +++ b/internal/ap/extractsensitive_test.go @@ -0,0 +1,42 @@ +/* + GoToSocial + Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + +package ap_test + +import ( + "testing" + + "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/gotosocial/internal/ap" +) + +type ExtractSensitiveTestSuite struct { + ExtractTestSuite +} + +func (suite *ExtractMentionsTestSuite) TestExtractSensitive() { + d := suite.document1 + suite.True(ap.ExtractSensitive(d)) + + n := suite.noteWithMentions1 + suite.False(ap.ExtractSensitive(n)) +} + +func TestExtractSensitiveTestSuite(t *testing.T) { + suite.Run(t, &ExtractSensitiveTestSuite{}) +} diff --git a/internal/ap/interfaces.go b/internal/ap/interfaces.go index da7e001db..7c8c1c943 100644 --- a/internal/ap/interfaces.go +++ b/internal/ap/interfaces.go @@ -18,7 +18,7 @@ package ap -import "github.com/go-fed/activity/streams/vocab" +import "github.com/superseriousbusiness/activity/streams/vocab" // Accountable represents the minimum activitypub interface for representing an 'account'. // This interface is fulfilled by: Person, Application, Organization, Service, and Group @@ -249,9 +249,9 @@ type WithCC interface { GetActivityStreamsCc() vocab.ActivityStreamsCcProperty } -// WithSensitive ... +// WithSensitive represents an activity with ActivityStreamsSensitiveProperty type WithSensitive interface { - // TODO + GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty } // WithConversation ... diff --git a/internal/api/s2s/user/inboxpost_test.go b/internal/api/s2s/user/inboxpost_test.go index 3f02affdb..4d1c05757 100644 --- a/internal/api/s2s/user/inboxpost_test.go +++ b/internal/api/s2s/user/inboxpost_test.go @@ -29,9 +29,9 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/go-fed/activity/pub" - "github.com/go-fed/activity/streams" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/pub" + "github.com/superseriousbusiness/activity/streams" "github.com/superseriousbusiness/gotosocial/internal/api/s2s/user" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" diff --git a/internal/api/s2s/user/outboxget_test.go b/internal/api/s2s/user/outboxget_test.go index 4f5ea3f17..251051cbd 100644 --- a/internal/api/s2s/user/outboxget_test.go +++ b/internal/api/s2s/user/outboxget_test.go @@ -27,9 +27,9 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/api/s2s/user" "github.com/superseriousbusiness/gotosocial/testrig" ) diff --git a/internal/api/s2s/user/repliesget_test.go b/internal/api/s2s/user/repliesget_test.go index 32cd0c366..cd1094b53 100644 --- a/internal/api/s2s/user/repliesget_test.go +++ b/internal/api/s2s/user/repliesget_test.go @@ -28,10 +28,10 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/api/s2s/user" "github.com/superseriousbusiness/gotosocial/testrig" ) diff --git a/internal/api/s2s/user/userget_test.go b/internal/api/s2s/user/userget_test.go index 68f16fc76..303295cfe 100644 --- a/internal/api/s2s/user/userget_test.go +++ b/internal/api/s2s/user/userget_test.go @@ -27,10 +27,10 @@ import ( "testing" "github.com/gin-gonic/gin" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/api/s2s/user" "github.com/superseriousbusiness/gotosocial/testrig" ) diff --git a/internal/federation/authenticate.go b/internal/federation/authenticate.go index 78cfe2b5d..eb0e675c3 100644 --- a/internal/federation/authenticate.go +++ b/internal/federation/authenticate.go @@ -25,14 +25,15 @@ import ( "encoding/pem" "errors" "fmt" - "github.com/sirupsen/logrus" "net/url" "strings" - "github.com/go-fed/activity/pub" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" + "github.com/sirupsen/logrus" + "github.com/go-fed/httpsig" + "github.com/superseriousbusiness/activity/pub" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" "github.com/superseriousbusiness/gotosocial/internal/util" diff --git a/internal/federation/clock.go b/internal/federation/clock.go index cc67f8b73..b727df503 100644 --- a/internal/federation/clock.go +++ b/internal/federation/clock.go @@ -21,7 +21,7 @@ package federation import ( "time" - "github.com/go-fed/activity/pub" + "github.com/superseriousbusiness/activity/pub" ) /* diff --git a/internal/federation/commonbehavior.go b/internal/federation/commonbehavior.go index 29eb9b6f3..299124c47 100644 --- a/internal/federation/commonbehavior.go +++ b/internal/federation/commonbehavior.go @@ -22,8 +22,8 @@ import ( "context" "net/http" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" ) /* diff --git a/internal/federation/dereferencing/account.go b/internal/federation/dereferencing/account.go index 7d8e2ff94..d5adb545b 100644 --- a/internal/federation/dereferencing/account.go +++ b/internal/federation/dereferencing/account.go @@ -26,9 +26,9 @@ import ( "net/url" "strings" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" "github.com/superseriousbusiness/gotosocial/internal/id" diff --git a/internal/federation/dereferencing/collectionpage.go b/internal/federation/dereferencing/collectionpage.go index cf97327a5..9b8024c90 100644 --- a/internal/federation/dereferencing/collectionpage.go +++ b/internal/federation/dereferencing/collectionpage.go @@ -25,8 +25,8 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" ) diff --git a/internal/federation/dereferencing/dereferencer_test.go b/internal/federation/dereferencing/dereferencer_test.go index e73847ac7..d4bf3396d 100644 --- a/internal/federation/dereferencing/dereferencer_test.go +++ b/internal/federation/dereferencing/dereferencer_test.go @@ -25,10 +25,10 @@ import ( "net/http" "codeberg.org/gruf/go-store/kv" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/config" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/federation/dereferencing" diff --git a/internal/federation/dereferencing/status.go b/internal/federation/dereferencing/status.go index c4102a8f3..383f9718e 100644 --- a/internal/federation/dereferencing/status.go +++ b/internal/federation/dereferencing/status.go @@ -26,9 +26,9 @@ import ( "net/url" "strings" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" "github.com/superseriousbusiness/gotosocial/internal/id" diff --git a/internal/federation/federatingactor.go b/internal/federation/federatingactor.go index 65a16efaf..a614822d6 100644 --- a/internal/federation/federatingactor.go +++ b/internal/federation/federatingactor.go @@ -23,8 +23,8 @@ import ( "net/http" "net/url" - "github.com/go-fed/activity/pub" - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/pub" + "github.com/superseriousbusiness/activity/streams/vocab" ) // federatingActor implements the go-fed federating protocol interface diff --git a/internal/federation/federatingdb/accept.go b/internal/federation/federatingdb/accept.go index 8d295161c..1509b37bc 100644 --- a/internal/federation/federatingdb/accept.go +++ b/internal/federation/federatingdb/accept.go @@ -23,8 +23,8 @@ import ( "errors" "fmt" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" diff --git a/internal/federation/federatingdb/announce.go b/internal/federation/federatingdb/announce.go index 7a40cd051..b506a9f78 100644 --- a/internal/federation/federatingdb/announce.go +++ b/internal/federation/federatingdb/announce.go @@ -22,8 +22,8 @@ import ( "context" "fmt" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/messages" ) diff --git a/internal/federation/federatingdb/create.go b/internal/federation/federatingdb/create.go index 862f84473..d992c2bd7 100644 --- a/internal/federation/federatingdb/create.go +++ b/internal/federation/federatingdb/create.go @@ -24,8 +24,8 @@ import ( "fmt" "strings" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" diff --git a/internal/federation/federatingdb/db.go b/internal/federation/federatingdb/db.go index 196d6163c..4b2f92fd4 100644 --- a/internal/federation/federatingdb/db.go +++ b/internal/federation/federatingdb/db.go @@ -23,8 +23,8 @@ import ( "sync" "time" - "github.com/go-fed/activity/pub" - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/pub" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/config" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/typeutils" diff --git a/internal/federation/federatingdb/followers.go b/internal/federation/federatingdb/followers.go index 2eccf167d..96b824c66 100644 --- a/internal/federation/federatingdb/followers.go +++ b/internal/federation/federatingdb/followers.go @@ -5,8 +5,8 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/db" ) diff --git a/internal/federation/federatingdb/followers_test.go b/internal/federation/federatingdb/followers_test.go index d993a7201..fbdf738a9 100644 --- a/internal/federation/federatingdb/followers_test.go +++ b/internal/federation/federatingdb/followers_test.go @@ -23,8 +23,8 @@ import ( "encoding/json" "testing" - "github.com/go-fed/activity/streams" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams" "github.com/superseriousbusiness/gotosocial/testrig" ) diff --git a/internal/federation/federatingdb/following.go b/internal/federation/federatingdb/following.go index cc6111715..54d703742 100644 --- a/internal/federation/federatingdb/following.go +++ b/internal/federation/federatingdb/following.go @@ -5,8 +5,8 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/db" ) diff --git a/internal/federation/federatingdb/following_test.go b/internal/federation/federatingdb/following_test.go index 7788840d7..7c2727269 100644 --- a/internal/federation/federatingdb/following_test.go +++ b/internal/federation/federatingdb/following_test.go @@ -23,8 +23,8 @@ import ( "encoding/json" "testing" - "github.com/go-fed/activity/streams" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams" "github.com/superseriousbusiness/gotosocial/testrig" ) diff --git a/internal/federation/federatingdb/get.go b/internal/federation/federatingdb/get.go index 6c629d717..a409b7b91 100644 --- a/internal/federation/federatingdb/get.go +++ b/internal/federation/federatingdb/get.go @@ -23,8 +23,8 @@ import ( "errors" "net/url" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/util" ) diff --git a/internal/federation/federatingdb/inbox.go b/internal/federation/federatingdb/inbox.go index 95886b571..90a10a499 100644 --- a/internal/federation/federatingdb/inbox.go +++ b/internal/federation/federatingdb/inbox.go @@ -22,8 +22,9 @@ import ( "context" "net/url" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" + "github.com/superseriousbusiness/gotosocial/internal/db" ) // InboxContains returns true if the OrderedCollection at 'inbox' @@ -56,3 +57,25 @@ func (f *federatingDB) GetInbox(c context.Context, inboxIRI *url.URL) (inbox voc func (f *federatingDB) SetInbox(c context.Context, inbox vocab.ActivityStreamsOrderedCollectionPage) error { return nil } + +// InboxForActor fetches the inbox corresponding to the given actorIRI. +// +// It is acceptable to just return nil for the inboxIRI. In this case, the library will +// attempt to resolve the inbox of the actor by remote dereferencing instead. +// +// The library makes this call only after acquiring a lock first. +func (f *federatingDB) InboxForActor(c context.Context, actorIRI *url.URL) (inboxIRI *url.URL, err error) { + account, err := f.db.GetAccountByURI(c, actorIRI.String()) + if err != nil { + // if there are just no entries for this account yet it's fine, return nil + // and go-fed will try to dereference it instead + if err == db.ErrNoEntries { + return nil, nil + } + // there's been an actual error... + return nil, err + } + + // we got it! + return url.Parse(account.InboxURI) +} diff --git a/internal/federation/federatingdb/liked.go b/internal/federation/federatingdb/liked.go index 93b3d2c88..2729c1223 100644 --- a/internal/federation/federatingdb/liked.go +++ b/internal/federation/federatingdb/liked.go @@ -22,8 +22,8 @@ import ( "context" "net/url" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" ) // Liked obtains the Liked Collection for an actor with the diff --git a/internal/federation/federatingdb/outbox.go b/internal/federation/federatingdb/outbox.go index 07caf999e..9d540e3a2 100644 --- a/internal/federation/federatingdb/outbox.go +++ b/internal/federation/federatingdb/outbox.go @@ -22,8 +22,8 @@ import ( "context" "net/url" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" ) // GetOutbox returns the first ordered collection page of the outbox diff --git a/internal/federation/federatingdb/reject.go b/internal/federation/federatingdb/reject.go index d05c41654..2d8687ee9 100644 --- a/internal/federation/federatingdb/reject.go +++ b/internal/federation/federatingdb/reject.go @@ -23,8 +23,8 @@ import ( "errors" "fmt" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" diff --git a/internal/federation/federatingdb/reject_test.go b/internal/federation/federatingdb/reject_test.go index 5e5f12a79..2b213a3f0 100644 --- a/internal/federation/federatingdb/reject_test.go +++ b/internal/federation/federatingdb/reject_test.go @@ -22,8 +22,8 @@ import ( "testing" "time" - "github.com/go-fed/activity/streams" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" "github.com/superseriousbusiness/gotosocial/internal/messages" diff --git a/internal/federation/federatingdb/undo.go b/internal/federation/federatingdb/undo.go index 934b5970d..f2dcc72c5 100644 --- a/internal/federation/federatingdb/undo.go +++ b/internal/federation/federatingdb/undo.go @@ -23,8 +23,8 @@ import ( "errors" "fmt" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" diff --git a/internal/federation/federatingdb/update.go b/internal/federation/federatingdb/update.go index 646b155dc..8f318ce71 100644 --- a/internal/federation/federatingdb/update.go +++ b/internal/federation/federatingdb/update.go @@ -23,8 +23,8 @@ import ( "errors" "fmt" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" "github.com/superseriousbusiness/gotosocial/internal/messages" diff --git a/internal/federation/federatingdb/util.go b/internal/federation/federatingdb/util.go index 34a103a49..87b85aed6 100644 --- a/internal/federation/federatingdb/util.go +++ b/internal/federation/federatingdb/util.go @@ -25,9 +25,9 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" diff --git a/internal/federation/federatingprotocol.go b/internal/federation/federatingprotocol.go index 504e2dbeb..be5ab4d85 100644 --- a/internal/federation/federatingprotocol.go +++ b/internal/federation/federatingprotocol.go @@ -25,10 +25,10 @@ import ( "net/http" "net/url" - "github.com/go-fed/activity/pub" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/activity/pub" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" "github.com/superseriousbusiness/gotosocial/internal/util" diff --git a/internal/federation/federator.go b/internal/federation/federator.go index 2813f6ff8..280375d7d 100644 --- a/internal/federation/federator.go +++ b/internal/federation/federator.go @@ -22,7 +22,7 @@ import ( "context" "net/url" - "github.com/go-fed/activity/pub" + "github.com/superseriousbusiness/activity/pub" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/config" "github.com/superseriousbusiness/gotosocial/internal/db" diff --git a/internal/federation/federator_test.go b/internal/federation/federator_test.go index 44ae54074..7ac149c0d 100644 --- a/internal/federation/federator_test.go +++ b/internal/federation/federator_test.go @@ -25,10 +25,10 @@ import ( "testing" "codeberg.org/gruf/go-store/kv" - "github.com/go-fed/activity/pub" "github.com/go-fed/httpsig" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/pub" "github.com/superseriousbusiness/gotosocial/internal/config" "github.com/superseriousbusiness/gotosocial/internal/db" diff --git a/internal/federation/transport.go b/internal/federation/transport.go index 9e2e38e19..5b5afaad5 100644 --- a/internal/federation/transport.go +++ b/internal/federation/transport.go @@ -23,7 +23,7 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/pub" + "github.com/superseriousbusiness/activity/pub" "github.com/superseriousbusiness/gotosocial/internal/util" ) diff --git a/internal/processing/account/account_test.go b/internal/processing/account/account_test.go index e2f8a1339..9bc97a77b 100644 --- a/internal/processing/account/account_test.go +++ b/internal/processing/account/account_test.go @@ -20,8 +20,8 @@ package account_test import ( "codeberg.org/gruf/go-store/kv" - "github.com/go-fed/activity/pub" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/pub" "github.com/superseriousbusiness/gotosocial/internal/config" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/email" diff --git a/internal/processing/federation/getfollowers.go b/internal/processing/federation/getfollowers.go index b17c90e07..aac63cd5c 100644 --- a/internal/processing/federation/getfollowers.go +++ b/internal/processing/federation/getfollowers.go @@ -24,7 +24,7 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/streams" + "github.com/superseriousbusiness/activity/streams" "github.com/superseriousbusiness/gotosocial/internal/gtserror" ) diff --git a/internal/processing/federation/getfollowing.go b/internal/processing/federation/getfollowing.go index e2d50d238..0715ffece 100644 --- a/internal/processing/federation/getfollowing.go +++ b/internal/processing/federation/getfollowing.go @@ -24,7 +24,7 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/streams" + "github.com/superseriousbusiness/activity/streams" "github.com/superseriousbusiness/gotosocial/internal/gtserror" ) diff --git a/internal/processing/federation/getoutbox.go b/internal/processing/federation/getoutbox.go index a3b2cff3c..2e8a4d3f5 100644 --- a/internal/processing/federation/getoutbox.go +++ b/internal/processing/federation/getoutbox.go @@ -24,7 +24,7 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/streams" + "github.com/superseriousbusiness/activity/streams" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtserror" ) diff --git a/internal/processing/federation/getstatus.go b/internal/processing/federation/getstatus.go index a4f251023..5c13a54f6 100644 --- a/internal/processing/federation/getstatus.go +++ b/internal/processing/federation/getstatus.go @@ -24,7 +24,7 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/streams" + "github.com/superseriousbusiness/activity/streams" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtserror" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" diff --git a/internal/processing/federation/getstatusreplies.go b/internal/processing/federation/getstatusreplies.go index 0fa0cc386..28c46269e 100644 --- a/internal/processing/federation/getstatusreplies.go +++ b/internal/processing/federation/getstatusreplies.go @@ -24,7 +24,7 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/streams" + "github.com/superseriousbusiness/activity/streams" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtserror" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" diff --git a/internal/processing/federation/getuser.go b/internal/processing/federation/getuser.go index 0d80e528e..37444bf5d 100644 --- a/internal/processing/federation/getuser.go +++ b/internal/processing/federation/getuser.go @@ -24,8 +24,8 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/gtserror" "github.com/superseriousbusiness/gotosocial/internal/util" ) diff --git a/internal/processing/fromclientapi.go b/internal/processing/fromclientapi.go index db6f7382d..b8259c87a 100644 --- a/internal/processing/fromclientapi.go +++ b/internal/processing/fromclientapi.go @@ -24,7 +24,7 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/streams" + "github.com/superseriousbusiness/activity/streams" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" diff --git a/internal/processing/processor_test.go b/internal/processing/processor_test.go index 270682b26..181cfa63a 100644 --- a/internal/processing/processor_test.go +++ b/internal/processing/processor_test.go @@ -27,8 +27,8 @@ import ( "net/http" "codeberg.org/gruf/go-store/kv" - "github.com/go-fed/activity/streams" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams" "github.com/superseriousbusiness/gotosocial/internal/config" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/email" diff --git a/internal/transport/controller.go b/internal/transport/controller.go index 9b22928d4..86f612c15 100644 --- a/internal/transport/controller.go +++ b/internal/transport/controller.go @@ -24,8 +24,8 @@ import ( "fmt" "sync" - "github.com/go-fed/activity/pub" "github.com/go-fed/httpsig" + "github.com/superseriousbusiness/activity/pub" "github.com/superseriousbusiness/gotosocial/internal/config" "github.com/superseriousbusiness/gotosocial/internal/db" ) diff --git a/internal/transport/transport.go b/internal/transport/transport.go index 14787f5a2..5c0c7a61f 100644 --- a/internal/transport/transport.go +++ b/internal/transport/transport.go @@ -24,8 +24,8 @@ import ( "net/url" "sync" - "github.com/go-fed/activity/pub" "github.com/go-fed/httpsig" + "github.com/superseriousbusiness/activity/pub" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" ) diff --git a/internal/typeutils/astointernal.go b/internal/typeutils/astointernal.go index 89b950c5b..c5ee51130 100644 --- a/internal/typeutils/astointernal.go +++ b/internal/typeutils/astointernal.go @@ -294,7 +294,7 @@ func (c *converter) ASStatusToStatus(ctx context.Context, statusable ap.Statusab status.Likeable = true // sensitive - // TODO: this is a bool + status.Sensitive = ap.ExtractSensitive(statusable) // language // we might be able to extract this from the contentMap field diff --git a/internal/typeutils/astointernal_test.go b/internal/typeutils/astointernal_test.go index bc44ec2bd..38ec757c9 100644 --- a/internal/typeutils/astointernal_test.go +++ b/internal/typeutils/astointernal_test.go @@ -24,10 +24,10 @@ import ( "fmt" "testing" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" ) diff --git a/internal/typeutils/converter.go b/internal/typeutils/converter.go index eeb5bead1..212ae1247 100644 --- a/internal/typeutils/converter.go +++ b/internal/typeutils/converter.go @@ -22,7 +22,7 @@ import ( "context" "net/url" - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/api/model" "github.com/superseriousbusiness/gotosocial/internal/cache" diff --git a/internal/typeutils/converter_test.go b/internal/typeutils/converter_test.go index 041182369..d557e52f2 100644 --- a/internal/typeutils/converter_test.go +++ b/internal/typeutils/converter_test.go @@ -19,8 +19,8 @@ package typeutils_test import ( - "github.com/go-fed/activity/streams/vocab" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/config" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" diff --git a/internal/typeutils/internaltoas.go b/internal/typeutils/internaltoas.go index 047d61b80..7afb65f21 100644 --- a/internal/typeutils/internaltoas.go +++ b/internal/typeutils/internaltoas.go @@ -25,9 +25,9 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/pub" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/pub" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/gtserror" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" ) @@ -537,6 +537,11 @@ func (c *converter) StatusToAS(ctx context.Context, s *gtsmodel.Status) (vocab.A repliesProp.SetActivityStreamsCollection(repliesCollection) status.SetActivityStreamsReplies(repliesProp) + // sensitive + sensitiveProp := streams.NewActivityStreamsSensitiveProperty() + sensitiveProp.AppendXMLSchemaBoolean(s.Sensitive) + status.SetActivityStreamsSensitive(sensitiveProp) + // put the note in our cache in case we need it again soon if err := c.asCache.Store(s.ID, status); err != nil { return nil, err diff --git a/internal/typeutils/internaltoas_test.go b/internal/typeutils/internaltoas_test.go index d8098098f..da7dc883a 100644 --- a/internal/typeutils/internaltoas_test.go +++ b/internal/typeutils/internaltoas_test.go @@ -24,9 +24,9 @@ import ( "fmt" "testing" - "github.com/go-fed/activity/streams" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams" ) type InternalToASTestSuite struct { @@ -75,6 +75,39 @@ func (suite *InternalToASTestSuite) TestOutboxToASCollection() { suite.Equal(`{"@context":"https://www.w3.org/ns/activitystreams","first":"http://localhost:8080/users/admin/outbox?page=true","id":"http://localhost:8080/users/admin/outbox","type":"OrderedCollection"}`, string(bytes)) } +func (suite *InternalToASTestSuite) TestStatusToAS() { + testStatus := suite.testStatuses["local_account_1_status_1"] + ctx := context.Background() + + asStatus, err := suite.typeconverter.StatusToAS(ctx, testStatus) + suite.NoError(err) + + ser, err := streams.Serialize(asStatus) + assert.NoError(suite.T(), err) + + bytes, err := json.Marshal(ser) + suite.NoError(err) + + suite.Equal(`{"@context":"https://www.w3.org/ns/activitystreams","attachment":[],"attributedTo":"http://localhost:8080/users/the_mighty_zork","cc":"http://localhost:8080/users/the_mighty_zork/followers","content":"hello everyone!","id":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY","published":"2021-10-20T12:40:37+02:00","replies":{"first":{"id":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/replies?page=true","next":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/replies?only_other_accounts=false\u0026page=true","partOf":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/replies","type":"CollectionPage"},"id":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/replies","type":"Collection"},"sensitive":true,"summary":"introduction post","tag":[],"to":"https://www.w3.org/ns/activitystreams#Public","type":"Note","url":"http://localhost:8080/@the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY"}`, string(bytes)) +} + +func (suite *InternalToASTestSuite) TestStatusToASNotSensitive() { + testStatus := suite.testStatuses["admin_account_status_1"] + + ctx := context.Background() + + asStatus, err := suite.typeconverter.StatusToAS(ctx, testStatus) + suite.NoError(err) + + ser, err := streams.Serialize(asStatus) + assert.NoError(suite.T(), err) + + bytes, err := json.Marshal(ser) + suite.NoError(err) + + suite.Equal(`{"@context":"https://www.w3.org/ns/activitystreams","attachment":[],"attributedTo":"http://localhost:8080/users/admin","cc":"http://localhost:8080/users/admin/followers","content":"hello world! #welcome ! first post on the instance :rainbow: !","id":"http://localhost:8080/users/admin/statuses/01F8MH75CBF9JFX4ZAD54N0W0R","published":"2021-10-20T11:36:45Z","replies":{"first":{"id":"http://localhost:8080/users/admin/statuses/01F8MH75CBF9JFX4ZAD54N0W0R/replies?page=true","next":"http://localhost:8080/users/admin/statuses/01F8MH75CBF9JFX4ZAD54N0W0R/replies?only_other_accounts=false\u0026page=true","partOf":"http://localhost:8080/users/admin/statuses/01F8MH75CBF9JFX4ZAD54N0W0R/replies","type":"CollectionPage"},"id":"http://localhost:8080/users/admin/statuses/01F8MH75CBF9JFX4ZAD54N0W0R/replies","type":"Collection"},"sensitive":false,"summary":"","tag":[],"to":"https://www.w3.org/ns/activitystreams#Public","type":"Note","url":"http://localhost:8080/@admin/statuses/01F8MH75CBF9JFX4ZAD54N0W0R"}`, string(bytes)) +} + func (suite *InternalToASTestSuite) TestStatusesToASOutboxPage() { testAccount := suite.testAccounts["admin_account"] ctx := context.Background() diff --git a/internal/typeutils/wrap.go b/internal/typeutils/wrap.go index e7c422eba..b5938c419 100644 --- a/internal/typeutils/wrap.go +++ b/internal/typeutils/wrap.go @@ -4,9 +4,9 @@ import ( "fmt" "net/url" - "github.com/go-fed/activity/pub" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/pub" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" "github.com/superseriousbusiness/gotosocial/internal/id" diff --git a/internal/typeutils/wrap_test.go b/internal/typeutils/wrap_test.go index 14309c00c..3d5d6001e 100644 --- a/internal/typeutils/wrap_test.go +++ b/internal/typeutils/wrap_test.go @@ -23,8 +23,8 @@ import ( "encoding/json" "testing" - "github.com/go-fed/activity/streams" "github.com/stretchr/testify/suite" + "github.com/superseriousbusiness/activity/streams" ) type WrapTestSuite struct { @@ -66,7 +66,7 @@ func (suite *WrapTestSuite) TestWrapNoteInCreate() { bytes, err := json.Marshal(createI) suite.NoError(err) - suite.Equal(`{"@context":"https://www.w3.org/ns/activitystreams","actor":"http://localhost:8080/users/the_mighty_zork","cc":"http://localhost:8080/users/the_mighty_zork/followers","id":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/activity","object":{"attachment":[],"attributedTo":"http://localhost:8080/users/the_mighty_zork","cc":"http://localhost:8080/users/the_mighty_zork/followers","content":"hello everyone!","id":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY","published":"2021-10-20T12:40:37+02:00","replies":{"first":{"id":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/replies?page=true","next":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/replies?only_other_accounts=false\u0026page=true","partOf":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/replies","type":"CollectionPage"},"id":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/replies","type":"Collection"},"summary":"introduction post","tag":[],"to":"https://www.w3.org/ns/activitystreams#Public","type":"Note","url":"http://localhost:8080/@the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY"},"published":"2021-10-20T12:40:37+02:00","to":"https://www.w3.org/ns/activitystreams#Public","type":"Create"}`, string(bytes)) + suite.Equal(`{"@context":"https://www.w3.org/ns/activitystreams","actor":"http://localhost:8080/users/the_mighty_zork","cc":"http://localhost:8080/users/the_mighty_zork/followers","id":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/activity","object":{"attachment":[],"attributedTo":"http://localhost:8080/users/the_mighty_zork","cc":"http://localhost:8080/users/the_mighty_zork/followers","content":"hello everyone!","id":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY","published":"2021-10-20T12:40:37+02:00","replies":{"first":{"id":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/replies?page=true","next":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/replies?only_other_accounts=false\u0026page=true","partOf":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/replies","type":"CollectionPage"},"id":"http://localhost:8080/users/the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY/replies","type":"Collection"},"sensitive":true,"summary":"introduction post","tag":[],"to":"https://www.w3.org/ns/activitystreams#Public","type":"Note","url":"http://localhost:8080/@the_mighty_zork/statuses/01F8MHAMCHF6Y650WCRSCP4WMY"},"published":"2021-10-20T12:40:37+02:00","to":"https://www.w3.org/ns/activitystreams#Public","type":"Create"}`, string(bytes)) } func TestWrapTestSuite(t *testing.T) { diff --git a/testrig/testmodels.go b/testrig/testmodels.go index c879d9e38..f40dd4b30 100644 --- a/testrig/testmodels.go +++ b/testrig/testmodels.go @@ -36,9 +36,9 @@ import ( "os" "time" - "github.com/go-fed/activity/pub" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/pub" + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" ) diff --git a/testrig/transportcontroller.go b/testrig/transportcontroller.go index 31e38f42f..c82b55f69 100644 --- a/testrig/transportcontroller.go +++ b/testrig/transportcontroller.go @@ -23,7 +23,7 @@ import ( "io/ioutil" "net/http" - "github.com/go-fed/activity/pub" + "github.com/superseriousbusiness/activity/pub" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/federation" "github.com/superseriousbusiness/gotosocial/internal/transport" diff --git a/vendor/github.com/go-fed/activity/streams/gen_init.go b/vendor/github.com/go-fed/activity/streams/gen_init.go deleted file mode 100644 index 47f0db309..000000000 --- a/vendor/github.com/go-fed/activity/streams/gen_init.go +++ /dev/null @@ -1,410 +0,0 @@ -// Code generated by astool. DO NOT EDIT. - -package streams - -import ( - propertyaccuracy "github.com/go-fed/activity/streams/impl/activitystreams/property_accuracy" - propertyactor "github.com/go-fed/activity/streams/impl/activitystreams/property_actor" - propertyaltitude "github.com/go-fed/activity/streams/impl/activitystreams/property_altitude" - propertyanyof "github.com/go-fed/activity/streams/impl/activitystreams/property_anyof" - propertyattachment "github.com/go-fed/activity/streams/impl/activitystreams/property_attachment" - propertyattributedto "github.com/go-fed/activity/streams/impl/activitystreams/property_attributedto" - propertyaudience "github.com/go-fed/activity/streams/impl/activitystreams/property_audience" - propertybcc "github.com/go-fed/activity/streams/impl/activitystreams/property_bcc" - propertybto "github.com/go-fed/activity/streams/impl/activitystreams/property_bto" - propertycc "github.com/go-fed/activity/streams/impl/activitystreams/property_cc" - propertyclosed "github.com/go-fed/activity/streams/impl/activitystreams/property_closed" - propertycontent "github.com/go-fed/activity/streams/impl/activitystreams/property_content" - propertycontext "github.com/go-fed/activity/streams/impl/activitystreams/property_context" - propertycurrent "github.com/go-fed/activity/streams/impl/activitystreams/property_current" - propertydeleted "github.com/go-fed/activity/streams/impl/activitystreams/property_deleted" - propertydescribes "github.com/go-fed/activity/streams/impl/activitystreams/property_describes" - propertyduration "github.com/go-fed/activity/streams/impl/activitystreams/property_duration" - propertyendtime "github.com/go-fed/activity/streams/impl/activitystreams/property_endtime" - propertyfirst "github.com/go-fed/activity/streams/impl/activitystreams/property_first" - propertyfollowers "github.com/go-fed/activity/streams/impl/activitystreams/property_followers" - propertyfollowing "github.com/go-fed/activity/streams/impl/activitystreams/property_following" - propertyformertype "github.com/go-fed/activity/streams/impl/activitystreams/property_formertype" - propertygenerator "github.com/go-fed/activity/streams/impl/activitystreams/property_generator" - propertyheight "github.com/go-fed/activity/streams/impl/activitystreams/property_height" - propertyhref "github.com/go-fed/activity/streams/impl/activitystreams/property_href" - propertyhreflang "github.com/go-fed/activity/streams/impl/activitystreams/property_hreflang" - propertyicon "github.com/go-fed/activity/streams/impl/activitystreams/property_icon" - propertyimage "github.com/go-fed/activity/streams/impl/activitystreams/property_image" - propertyinbox "github.com/go-fed/activity/streams/impl/activitystreams/property_inbox" - propertyinreplyto "github.com/go-fed/activity/streams/impl/activitystreams/property_inreplyto" - propertyinstrument "github.com/go-fed/activity/streams/impl/activitystreams/property_instrument" - propertyitems "github.com/go-fed/activity/streams/impl/activitystreams/property_items" - propertylast "github.com/go-fed/activity/streams/impl/activitystreams/property_last" - propertylatitude "github.com/go-fed/activity/streams/impl/activitystreams/property_latitude" - propertyliked "github.com/go-fed/activity/streams/impl/activitystreams/property_liked" - propertylikes "github.com/go-fed/activity/streams/impl/activitystreams/property_likes" - propertylocation "github.com/go-fed/activity/streams/impl/activitystreams/property_location" - propertylongitude "github.com/go-fed/activity/streams/impl/activitystreams/property_longitude" - propertymanuallyapprovesfollowers "github.com/go-fed/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers" - propertymediatype "github.com/go-fed/activity/streams/impl/activitystreams/property_mediatype" - propertyname "github.com/go-fed/activity/streams/impl/activitystreams/property_name" - propertynext "github.com/go-fed/activity/streams/impl/activitystreams/property_next" - propertyobject "github.com/go-fed/activity/streams/impl/activitystreams/property_object" - propertyoneof "github.com/go-fed/activity/streams/impl/activitystreams/property_oneof" - propertyordereditems "github.com/go-fed/activity/streams/impl/activitystreams/property_ordereditems" - propertyorigin "github.com/go-fed/activity/streams/impl/activitystreams/property_origin" - propertyoutbox "github.com/go-fed/activity/streams/impl/activitystreams/property_outbox" - propertypartof "github.com/go-fed/activity/streams/impl/activitystreams/property_partof" - propertypreferredusername "github.com/go-fed/activity/streams/impl/activitystreams/property_preferredusername" - propertyprev "github.com/go-fed/activity/streams/impl/activitystreams/property_prev" - propertypreview "github.com/go-fed/activity/streams/impl/activitystreams/property_preview" - propertypublished "github.com/go-fed/activity/streams/impl/activitystreams/property_published" - propertyradius "github.com/go-fed/activity/streams/impl/activitystreams/property_radius" - propertyrel "github.com/go-fed/activity/streams/impl/activitystreams/property_rel" - propertyrelationship "github.com/go-fed/activity/streams/impl/activitystreams/property_relationship" - propertyreplies "github.com/go-fed/activity/streams/impl/activitystreams/property_replies" - propertyresult "github.com/go-fed/activity/streams/impl/activitystreams/property_result" - propertyshares "github.com/go-fed/activity/streams/impl/activitystreams/property_shares" - propertysource "github.com/go-fed/activity/streams/impl/activitystreams/property_source" - propertystartindex "github.com/go-fed/activity/streams/impl/activitystreams/property_startindex" - propertystarttime "github.com/go-fed/activity/streams/impl/activitystreams/property_starttime" - propertystreams "github.com/go-fed/activity/streams/impl/activitystreams/property_streams" - propertysubject "github.com/go-fed/activity/streams/impl/activitystreams/property_subject" - propertysummary "github.com/go-fed/activity/streams/impl/activitystreams/property_summary" - propertytag "github.com/go-fed/activity/streams/impl/activitystreams/property_tag" - propertytarget "github.com/go-fed/activity/streams/impl/activitystreams/property_target" - propertyto "github.com/go-fed/activity/streams/impl/activitystreams/property_to" - propertytotalitems "github.com/go-fed/activity/streams/impl/activitystreams/property_totalitems" - propertyunits "github.com/go-fed/activity/streams/impl/activitystreams/property_units" - propertyupdated "github.com/go-fed/activity/streams/impl/activitystreams/property_updated" - propertyurl "github.com/go-fed/activity/streams/impl/activitystreams/property_url" - propertywidth "github.com/go-fed/activity/streams/impl/activitystreams/property_width" - typeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_accept" - typeactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_activity" - typeadd "github.com/go-fed/activity/streams/impl/activitystreams/type_add" - typeannounce "github.com/go-fed/activity/streams/impl/activitystreams/type_announce" - typeapplication "github.com/go-fed/activity/streams/impl/activitystreams/type_application" - typearrive "github.com/go-fed/activity/streams/impl/activitystreams/type_arrive" - typearticle "github.com/go-fed/activity/streams/impl/activitystreams/type_article" - typeaudio "github.com/go-fed/activity/streams/impl/activitystreams/type_audio" - typeblock "github.com/go-fed/activity/streams/impl/activitystreams/type_block" - typecollection "github.com/go-fed/activity/streams/impl/activitystreams/type_collection" - typecollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage" - typecreate "github.com/go-fed/activity/streams/impl/activitystreams/type_create" - typedelete "github.com/go-fed/activity/streams/impl/activitystreams/type_delete" - typedislike "github.com/go-fed/activity/streams/impl/activitystreams/type_dislike" - typedocument "github.com/go-fed/activity/streams/impl/activitystreams/type_document" - typeevent "github.com/go-fed/activity/streams/impl/activitystreams/type_event" - typeflag "github.com/go-fed/activity/streams/impl/activitystreams/type_flag" - typefollow "github.com/go-fed/activity/streams/impl/activitystreams/type_follow" - typegroup "github.com/go-fed/activity/streams/impl/activitystreams/type_group" - typeignore "github.com/go-fed/activity/streams/impl/activitystreams/type_ignore" - typeimage "github.com/go-fed/activity/streams/impl/activitystreams/type_image" - typeintransitiveactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity" - typeinvite "github.com/go-fed/activity/streams/impl/activitystreams/type_invite" - typejoin "github.com/go-fed/activity/streams/impl/activitystreams/type_join" - typeleave "github.com/go-fed/activity/streams/impl/activitystreams/type_leave" - typelike "github.com/go-fed/activity/streams/impl/activitystreams/type_like" - typelink "github.com/go-fed/activity/streams/impl/activitystreams/type_link" - typelisten "github.com/go-fed/activity/streams/impl/activitystreams/type_listen" - typemention "github.com/go-fed/activity/streams/impl/activitystreams/type_mention" - typemove "github.com/go-fed/activity/streams/impl/activitystreams/type_move" - typenote "github.com/go-fed/activity/streams/impl/activitystreams/type_note" - typeobject "github.com/go-fed/activity/streams/impl/activitystreams/type_object" - typeoffer "github.com/go-fed/activity/streams/impl/activitystreams/type_offer" - typeorderedcollection "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection" - typeorderedcollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage" - typeorganization "github.com/go-fed/activity/streams/impl/activitystreams/type_organization" - typepage "github.com/go-fed/activity/streams/impl/activitystreams/type_page" - typeperson "github.com/go-fed/activity/streams/impl/activitystreams/type_person" - typeplace "github.com/go-fed/activity/streams/impl/activitystreams/type_place" - typeprofile "github.com/go-fed/activity/streams/impl/activitystreams/type_profile" - typequestion "github.com/go-fed/activity/streams/impl/activitystreams/type_question" - typeread "github.com/go-fed/activity/streams/impl/activitystreams/type_read" - typereject "github.com/go-fed/activity/streams/impl/activitystreams/type_reject" - typerelationship "github.com/go-fed/activity/streams/impl/activitystreams/type_relationship" - typeremove "github.com/go-fed/activity/streams/impl/activitystreams/type_remove" - typeservice "github.com/go-fed/activity/streams/impl/activitystreams/type_service" - typetentativeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept" - typetentativereject "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject" - typetombstone "github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone" - typetravel "github.com/go-fed/activity/streams/impl/activitystreams/type_travel" - typeundo "github.com/go-fed/activity/streams/impl/activitystreams/type_undo" - typeupdate "github.com/go-fed/activity/streams/impl/activitystreams/type_update" - typevideo "github.com/go-fed/activity/streams/impl/activitystreams/type_video" - typeview "github.com/go-fed/activity/streams/impl/activitystreams/type_view" - propertyassignedto "github.com/go-fed/activity/streams/impl/forgefed/property_assignedto" - propertycommitted "github.com/go-fed/activity/streams/impl/forgefed/property_committed" - propertycommittedby "github.com/go-fed/activity/streams/impl/forgefed/property_committedby" - propertydependants "github.com/go-fed/activity/streams/impl/forgefed/property_dependants" - propertydependedby "github.com/go-fed/activity/streams/impl/forgefed/property_dependedby" - propertydependencies "github.com/go-fed/activity/streams/impl/forgefed/property_dependencies" - propertydependson "github.com/go-fed/activity/streams/impl/forgefed/property_dependson" - propertydescription "github.com/go-fed/activity/streams/impl/forgefed/property_description" - propertyearlyitems "github.com/go-fed/activity/streams/impl/forgefed/property_earlyitems" - propertyfilesadded "github.com/go-fed/activity/streams/impl/forgefed/property_filesadded" - propertyfilesmodified "github.com/go-fed/activity/streams/impl/forgefed/property_filesmodified" - propertyfilesremoved "github.com/go-fed/activity/streams/impl/forgefed/property_filesremoved" - propertyforks "github.com/go-fed/activity/streams/impl/forgefed/property_forks" - propertyhash "github.com/go-fed/activity/streams/impl/forgefed/property_hash" - propertyisresolved "github.com/go-fed/activity/streams/impl/forgefed/property_isresolved" - propertyref "github.com/go-fed/activity/streams/impl/forgefed/property_ref" - propertyteam "github.com/go-fed/activity/streams/impl/forgefed/property_team" - propertyticketstrackedby "github.com/go-fed/activity/streams/impl/forgefed/property_ticketstrackedby" - propertytracksticketsfor "github.com/go-fed/activity/streams/impl/forgefed/property_tracksticketsfor" - typebranch "github.com/go-fed/activity/streams/impl/forgefed/type_branch" - typecommit "github.com/go-fed/activity/streams/impl/forgefed/type_commit" - typepush "github.com/go-fed/activity/streams/impl/forgefed/type_push" - typerepository "github.com/go-fed/activity/streams/impl/forgefed/type_repository" - typeticket "github.com/go-fed/activity/streams/impl/forgefed/type_ticket" - typeticketdependency "github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency" - propertyblurhash "github.com/go-fed/activity/streams/impl/toot/property_blurhash" - propertydiscoverable "github.com/go-fed/activity/streams/impl/toot/property_discoverable" - propertyfeatured "github.com/go-fed/activity/streams/impl/toot/property_featured" - propertysignaturealgorithm "github.com/go-fed/activity/streams/impl/toot/property_signaturealgorithm" - propertysignaturevalue "github.com/go-fed/activity/streams/impl/toot/property_signaturevalue" - propertyvoterscount "github.com/go-fed/activity/streams/impl/toot/property_voterscount" - typeemoji "github.com/go-fed/activity/streams/impl/toot/type_emoji" - typeidentityproof "github.com/go-fed/activity/streams/impl/toot/type_identityproof" - propertyowner "github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_owner" - propertypublickey "github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickey" - propertypublickeypem "github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickeypem" - typepublickey "github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey" -) - -var mgr *Manager - -// init handles the 'magic' of creating a Manager and dependency-injecting it into -// every other code-generated package. This gives the implementations access -// to create any type needed to deserialize, without relying on the other -// specific concrete implementations. In order to replace a go-fed created -// type with your own, be sure to have the manager call your own -// implementation's deserialize functions instead of the built-in type. -// Finally, each implementation views the Manager as an interface with only a -// subset of funcitons available. This means this Manager implements the union -// of those interfaces. -func init() { - mgr = &Manager{} - propertyaccuracy.SetManager(mgr) - propertyactor.SetManager(mgr) - propertyaltitude.SetManager(mgr) - propertyanyof.SetManager(mgr) - propertyattachment.SetManager(mgr) - propertyattributedto.SetManager(mgr) - propertyaudience.SetManager(mgr) - propertybcc.SetManager(mgr) - propertybto.SetManager(mgr) - propertycc.SetManager(mgr) - propertyclosed.SetManager(mgr) - propertycontent.SetManager(mgr) - propertycontext.SetManager(mgr) - propertycurrent.SetManager(mgr) - propertydeleted.SetManager(mgr) - propertydescribes.SetManager(mgr) - propertyduration.SetManager(mgr) - propertyendtime.SetManager(mgr) - propertyfirst.SetManager(mgr) - propertyfollowers.SetManager(mgr) - propertyfollowing.SetManager(mgr) - propertyformertype.SetManager(mgr) - propertygenerator.SetManager(mgr) - propertyheight.SetManager(mgr) - propertyhref.SetManager(mgr) - propertyhreflang.SetManager(mgr) - propertyicon.SetManager(mgr) - propertyimage.SetManager(mgr) - propertyinbox.SetManager(mgr) - propertyinreplyto.SetManager(mgr) - propertyinstrument.SetManager(mgr) - propertyitems.SetManager(mgr) - propertylast.SetManager(mgr) - propertylatitude.SetManager(mgr) - propertyliked.SetManager(mgr) - propertylikes.SetManager(mgr) - propertylocation.SetManager(mgr) - propertylongitude.SetManager(mgr) - propertymanuallyapprovesfollowers.SetManager(mgr) - propertymediatype.SetManager(mgr) - propertyname.SetManager(mgr) - propertynext.SetManager(mgr) - propertyobject.SetManager(mgr) - propertyoneof.SetManager(mgr) - propertyordereditems.SetManager(mgr) - propertyorigin.SetManager(mgr) - propertyoutbox.SetManager(mgr) - propertypartof.SetManager(mgr) - propertypreferredusername.SetManager(mgr) - propertyprev.SetManager(mgr) - propertypreview.SetManager(mgr) - propertypublished.SetManager(mgr) - propertyradius.SetManager(mgr) - propertyrel.SetManager(mgr) - propertyrelationship.SetManager(mgr) - propertyreplies.SetManager(mgr) - propertyresult.SetManager(mgr) - propertyshares.SetManager(mgr) - propertysource.SetManager(mgr) - propertystartindex.SetManager(mgr) - propertystarttime.SetManager(mgr) - propertystreams.SetManager(mgr) - propertysubject.SetManager(mgr) - propertysummary.SetManager(mgr) - propertytag.SetManager(mgr) - propertytarget.SetManager(mgr) - propertyto.SetManager(mgr) - propertytotalitems.SetManager(mgr) - propertyunits.SetManager(mgr) - propertyupdated.SetManager(mgr) - propertyurl.SetManager(mgr) - propertywidth.SetManager(mgr) - typeaccept.SetManager(mgr) - typeactivity.SetManager(mgr) - typeadd.SetManager(mgr) - typeannounce.SetManager(mgr) - typeapplication.SetManager(mgr) - typearrive.SetManager(mgr) - typearticle.SetManager(mgr) - typeaudio.SetManager(mgr) - typeblock.SetManager(mgr) - typecollection.SetManager(mgr) - typecollectionpage.SetManager(mgr) - typecreate.SetManager(mgr) - typedelete.SetManager(mgr) - typedislike.SetManager(mgr) - typedocument.SetManager(mgr) - typeevent.SetManager(mgr) - typeflag.SetManager(mgr) - typefollow.SetManager(mgr) - typegroup.SetManager(mgr) - typeignore.SetManager(mgr) - typeimage.SetManager(mgr) - typeintransitiveactivity.SetManager(mgr) - typeinvite.SetManager(mgr) - typejoin.SetManager(mgr) - typeleave.SetManager(mgr) - typelike.SetManager(mgr) - typelink.SetManager(mgr) - typelisten.SetManager(mgr) - typemention.SetManager(mgr) - typemove.SetManager(mgr) - typenote.SetManager(mgr) - typeobject.SetManager(mgr) - typeoffer.SetManager(mgr) - typeorderedcollection.SetManager(mgr) - typeorderedcollectionpage.SetManager(mgr) - typeorganization.SetManager(mgr) - typepage.SetManager(mgr) - typeperson.SetManager(mgr) - typeplace.SetManager(mgr) - typeprofile.SetManager(mgr) - typequestion.SetManager(mgr) - typeread.SetManager(mgr) - typereject.SetManager(mgr) - typerelationship.SetManager(mgr) - typeremove.SetManager(mgr) - typeservice.SetManager(mgr) - typetentativeaccept.SetManager(mgr) - typetentativereject.SetManager(mgr) - typetombstone.SetManager(mgr) - typetravel.SetManager(mgr) - typeundo.SetManager(mgr) - typeupdate.SetManager(mgr) - typevideo.SetManager(mgr) - typeview.SetManager(mgr) - propertyassignedto.SetManager(mgr) - propertycommitted.SetManager(mgr) - propertycommittedby.SetManager(mgr) - propertydependants.SetManager(mgr) - propertydependedby.SetManager(mgr) - propertydependencies.SetManager(mgr) - propertydependson.SetManager(mgr) - propertydescription.SetManager(mgr) - propertyearlyitems.SetManager(mgr) - propertyfilesadded.SetManager(mgr) - propertyfilesmodified.SetManager(mgr) - propertyfilesremoved.SetManager(mgr) - propertyforks.SetManager(mgr) - propertyhash.SetManager(mgr) - propertyisresolved.SetManager(mgr) - propertyref.SetManager(mgr) - propertyteam.SetManager(mgr) - propertyticketstrackedby.SetManager(mgr) - propertytracksticketsfor.SetManager(mgr) - typebranch.SetManager(mgr) - typecommit.SetManager(mgr) - typepush.SetManager(mgr) - typerepository.SetManager(mgr) - typeticket.SetManager(mgr) - typeticketdependency.SetManager(mgr) - propertyblurhash.SetManager(mgr) - propertydiscoverable.SetManager(mgr) - propertyfeatured.SetManager(mgr) - propertysignaturealgorithm.SetManager(mgr) - propertysignaturevalue.SetManager(mgr) - propertyvoterscount.SetManager(mgr) - typeemoji.SetManager(mgr) - typeidentityproof.SetManager(mgr) - propertyowner.SetManager(mgr) - propertypublickey.SetManager(mgr) - propertypublickeypem.SetManager(mgr) - typepublickey.SetManager(mgr) - typeaccept.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeactivity.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeadd.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeannounce.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeapplication.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typearrive.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typearticle.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeaudio.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeblock.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typecollection.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typecollectionpage.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typecreate.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typedelete.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typedislike.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typedocument.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeevent.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeflag.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typefollow.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typegroup.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeignore.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeimage.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeintransitiveactivity.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeinvite.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typejoin.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeleave.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typelike.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typelink.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typelisten.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typemention.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typemove.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typenote.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeobject.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeoffer.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeorderedcollection.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeorderedcollectionpage.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeorganization.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typepage.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeperson.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeplace.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeprofile.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typequestion.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeread.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typereject.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typerelationship.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeremove.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeservice.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typetentativeaccept.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typetentativereject.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typetombstone.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typetravel.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeundo.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeupdate.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typevideo.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeview.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typebranch.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typecommit.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typepush.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typerepository.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeticket.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeticketdependency.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeemoji.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typeidentityproof.SetTypePropertyConstructor(NewJSONLDTypeProperty) - typepublickey.SetTypePropertyConstructor(NewJSONLDTypeProperty) -} diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_arrive/gen_pkg.go b/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_arrive/gen_pkg.go deleted file mode 100644 index 3ed9d1387..000000000 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_arrive/gen_pkg.go +++ /dev/null @@ -1,203 +0,0 @@ -// Code generated by astool. DO NOT EDIT. - -package typearrive - -import vocab "github.com/go-fed/activity/streams/vocab" - -var mgr privateManager - -var typePropertyConstructor func() vocab.JSONLDTypeProperty - -// privateManager abstracts the code-generated manager that provides access to -// concrete implementations. -type privateManager interface { - // DeserializeActorPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsActorProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeActorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsActorProperty, error) - // DeserializeAltitudePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsAltitudeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeAltitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAltitudeProperty, error) - // DeserializeAttachmentPropertyActivityStreams returns the - // deserialization method for the "ActivityStreamsAttachmentProperty" - // non-functional property in the vocabulary "ActivityStreams" - DeserializeAttachmentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttachmentProperty, error) - // DeserializeAttributedToPropertyActivityStreams returns the - // deserialization method for the - // "ActivityStreamsAttributedToProperty" non-functional property in - // the vocabulary "ActivityStreams" - DeserializeAttributedToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttributedToProperty, error) - // DeserializeAudiencePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsAudienceProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeAudiencePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAudienceProperty, error) - // DeserializeBccPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsBccProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeBccPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBccProperty, error) - // DeserializeBtoPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsBtoProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeBtoPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBtoProperty, error) - // DeserializeCcPropertyActivityStreams returns the deserialization method - // for the "ActivityStreamsCcProperty" non-functional property in the - // vocabulary "ActivityStreams" - DeserializeCcPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCcProperty, error) - // DeserializeContentPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsContentProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeContentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContentProperty, error) - // DeserializeContextPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsContextProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeContextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContextProperty, error) - // DeserializeDurationPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsDurationProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeDurationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDurationProperty, error) - // DeserializeEndTimePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsEndTimeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error) - // DeserializeGeneratorPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsGeneratorProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeGeneratorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsGeneratorProperty, error) - // DeserializeIconPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsIconProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeIconPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIconProperty, error) - // DeserializeIdPropertyJSONLD returns the deserialization method for the - // "JSONLDIdProperty" non-functional property in the vocabulary - // "JSONLD" - DeserializeIdPropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDIdProperty, error) - // DeserializeImagePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsImageProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeImagePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsImageProperty, error) - // DeserializeInReplyToPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsInReplyToProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeInReplyToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInReplyToProperty, error) - // DeserializeInstrumentPropertyActivityStreams returns the - // deserialization method for the "ActivityStreamsInstrumentProperty" - // non-functional property in the vocabulary "ActivityStreams" - DeserializeInstrumentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInstrumentProperty, error) - // DeserializeLikesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsLikesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeLikesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLikesProperty, error) - // DeserializeLocationPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsLocationProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeLocationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLocationProperty, error) - // DeserializeMediaTypePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsMediaTypeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeMediaTypePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMediaTypeProperty, error) - // DeserializeNamePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsNameProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error) - // DeserializeOriginPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsOriginProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeOriginPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOriginProperty, error) - // DeserializePreviewPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsPreviewProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializePreviewPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPreviewProperty, error) - // DeserializePublishedPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsPublishedProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializePublishedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPublishedProperty, error) - // DeserializeRepliesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsRepliesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) - // DeserializeResultPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsResultProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) - // DeserializeSharesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsSharesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeSharesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSharesProperty, error) - // DeserializeSourcePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsSourceProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeSourcePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSourceProperty, error) - // DeserializeStartTimePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsStartTimeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeStartTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStartTimeProperty, error) - // DeserializeSummaryPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsSummaryProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeSummaryPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSummaryProperty, error) - // DeserializeTagPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsTagProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeTagPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTagProperty, error) - // DeserializeTargetPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsTargetProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeTargetPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTargetProperty, error) - // DeserializeTeamPropertyForgeFed returns the deserialization method for - // the "ForgeFedTeamProperty" non-functional property in the - // vocabulary "ForgeFed" - DeserializeTeamPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTeamProperty, error) - // DeserializeTicketsTrackedByPropertyForgeFed returns the deserialization - // method for the "ForgeFedTicketsTrackedByProperty" non-functional - // property in the vocabulary "ForgeFed" - DeserializeTicketsTrackedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicketsTrackedByProperty, error) - // DeserializeToPropertyActivityStreams returns the deserialization method - // for the "ActivityStreamsToProperty" non-functional property in the - // vocabulary "ActivityStreams" - DeserializeToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsToProperty, error) - // DeserializeTracksTicketsForPropertyForgeFed returns the deserialization - // method for the "ForgeFedTracksTicketsForProperty" non-functional - // property in the vocabulary "ForgeFed" - DeserializeTracksTicketsForPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTracksTicketsForProperty, error) - // DeserializeTypePropertyJSONLD returns the deserialization method for - // the "JSONLDTypeProperty" non-functional property in the vocabulary - // "JSONLD" - DeserializeTypePropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDTypeProperty, error) - // DeserializeUpdatedPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsUpdatedProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeUpdatedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUpdatedProperty, error) - // DeserializeUrlPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsUrlProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeUrlPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUrlProperty, error) -} - -// jsonldContexter is a private interface to determine the JSON-LD contexts and -// aliases needed for functional and non-functional properties. It is a helper -// interface for this implementation. -type jsonldContexter interface { - // JSONLDContext returns the JSONLD URIs required in the context string - // for this property and the specific values that are set. The value - // in the map is the alias used to import the property's value or - // values. - JSONLDContext() map[string]string -} - -// SetManager sets the manager package-global variable. For internal use only, do -// not use as part of Application behavior. Must be called at golang init time. -func SetManager(m privateManager) { - mgr = m -} - -// SetTypePropertyConstructor sets the "type" property's constructor in the -// package-global variable. For internal use only, do not use as part of -// Application behavior. Must be called at golang init time. Permits -// ActivityStreams types to correctly set their "type" property at -// construction time, so users don't have to remember to do so each time. It -// is dependency injected so other go-fed compatible implementations could -// inject their own type. -func SetTypePropertyConstructor(f func() vocab.JSONLDTypeProperty) { - typePropertyConstructor = f -} diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_pkg.go b/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_pkg.go deleted file mode 100644 index a7614d529..000000000 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_pkg.go +++ /dev/null @@ -1,203 +0,0 @@ -// Code generated by astool. DO NOT EDIT. - -package typeintransitiveactivity - -import vocab "github.com/go-fed/activity/streams/vocab" - -var mgr privateManager - -var typePropertyConstructor func() vocab.JSONLDTypeProperty - -// privateManager abstracts the code-generated manager that provides access to -// concrete implementations. -type privateManager interface { - // DeserializeActorPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsActorProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeActorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsActorProperty, error) - // DeserializeAltitudePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsAltitudeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeAltitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAltitudeProperty, error) - // DeserializeAttachmentPropertyActivityStreams returns the - // deserialization method for the "ActivityStreamsAttachmentProperty" - // non-functional property in the vocabulary "ActivityStreams" - DeserializeAttachmentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttachmentProperty, error) - // DeserializeAttributedToPropertyActivityStreams returns the - // deserialization method for the - // "ActivityStreamsAttributedToProperty" non-functional property in - // the vocabulary "ActivityStreams" - DeserializeAttributedToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttributedToProperty, error) - // DeserializeAudiencePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsAudienceProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeAudiencePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAudienceProperty, error) - // DeserializeBccPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsBccProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeBccPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBccProperty, error) - // DeserializeBtoPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsBtoProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeBtoPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBtoProperty, error) - // DeserializeCcPropertyActivityStreams returns the deserialization method - // for the "ActivityStreamsCcProperty" non-functional property in the - // vocabulary "ActivityStreams" - DeserializeCcPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCcProperty, error) - // DeserializeContentPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsContentProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeContentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContentProperty, error) - // DeserializeContextPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsContextProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeContextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContextProperty, error) - // DeserializeDurationPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsDurationProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeDurationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDurationProperty, error) - // DeserializeEndTimePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsEndTimeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error) - // DeserializeGeneratorPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsGeneratorProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeGeneratorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsGeneratorProperty, error) - // DeserializeIconPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsIconProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeIconPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIconProperty, error) - // DeserializeIdPropertyJSONLD returns the deserialization method for the - // "JSONLDIdProperty" non-functional property in the vocabulary - // "JSONLD" - DeserializeIdPropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDIdProperty, error) - // DeserializeImagePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsImageProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeImagePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsImageProperty, error) - // DeserializeInReplyToPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsInReplyToProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeInReplyToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInReplyToProperty, error) - // DeserializeInstrumentPropertyActivityStreams returns the - // deserialization method for the "ActivityStreamsInstrumentProperty" - // non-functional property in the vocabulary "ActivityStreams" - DeserializeInstrumentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInstrumentProperty, error) - // DeserializeLikesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsLikesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeLikesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLikesProperty, error) - // DeserializeLocationPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsLocationProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeLocationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLocationProperty, error) - // DeserializeMediaTypePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsMediaTypeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeMediaTypePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMediaTypeProperty, error) - // DeserializeNamePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsNameProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error) - // DeserializeOriginPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsOriginProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeOriginPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOriginProperty, error) - // DeserializePreviewPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsPreviewProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializePreviewPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPreviewProperty, error) - // DeserializePublishedPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsPublishedProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializePublishedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPublishedProperty, error) - // DeserializeRepliesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsRepliesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) - // DeserializeResultPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsResultProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) - // DeserializeSharesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsSharesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeSharesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSharesProperty, error) - // DeserializeSourcePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsSourceProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeSourcePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSourceProperty, error) - // DeserializeStartTimePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsStartTimeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeStartTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStartTimeProperty, error) - // DeserializeSummaryPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsSummaryProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeSummaryPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSummaryProperty, error) - // DeserializeTagPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsTagProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeTagPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTagProperty, error) - // DeserializeTargetPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsTargetProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeTargetPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTargetProperty, error) - // DeserializeTeamPropertyForgeFed returns the deserialization method for - // the "ForgeFedTeamProperty" non-functional property in the - // vocabulary "ForgeFed" - DeserializeTeamPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTeamProperty, error) - // DeserializeTicketsTrackedByPropertyForgeFed returns the deserialization - // method for the "ForgeFedTicketsTrackedByProperty" non-functional - // property in the vocabulary "ForgeFed" - DeserializeTicketsTrackedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicketsTrackedByProperty, error) - // DeserializeToPropertyActivityStreams returns the deserialization method - // for the "ActivityStreamsToProperty" non-functional property in the - // vocabulary "ActivityStreams" - DeserializeToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsToProperty, error) - // DeserializeTracksTicketsForPropertyForgeFed returns the deserialization - // method for the "ForgeFedTracksTicketsForProperty" non-functional - // property in the vocabulary "ForgeFed" - DeserializeTracksTicketsForPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTracksTicketsForProperty, error) - // DeserializeTypePropertyJSONLD returns the deserialization method for - // the "JSONLDTypeProperty" non-functional property in the vocabulary - // "JSONLD" - DeserializeTypePropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDTypeProperty, error) - // DeserializeUpdatedPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsUpdatedProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeUpdatedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUpdatedProperty, error) - // DeserializeUrlPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsUrlProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeUrlPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUrlProperty, error) -} - -// jsonldContexter is a private interface to determine the JSON-LD contexts and -// aliases needed for functional and non-functional properties. It is a helper -// interface for this implementation. -type jsonldContexter interface { - // JSONLDContext returns the JSONLD URIs required in the context string - // for this property and the specific values that are set. The value - // in the map is the alias used to import the property's value or - // values. - JSONLDContext() map[string]string -} - -// SetManager sets the manager package-global variable. For internal use only, do -// not use as part of Application behavior. Must be called at golang init time. -func SetManager(m privateManager) { - mgr = m -} - -// SetTypePropertyConstructor sets the "type" property's constructor in the -// package-global variable. For internal use only, do not use as part of -// Application behavior. Must be called at golang init time. Permits -// ActivityStreams types to correctly set their "type" property at -// construction time, so users don't have to remember to do so each time. It -// is dependency injected so other go-fed compatible implementations could -// inject their own type. -func SetTypePropertyConstructor(f func() vocab.JSONLDTypeProperty) { - typePropertyConstructor = f -} diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_note/gen_pkg.go b/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_note/gen_pkg.go deleted file mode 100644 index 3ccfdd6a1..000000000 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_note/gen_pkg.go +++ /dev/null @@ -1,187 +0,0 @@ -// Code generated by astool. DO NOT EDIT. - -package typenote - -import vocab "github.com/go-fed/activity/streams/vocab" - -var mgr privateManager - -var typePropertyConstructor func() vocab.JSONLDTypeProperty - -// privateManager abstracts the code-generated manager that provides access to -// concrete implementations. -type privateManager interface { - // DeserializeAltitudePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsAltitudeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeAltitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAltitudeProperty, error) - // DeserializeAttachmentPropertyActivityStreams returns the - // deserialization method for the "ActivityStreamsAttachmentProperty" - // non-functional property in the vocabulary "ActivityStreams" - DeserializeAttachmentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttachmentProperty, error) - // DeserializeAttributedToPropertyActivityStreams returns the - // deserialization method for the - // "ActivityStreamsAttributedToProperty" non-functional property in - // the vocabulary "ActivityStreams" - DeserializeAttributedToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttributedToProperty, error) - // DeserializeAudiencePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsAudienceProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeAudiencePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAudienceProperty, error) - // DeserializeBccPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsBccProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeBccPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBccProperty, error) - // DeserializeBtoPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsBtoProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeBtoPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBtoProperty, error) - // DeserializeCcPropertyActivityStreams returns the deserialization method - // for the "ActivityStreamsCcProperty" non-functional property in the - // vocabulary "ActivityStreams" - DeserializeCcPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCcProperty, error) - // DeserializeContentPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsContentProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeContentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContentProperty, error) - // DeserializeContextPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsContextProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeContextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContextProperty, error) - // DeserializeDurationPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsDurationProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeDurationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDurationProperty, error) - // DeserializeEndTimePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsEndTimeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error) - // DeserializeGeneratorPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsGeneratorProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeGeneratorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsGeneratorProperty, error) - // DeserializeIconPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsIconProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeIconPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIconProperty, error) - // DeserializeIdPropertyJSONLD returns the deserialization method for the - // "JSONLDIdProperty" non-functional property in the vocabulary - // "JSONLD" - DeserializeIdPropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDIdProperty, error) - // DeserializeImagePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsImageProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeImagePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsImageProperty, error) - // DeserializeInReplyToPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsInReplyToProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeInReplyToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInReplyToProperty, error) - // DeserializeLikesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsLikesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeLikesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLikesProperty, error) - // DeserializeLocationPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsLocationProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeLocationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLocationProperty, error) - // DeserializeMediaTypePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsMediaTypeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeMediaTypePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMediaTypeProperty, error) - // DeserializeNamePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsNameProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error) - // DeserializeObjectPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsObjectProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeObjectPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsObjectProperty, error) - // DeserializePreviewPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsPreviewProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializePreviewPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPreviewProperty, error) - // DeserializePublishedPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsPublishedProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializePublishedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPublishedProperty, error) - // DeserializeRepliesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsRepliesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) - // DeserializeSharesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsSharesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeSharesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSharesProperty, error) - // DeserializeSourcePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsSourceProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeSourcePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSourceProperty, error) - // DeserializeStartTimePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsStartTimeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeStartTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStartTimeProperty, error) - // DeserializeSummaryPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsSummaryProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeSummaryPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSummaryProperty, error) - // DeserializeTagPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsTagProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeTagPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTagProperty, error) - // DeserializeTeamPropertyForgeFed returns the deserialization method for - // the "ForgeFedTeamProperty" non-functional property in the - // vocabulary "ForgeFed" - DeserializeTeamPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTeamProperty, error) - // DeserializeTicketsTrackedByPropertyForgeFed returns the deserialization - // method for the "ForgeFedTicketsTrackedByProperty" non-functional - // property in the vocabulary "ForgeFed" - DeserializeTicketsTrackedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicketsTrackedByProperty, error) - // DeserializeToPropertyActivityStreams returns the deserialization method - // for the "ActivityStreamsToProperty" non-functional property in the - // vocabulary "ActivityStreams" - DeserializeToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsToProperty, error) - // DeserializeTracksTicketsForPropertyForgeFed returns the deserialization - // method for the "ForgeFedTracksTicketsForProperty" non-functional - // property in the vocabulary "ForgeFed" - DeserializeTracksTicketsForPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTracksTicketsForProperty, error) - // DeserializeTypePropertyJSONLD returns the deserialization method for - // the "JSONLDTypeProperty" non-functional property in the vocabulary - // "JSONLD" - DeserializeTypePropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDTypeProperty, error) - // DeserializeUpdatedPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsUpdatedProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeUpdatedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUpdatedProperty, error) - // DeserializeUrlPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsUrlProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeUrlPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUrlProperty, error) -} - -// jsonldContexter is a private interface to determine the JSON-LD contexts and -// aliases needed for functional and non-functional properties. It is a helper -// interface for this implementation. -type jsonldContexter interface { - // JSONLDContext returns the JSONLD URIs required in the context string - // for this property and the specific values that are set. The value - // in the map is the alias used to import the property's value or - // values. - JSONLDContext() map[string]string -} - -// SetManager sets the manager package-global variable. For internal use only, do -// not use as part of Application behavior. Must be called at golang init time. -func SetManager(m privateManager) { - mgr = m -} - -// SetTypePropertyConstructor sets the "type" property's constructor in the -// package-global variable. For internal use only, do not use as part of -// Application behavior. Must be called at golang init time. Permits -// ActivityStreams types to correctly set their "type" property at -// construction time, so users don't have to remember to do so each time. It -// is dependency injected so other go-fed compatible implementations could -// inject their own type. -func SetTypePropertyConstructor(f func() vocab.JSONLDTypeProperty) { - typePropertyConstructor = f -} diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_travel/gen_pkg.go b/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_travel/gen_pkg.go deleted file mode 100644 index cae76f278..000000000 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_travel/gen_pkg.go +++ /dev/null @@ -1,203 +0,0 @@ -// Code generated by astool. DO NOT EDIT. - -package typetravel - -import vocab "github.com/go-fed/activity/streams/vocab" - -var mgr privateManager - -var typePropertyConstructor func() vocab.JSONLDTypeProperty - -// privateManager abstracts the code-generated manager that provides access to -// concrete implementations. -type privateManager interface { - // DeserializeActorPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsActorProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeActorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsActorProperty, error) - // DeserializeAltitudePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsAltitudeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeAltitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAltitudeProperty, error) - // DeserializeAttachmentPropertyActivityStreams returns the - // deserialization method for the "ActivityStreamsAttachmentProperty" - // non-functional property in the vocabulary "ActivityStreams" - DeserializeAttachmentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttachmentProperty, error) - // DeserializeAttributedToPropertyActivityStreams returns the - // deserialization method for the - // "ActivityStreamsAttributedToProperty" non-functional property in - // the vocabulary "ActivityStreams" - DeserializeAttributedToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttributedToProperty, error) - // DeserializeAudiencePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsAudienceProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeAudiencePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAudienceProperty, error) - // DeserializeBccPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsBccProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeBccPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBccProperty, error) - // DeserializeBtoPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsBtoProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeBtoPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBtoProperty, error) - // DeserializeCcPropertyActivityStreams returns the deserialization method - // for the "ActivityStreamsCcProperty" non-functional property in the - // vocabulary "ActivityStreams" - DeserializeCcPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCcProperty, error) - // DeserializeContentPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsContentProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeContentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContentProperty, error) - // DeserializeContextPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsContextProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeContextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContextProperty, error) - // DeserializeDurationPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsDurationProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeDurationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDurationProperty, error) - // DeserializeEndTimePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsEndTimeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error) - // DeserializeGeneratorPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsGeneratorProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeGeneratorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsGeneratorProperty, error) - // DeserializeIconPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsIconProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeIconPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIconProperty, error) - // DeserializeIdPropertyJSONLD returns the deserialization method for the - // "JSONLDIdProperty" non-functional property in the vocabulary - // "JSONLD" - DeserializeIdPropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDIdProperty, error) - // DeserializeImagePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsImageProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeImagePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsImageProperty, error) - // DeserializeInReplyToPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsInReplyToProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeInReplyToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInReplyToProperty, error) - // DeserializeInstrumentPropertyActivityStreams returns the - // deserialization method for the "ActivityStreamsInstrumentProperty" - // non-functional property in the vocabulary "ActivityStreams" - DeserializeInstrumentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInstrumentProperty, error) - // DeserializeLikesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsLikesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeLikesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLikesProperty, error) - // DeserializeLocationPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsLocationProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeLocationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLocationProperty, error) - // DeserializeMediaTypePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsMediaTypeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeMediaTypePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMediaTypeProperty, error) - // DeserializeNamePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsNameProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error) - // DeserializeOriginPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsOriginProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeOriginPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOriginProperty, error) - // DeserializePreviewPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsPreviewProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializePreviewPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPreviewProperty, error) - // DeserializePublishedPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsPublishedProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializePublishedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPublishedProperty, error) - // DeserializeRepliesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsRepliesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) - // DeserializeResultPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsResultProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) - // DeserializeSharesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsSharesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeSharesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSharesProperty, error) - // DeserializeSourcePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsSourceProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeSourcePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSourceProperty, error) - // DeserializeStartTimePropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsStartTimeProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeStartTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStartTimeProperty, error) - // DeserializeSummaryPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsSummaryProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeSummaryPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSummaryProperty, error) - // DeserializeTagPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsTagProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeTagPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTagProperty, error) - // DeserializeTargetPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsTargetProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeTargetPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTargetProperty, error) - // DeserializeTeamPropertyForgeFed returns the deserialization method for - // the "ForgeFedTeamProperty" non-functional property in the - // vocabulary "ForgeFed" - DeserializeTeamPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTeamProperty, error) - // DeserializeTicketsTrackedByPropertyForgeFed returns the deserialization - // method for the "ForgeFedTicketsTrackedByProperty" non-functional - // property in the vocabulary "ForgeFed" - DeserializeTicketsTrackedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicketsTrackedByProperty, error) - // DeserializeToPropertyActivityStreams returns the deserialization method - // for the "ActivityStreamsToProperty" non-functional property in the - // vocabulary "ActivityStreams" - DeserializeToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsToProperty, error) - // DeserializeTracksTicketsForPropertyForgeFed returns the deserialization - // method for the "ForgeFedTracksTicketsForProperty" non-functional - // property in the vocabulary "ForgeFed" - DeserializeTracksTicketsForPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTracksTicketsForProperty, error) - // DeserializeTypePropertyJSONLD returns the deserialization method for - // the "JSONLDTypeProperty" non-functional property in the vocabulary - // "JSONLD" - DeserializeTypePropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDTypeProperty, error) - // DeserializeUpdatedPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsUpdatedProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeUpdatedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUpdatedProperty, error) - // DeserializeUrlPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsUrlProperty" non-functional property - // in the vocabulary "ActivityStreams" - DeserializeUrlPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUrlProperty, error) -} - -// jsonldContexter is a private interface to determine the JSON-LD contexts and -// aliases needed for functional and non-functional properties. It is a helper -// interface for this implementation. -type jsonldContexter interface { - // JSONLDContext returns the JSONLD URIs required in the context string - // for this property and the specific values that are set. The value - // in the map is the alias used to import the property's value or - // values. - JSONLDContext() map[string]string -} - -// SetManager sets the manager package-global variable. For internal use only, do -// not use as part of Application behavior. Must be called at golang init time. -func SetManager(m privateManager) { - mgr = m -} - -// SetTypePropertyConstructor sets the "type" property's constructor in the -// package-global variable. For internal use only, do not use as part of -// Application behavior. Must be called at golang init time. Permits -// ActivityStreams types to correctly set their "type" property at -// construction time, so users don't have to remember to do so each time. It -// is dependency injected so other go-fed compatible implementations could -// inject their own type. -func SetTypePropertyConstructor(f func() vocab.JSONLDTypeProperty) { - typePropertyConstructor = f -} diff --git a/vendor/github.com/go-fed/activity/LICENSE b/vendor/github.com/superseriousbusiness/activity/LICENSE similarity index 100% rename from vendor/github.com/go-fed/activity/LICENSE rename to vendor/github.com/superseriousbusiness/activity/LICENSE diff --git a/vendor/github.com/go-fed/activity/pub/README.md b/vendor/github.com/superseriousbusiness/activity/pub/README.md similarity index 99% rename from vendor/github.com/go-fed/activity/pub/README.md rename to vendor/github.com/superseriousbusiness/activity/pub/README.md index dafe176ea..415752a32 100644 --- a/vendor/github.com/go-fed/activity/pub/README.md +++ b/vendor/github.com/superseriousbusiness/activity/pub/README.md @@ -18,7 +18,7 @@ implement a few interfaces: ```golang import ( - "github.com/go-fed/activity/pub" + "github.com/superseriousbusiness/activity/pub" ) type myActivityPubApp struct { /* ... */ } diff --git a/vendor/github.com/go-fed/activity/pub/activity.go b/vendor/github.com/superseriousbusiness/activity/pub/activity.go similarity index 97% rename from vendor/github.com/go-fed/activity/pub/activity.go rename to vendor/github.com/superseriousbusiness/activity/pub/activity.go index 6a1d445af..575b9c5c5 100644 --- a/vendor/github.com/go-fed/activity/pub/activity.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/activity.go @@ -1,7 +1,7 @@ package pub import ( - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/streams/vocab" ) // Activity represents any ActivityStreams Activity type. diff --git a/vendor/github.com/go-fed/activity/pub/actor.go b/vendor/github.com/superseriousbusiness/activity/pub/actor.go similarity index 99% rename from vendor/github.com/go-fed/activity/pub/actor.go rename to vendor/github.com/superseriousbusiness/activity/pub/actor.go index c9cac28b4..2ec0d4021 100644 --- a/vendor/github.com/go-fed/activity/pub/actor.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/actor.go @@ -2,9 +2,10 @@ package pub import ( "context" - "github.com/go-fed/activity/streams/vocab" "net/http" "net/url" + + "github.com/superseriousbusiness/activity/streams/vocab" ) // Actor represents ActivityPub's actor concept. It conceptually has an inbox diff --git a/vendor/github.com/go-fed/activity/pub/base_actor.go b/vendor/github.com/superseriousbusiness/activity/pub/base_actor.go similarity index 99% rename from vendor/github.com/go-fed/activity/pub/base_actor.go rename to vendor/github.com/superseriousbusiness/activity/pub/base_actor.go index 61192c51b..2692a0b0c 100644 --- a/vendor/github.com/go-fed/activity/pub/base_actor.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/base_actor.go @@ -4,11 +4,12 @@ import ( "context" "encoding/json" "fmt" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "io/ioutil" "net/http" "net/url" + + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" ) // baseActor must satisfy the Actor interface. diff --git a/vendor/github.com/go-fed/activity/pub/clock.go b/vendor/github.com/superseriousbusiness/activity/pub/clock.go similarity index 100% rename from vendor/github.com/go-fed/activity/pub/clock.go rename to vendor/github.com/superseriousbusiness/activity/pub/clock.go diff --git a/vendor/github.com/go-fed/activity/pub/common_behavior.go b/vendor/github.com/superseriousbusiness/activity/pub/common_behavior.go similarity index 98% rename from vendor/github.com/go-fed/activity/pub/common_behavior.go rename to vendor/github.com/superseriousbusiness/activity/pub/common_behavior.go index c4a701560..cbe1c2815 100644 --- a/vendor/github.com/go-fed/activity/pub/common_behavior.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/common_behavior.go @@ -2,9 +2,10 @@ package pub import ( "context" - "github.com/go-fed/activity/streams/vocab" "net/http" "net/url" + + "github.com/superseriousbusiness/activity/streams/vocab" ) // Common contains functions required for both the Social API and Federating diff --git a/vendor/github.com/go-fed/activity/pub/database.go b/vendor/github.com/superseriousbusiness/activity/pub/database.go similarity index 93% rename from vendor/github.com/go-fed/activity/pub/database.go rename to vendor/github.com/superseriousbusiness/activity/pub/database.go index 0c2024e6b..1abf98b0d 100644 --- a/vendor/github.com/go-fed/activity/pub/database.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/database.go @@ -2,8 +2,9 @@ package pub import ( "context" - "github.com/go-fed/activity/streams/vocab" "net/url" + + "github.com/superseriousbusiness/activity/streams/vocab" ) type Database interface { @@ -58,6 +59,13 @@ type Database interface { // // The library makes this call only after acquiring a lock first. OutboxForInbox(c context.Context, inboxIRI *url.URL) (outboxIRI *url.URL, err error) + // InboxForActor fetches the inbox corresponding to the given actorIRI. + // + // It is acceptable to just return nil for the inboxIRI. In this case, the library will + // attempt to resolve the inbox of the actor by remote dereferencing instead. + // + // The library makes this call only after acquiring a lock first. + InboxForActor(c context.Context, actorIRI *url.URL) (inboxIRI *url.URL, err error) // Exists returns true if the database has an entry for the specified // id. It may not be owned by this application instance. // diff --git a/vendor/github.com/go-fed/activity/pub/delegate_actor.go b/vendor/github.com/superseriousbusiness/activity/pub/delegate_actor.go similarity index 99% rename from vendor/github.com/go-fed/activity/pub/delegate_actor.go rename to vendor/github.com/superseriousbusiness/activity/pub/delegate_actor.go index 03465abaa..0d40619ae 100644 --- a/vendor/github.com/go-fed/activity/pub/delegate_actor.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/delegate_actor.go @@ -2,9 +2,10 @@ package pub import ( "context" - "github.com/go-fed/activity/streams/vocab" "net/http" "net/url" + + "github.com/superseriousbusiness/activity/streams/vocab" ) // DelegateActor contains the detailed interface an application must satisfy in diff --git a/vendor/github.com/go-fed/activity/pub/doc.go b/vendor/github.com/superseriousbusiness/activity/pub/doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/pub/doc.go rename to vendor/github.com/superseriousbusiness/activity/pub/doc.go diff --git a/vendor/github.com/go-fed/activity/pub/federating_protocol.go b/vendor/github.com/superseriousbusiness/activity/pub/federating_protocol.go similarity index 98% rename from vendor/github.com/go-fed/activity/pub/federating_protocol.go rename to vendor/github.com/superseriousbusiness/activity/pub/federating_protocol.go index edb22bc03..bbf1d629e 100644 --- a/vendor/github.com/go-fed/activity/pub/federating_protocol.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/federating_protocol.go @@ -2,9 +2,10 @@ package pub import ( "context" - "github.com/go-fed/activity/streams/vocab" "net/http" "net/url" + + "github.com/superseriousbusiness/activity/streams/vocab" ) // FederatingProtocol contains behaviors an application needs to satisfy for the diff --git a/vendor/github.com/go-fed/activity/pub/federating_wrapped_callbacks.go b/vendor/github.com/superseriousbusiness/activity/pub/federating_wrapped_callbacks.go similarity index 99% rename from vendor/github.com/go-fed/activity/pub/federating_wrapped_callbacks.go rename to vendor/github.com/superseriousbusiness/activity/pub/federating_wrapped_callbacks.go index a406acb7a..5115d95b1 100644 --- a/vendor/github.com/go-fed/activity/pub/federating_wrapped_callbacks.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/federating_wrapped_callbacks.go @@ -4,9 +4,10 @@ import ( "context" "encoding/json" "fmt" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "net/url" + + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" ) // OnFollowBehavior enumerates the different default actions that the go-fed diff --git a/vendor/github.com/go-fed/activity/pub/handlers.go b/vendor/github.com/superseriousbusiness/activity/pub/handlers.go similarity index 98% rename from vendor/github.com/go-fed/activity/pub/handlers.go rename to vendor/github.com/superseriousbusiness/activity/pub/handlers.go index e77d02569..bc7eeb9d8 100644 --- a/vendor/github.com/go-fed/activity/pub/handlers.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/handlers.go @@ -7,7 +7,7 @@ import ( "fmt" "net/http" - "github.com/go-fed/activity/streams" + "github.com/superseriousbusiness/activity/streams" ) var ErrNotFound = errors.New("go-fed/activity: ActivityStreams data not found") diff --git a/vendor/github.com/go-fed/activity/pub/property_interfaces.go b/vendor/github.com/superseriousbusiness/activity/pub/property_interfaces.go similarity index 98% rename from vendor/github.com/go-fed/activity/pub/property_interfaces.go rename to vendor/github.com/superseriousbusiness/activity/pub/property_interfaces.go index b40134462..00759bb3e 100644 --- a/vendor/github.com/go-fed/activity/pub/property_interfaces.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/property_interfaces.go @@ -1,8 +1,9 @@ package pub import ( - "github.com/go-fed/activity/streams/vocab" "net/url" + + "github.com/superseriousbusiness/activity/streams/vocab" ) // inReplyToer is an ActivityStreams type with an 'inReplyTo' property diff --git a/vendor/github.com/go-fed/activity/pub/side_effect_actor.go b/vendor/github.com/superseriousbusiness/activity/pub/side_effect_actor.go similarity index 92% rename from vendor/github.com/go-fed/activity/pub/side_effect_actor.go rename to vendor/github.com/superseriousbusiness/activity/pub/side_effect_actor.go index c8b5375eb..c58907e3b 100644 --- a/vendor/github.com/go-fed/activity/pub/side_effect_actor.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/side_effect_actor.go @@ -4,10 +4,11 @@ import ( "context" "encoding/json" "fmt" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "net/http" "net/url" + + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" ) // sideEffectActor must satisfy the DelegateActor interface. @@ -676,18 +677,64 @@ func (a *sideEffectActor) prepare(c context.Context, outboxIRI *url.URL, activit // server MAY deliver that object to all known sharedInbox endpoints // on the network. r = filterURLs(r, IsPublic) + + // first check if the implemented database logic can return any inboxes + // from our list of actor IRIs. + foundInboxesFromDB := []*url.URL{} + foundActorsFromDB := []*url.URL{} + for _, actorIRI := range r { + // BEGIN LOCK + err = a.db.Lock(c, actorIRI) + if err != nil { + return + } + + inbox, err := a.db.InboxForActor(c, actorIRI) + if err != nil { + // bail on error + a.db.Unlock(c, actorIRI) + return nil, err + } + if inbox != nil { + // we have a hit + foundInboxesFromDB = append(foundInboxesFromDB, inbox) + foundActorsFromDB = append(foundActorsFromDB, actorIRI) + } + + // END LOCK + a.db.Unlock(c, actorIRI) + if err != nil { + return nil, err + } + } + + // for every actor we found an inbox for in the db, we should + // remove it from the list of actors we still need to dereference + for _, actorIRI := range foundActorsFromDB { + r = removeOne(r, actorIRI) + } + + // look for any actors' inboxes that weren't already discovered above; + // find these by making dereference calls to remote instances t, err := a.common.NewTransport(c, outboxIRI, goFedUserAgent()) if err != nil { return nil, err } - receiverActors, err := a.resolveInboxes(c, t, r, 0, a.s2s.MaxDeliveryRecursionDepth(c)) + foundActorsFromRemote, err := a.resolveActors(c, t, r, 0, a.s2s.MaxDeliveryRecursionDepth(c)) if err != nil { return nil, err } - targets, err := getInboxes(receiverActors) + foundInboxesFromRemote, err := getInboxes(foundActorsFromRemote) if err != nil { return nil, err } + + // combine this list of dereferenced inbox IRIs with the inboxes we already + // found in the db, to make a complete list of target IRIs + targets := []*url.URL{} + targets = append(targets, foundInboxesFromDB...) + targets = append(targets, foundInboxesFromRemote...) + // Get inboxes of sender. err = a.db.Lock(c, outboxIRI) if err != nil { @@ -723,7 +770,7 @@ func (a *sideEffectActor) prepare(c context.Context, outboxIRI *url.URL, activit return r, nil } -// resolveInboxes takes a list of Actor id URIs and returns them as concrete +// resolveActors takes a list of Actor id URIs and returns them as concrete // instances of actorObject. It attempts to apply recursively when it encounters // a target that is a Collection or OrderedCollection. // @@ -733,7 +780,7 @@ func (a *sideEffectActor) prepare(c context.Context, outboxIRI *url.URL, activit // dereference the collection, WITH the user's credentials. // // Note that this also applies to CollectionPage and OrderedCollectionPage. -func (a *sideEffectActor) resolveInboxes(c context.Context, t Transport, r []*url.URL, depth, maxDepth int) (actors []vocab.Type, err error) { +func (a *sideEffectActor) resolveActors(c context.Context, t Transport, r []*url.URL, depth, maxDepth int) (actors []vocab.Type, err error) { if maxDepth > 0 && depth >= maxDepth { return } @@ -748,7 +795,7 @@ func (a *sideEffectActor) resolveInboxes(c context.Context, t Transport, r []*ur continue } var recurActors []vocab.Type - recurActors, err = a.resolveInboxes(c, t, more, depth+1, maxDepth) + recurActors, err = a.resolveActors(c, t, more, depth+1, maxDepth) if err != nil { return } diff --git a/vendor/github.com/go-fed/activity/pub/social_protocol.go b/vendor/github.com/superseriousbusiness/activity/pub/social_protocol.go similarity index 98% rename from vendor/github.com/go-fed/activity/pub/social_protocol.go rename to vendor/github.com/superseriousbusiness/activity/pub/social_protocol.go index 7b7862c66..7947b3e7e 100644 --- a/vendor/github.com/go-fed/activity/pub/social_protocol.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/social_protocol.go @@ -2,8 +2,9 @@ package pub import ( "context" - "github.com/go-fed/activity/streams/vocab" "net/http" + + "github.com/superseriousbusiness/activity/streams/vocab" ) // SocialProtocol contains behaviors an application needs to satisfy for the diff --git a/vendor/github.com/go-fed/activity/pub/social_wrapped_callbacks.go b/vendor/github.com/superseriousbusiness/activity/pub/social_wrapped_callbacks.go similarity index 99% rename from vendor/github.com/go-fed/activity/pub/social_wrapped_callbacks.go rename to vendor/github.com/superseriousbusiness/activity/pub/social_wrapped_callbacks.go index b4b1204e2..a652e337f 100644 --- a/vendor/github.com/go-fed/activity/pub/social_wrapped_callbacks.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/social_wrapped_callbacks.go @@ -3,9 +3,10 @@ package pub import ( "context" "fmt" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "net/url" + + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" ) // SocialWrappedCallbacks lists the callback functions that already have some diff --git a/vendor/github.com/go-fed/activity/pub/transport.go b/vendor/github.com/superseriousbusiness/activity/pub/transport.go similarity index 100% rename from vendor/github.com/go-fed/activity/pub/transport.go rename to vendor/github.com/superseriousbusiness/activity/pub/transport.go diff --git a/vendor/github.com/go-fed/activity/pub/util.go b/vendor/github.com/superseriousbusiness/activity/pub/util.go similarity index 98% rename from vendor/github.com/go-fed/activity/pub/util.go rename to vendor/github.com/superseriousbusiness/activity/pub/util.go index 942e937dc..d8937bba2 100644 --- a/vendor/github.com/go-fed/activity/pub/util.go +++ b/vendor/github.com/superseriousbusiness/activity/pub/util.go @@ -8,12 +8,13 @@ import ( "encoding/json" "errors" "fmt" - "github.com/go-fed/activity/streams" - "github.com/go-fed/activity/streams/vocab" "net/http" "net/url" "strings" "time" + + "github.com/superseriousbusiness/activity/streams" + "github.com/superseriousbusiness/activity/streams/vocab" ) var ( @@ -399,6 +400,16 @@ func dedupeIRIs(recipients, ignored []*url.URL) (out []*url.URL) { return } +// removeOne removes any occurrences of entry from a slice of entries. +func removeOne(entries []*url.URL, entry *url.URL) (out []*url.URL) { + for _, e := range entries { + if e.String() != entry.String() { + out = append(out, e) + } + } + return out +} + // stripHiddenRecipients removes "bto" and "bcc" from the activity. // // Note that this requirement of the specification is under "Section 6: Client diff --git a/vendor/github.com/go-fed/activity/pub/version.go b/vendor/github.com/superseriousbusiness/activity/pub/version.go similarity index 100% rename from vendor/github.com/go-fed/activity/pub/version.go rename to vendor/github.com/superseriousbusiness/activity/pub/version.go diff --git a/vendor/github.com/go-fed/activity/streams/README.md b/vendor/github.com/superseriousbusiness/activity/streams/README.md similarity index 100% rename from vendor/github.com/go-fed/activity/streams/README.md rename to vendor/github.com/superseriousbusiness/activity/streams/README.md diff --git a/vendor/github.com/go-fed/activity/streams/gen_consts.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_consts.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/gen_consts.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_consts.go index 795d0e90c..3466449c5 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_consts.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_consts.go @@ -437,6 +437,9 @@ var ActivityStreamsRepliesPropertyName string = "replies" // ActivityStreamsResultPropertyName is the string literal of the name for the result property in the ActivityStreams vocabulary. var ActivityStreamsResultPropertyName string = "result" +// ActivityStreamsSensitivePropertyName is the string literal of the name for the sensitive property in the ActivityStreams vocabulary. +var ActivityStreamsSensitivePropertyName string = "sensitive" + // ActivityStreamsSharesPropertyName is the string literal of the name for the shares property in the ActivityStreams vocabulary. var ActivityStreamsSharesPropertyName string = "shares" diff --git a/vendor/github.com/go-fed/activity/streams/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_doc.go diff --git a/vendor/github.com/superseriousbusiness/activity/streams/gen_init.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_init.go new file mode 100644 index 000000000..d57db75a2 --- /dev/null +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_init.go @@ -0,0 +1,412 @@ +// Code generated by astool. DO NOT EDIT. + +package streams + +import ( + propertyaccuracy "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_accuracy" + propertyactor "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor" + propertyaltitude "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_altitude" + propertyanyof "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof" + propertyattachment "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment" + propertyattributedto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attributedto" + propertyaudience "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_audience" + propertybcc "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bcc" + propertybto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bto" + propertycc "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_cc" + propertyclosed "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_closed" + propertycontent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_content" + propertycontext "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_context" + propertycurrent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_current" + propertydeleted "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted" + propertydescribes "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes" + propertyduration "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration" + propertyendtime "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime" + propertyfirst "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first" + propertyfollowers "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers" + propertyfollowing "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_following" + propertyformertype "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_formertype" + propertygenerator "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_generator" + propertyheight "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_height" + propertyhref "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_href" + propertyhreflang "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_hreflang" + propertyicon "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_icon" + propertyimage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_image" + propertyinbox "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inbox" + propertyinreplyto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inreplyto" + propertyinstrument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_instrument" + propertyitems "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_items" + propertylast "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_last" + propertylatitude "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_latitude" + propertyliked "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_liked" + propertylikes "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_likes" + propertylocation "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_location" + propertylongitude "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_longitude" + propertymanuallyapprovesfollowers "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers" + propertymediatype "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_mediatype" + propertyname "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_name" + propertynext "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next" + propertyobject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object" + propertyoneof "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_oneof" + propertyordereditems "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_ordereditems" + propertyorigin "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_origin" + propertyoutbox "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_outbox" + propertypartof "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_partof" + propertypreferredusername "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preferredusername" + propertyprev "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_prev" + propertypreview "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preview" + propertypublished "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_published" + propertyradius "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_radius" + propertyrel "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_rel" + propertyrelationship "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_relationship" + propertyreplies "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies" + propertyresult "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result" + propertysensitive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive" + propertyshares "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares" + propertysource "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source" + propertystartindex "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex" + propertystarttime "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_starttime" + propertystreams "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_streams" + propertysubject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_subject" + propertysummary "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_summary" + propertytag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_tag" + propertytarget "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_target" + propertyto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_to" + propertytotalitems "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_totalitems" + propertyunits "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_units" + propertyupdated "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_updated" + propertyurl "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_url" + propertywidth "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_width" + typeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept" + typeactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity" + typeadd "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add" + typeannounce "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce" + typeapplication "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application" + typearrive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive" + typearticle "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article" + typeaudio "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio" + typeblock "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block" + typecollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection" + typecollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage" + typecreate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create" + typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete" + typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike" + typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document" + typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event" + typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag" + typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow" + typegroup "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group" + typeignore "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore" + typeimage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image" + typeintransitiveactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity" + typeinvite "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite" + typejoin "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join" + typeleave "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave" + typelike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like" + typelink "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link" + typelisten "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen" + typemention "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention" + typemove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move" + typenote "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note" + typeobject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object" + typeoffer "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer" + typeorderedcollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection" + typeorderedcollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage" + typeorganization "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization" + typepage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page" + typeperson "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person" + typeplace "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place" + typeprofile "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile" + typequestion "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question" + typeread "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read" + typereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject" + typerelationship "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship" + typeremove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove" + typeservice "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service" + typetentativeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept" + typetentativereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject" + typetombstone "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone" + typetravel "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel" + typeundo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo" + typeupdate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update" + typevideo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video" + typeview "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view" + propertyassignedto "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_assignedto" + propertycommitted "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committed" + propertycommittedby "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committedby" + propertydependants "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependants" + propertydependedby "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependedby" + propertydependencies "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependencies" + propertydependson "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependson" + propertydescription "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_description" + propertyearlyitems "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_earlyitems" + propertyfilesadded "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesadded" + propertyfilesmodified "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesmodified" + propertyfilesremoved "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesremoved" + propertyforks "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_forks" + propertyhash "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_hash" + propertyisresolved "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_isresolved" + propertyref "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ref" + propertyteam "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_team" + propertyticketstrackedby "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ticketstrackedby" + propertytracksticketsfor "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_tracksticketsfor" + typebranch "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch" + typecommit "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit" + typepush "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push" + typerepository "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository" + typeticket "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket" + typeticketdependency "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency" + propertyblurhash "github.com/superseriousbusiness/activity/streams/impl/toot/property_blurhash" + propertydiscoverable "github.com/superseriousbusiness/activity/streams/impl/toot/property_discoverable" + propertyfeatured "github.com/superseriousbusiness/activity/streams/impl/toot/property_featured" + propertysignaturealgorithm "github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturealgorithm" + propertysignaturevalue "github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturevalue" + propertyvoterscount "github.com/superseriousbusiness/activity/streams/impl/toot/property_voterscount" + typeemoji "github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji" + typeidentityproof "github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof" + propertyowner "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_owner" + propertypublickey "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickey" + propertypublickeypem "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickeypem" + typepublickey "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey" +) + +var mgr *Manager + +// init handles the 'magic' of creating a Manager and dependency-injecting it into +// every other code-generated package. This gives the implementations access +// to create any type needed to deserialize, without relying on the other +// specific concrete implementations. In order to replace a go-fed created +// type with your own, be sure to have the manager call your own +// implementation's deserialize functions instead of the built-in type. +// Finally, each implementation views the Manager as an interface with only a +// subset of funcitons available. This means this Manager implements the union +// of those interfaces. +func init() { + mgr = &Manager{} + propertyaccuracy.SetManager(mgr) + propertyactor.SetManager(mgr) + propertyaltitude.SetManager(mgr) + propertyanyof.SetManager(mgr) + propertyattachment.SetManager(mgr) + propertyattributedto.SetManager(mgr) + propertyaudience.SetManager(mgr) + propertybcc.SetManager(mgr) + propertybto.SetManager(mgr) + propertycc.SetManager(mgr) + propertyclosed.SetManager(mgr) + propertycontent.SetManager(mgr) + propertycontext.SetManager(mgr) + propertycurrent.SetManager(mgr) + propertydeleted.SetManager(mgr) + propertydescribes.SetManager(mgr) + propertyduration.SetManager(mgr) + propertyendtime.SetManager(mgr) + propertyfirst.SetManager(mgr) + propertyfollowers.SetManager(mgr) + propertyfollowing.SetManager(mgr) + propertyformertype.SetManager(mgr) + propertygenerator.SetManager(mgr) + propertyheight.SetManager(mgr) + propertyhref.SetManager(mgr) + propertyhreflang.SetManager(mgr) + propertyicon.SetManager(mgr) + propertyimage.SetManager(mgr) + propertyinbox.SetManager(mgr) + propertyinreplyto.SetManager(mgr) + propertyinstrument.SetManager(mgr) + propertyitems.SetManager(mgr) + propertylast.SetManager(mgr) + propertylatitude.SetManager(mgr) + propertyliked.SetManager(mgr) + propertylikes.SetManager(mgr) + propertylocation.SetManager(mgr) + propertylongitude.SetManager(mgr) + propertymanuallyapprovesfollowers.SetManager(mgr) + propertymediatype.SetManager(mgr) + propertyname.SetManager(mgr) + propertynext.SetManager(mgr) + propertyobject.SetManager(mgr) + propertyoneof.SetManager(mgr) + propertyordereditems.SetManager(mgr) + propertyorigin.SetManager(mgr) + propertyoutbox.SetManager(mgr) + propertypartof.SetManager(mgr) + propertypreferredusername.SetManager(mgr) + propertyprev.SetManager(mgr) + propertypreview.SetManager(mgr) + propertypublished.SetManager(mgr) + propertyradius.SetManager(mgr) + propertyrel.SetManager(mgr) + propertyrelationship.SetManager(mgr) + propertyreplies.SetManager(mgr) + propertyresult.SetManager(mgr) + propertysensitive.SetManager(mgr) + propertyshares.SetManager(mgr) + propertysource.SetManager(mgr) + propertystartindex.SetManager(mgr) + propertystarttime.SetManager(mgr) + propertystreams.SetManager(mgr) + propertysubject.SetManager(mgr) + propertysummary.SetManager(mgr) + propertytag.SetManager(mgr) + propertytarget.SetManager(mgr) + propertyto.SetManager(mgr) + propertytotalitems.SetManager(mgr) + propertyunits.SetManager(mgr) + propertyupdated.SetManager(mgr) + propertyurl.SetManager(mgr) + propertywidth.SetManager(mgr) + typeaccept.SetManager(mgr) + typeactivity.SetManager(mgr) + typeadd.SetManager(mgr) + typeannounce.SetManager(mgr) + typeapplication.SetManager(mgr) + typearrive.SetManager(mgr) + typearticle.SetManager(mgr) + typeaudio.SetManager(mgr) + typeblock.SetManager(mgr) + typecollection.SetManager(mgr) + typecollectionpage.SetManager(mgr) + typecreate.SetManager(mgr) + typedelete.SetManager(mgr) + typedislike.SetManager(mgr) + typedocument.SetManager(mgr) + typeevent.SetManager(mgr) + typeflag.SetManager(mgr) + typefollow.SetManager(mgr) + typegroup.SetManager(mgr) + typeignore.SetManager(mgr) + typeimage.SetManager(mgr) + typeintransitiveactivity.SetManager(mgr) + typeinvite.SetManager(mgr) + typejoin.SetManager(mgr) + typeleave.SetManager(mgr) + typelike.SetManager(mgr) + typelink.SetManager(mgr) + typelisten.SetManager(mgr) + typemention.SetManager(mgr) + typemove.SetManager(mgr) + typenote.SetManager(mgr) + typeobject.SetManager(mgr) + typeoffer.SetManager(mgr) + typeorderedcollection.SetManager(mgr) + typeorderedcollectionpage.SetManager(mgr) + typeorganization.SetManager(mgr) + typepage.SetManager(mgr) + typeperson.SetManager(mgr) + typeplace.SetManager(mgr) + typeprofile.SetManager(mgr) + typequestion.SetManager(mgr) + typeread.SetManager(mgr) + typereject.SetManager(mgr) + typerelationship.SetManager(mgr) + typeremove.SetManager(mgr) + typeservice.SetManager(mgr) + typetentativeaccept.SetManager(mgr) + typetentativereject.SetManager(mgr) + typetombstone.SetManager(mgr) + typetravel.SetManager(mgr) + typeundo.SetManager(mgr) + typeupdate.SetManager(mgr) + typevideo.SetManager(mgr) + typeview.SetManager(mgr) + propertyassignedto.SetManager(mgr) + propertycommitted.SetManager(mgr) + propertycommittedby.SetManager(mgr) + propertydependants.SetManager(mgr) + propertydependedby.SetManager(mgr) + propertydependencies.SetManager(mgr) + propertydependson.SetManager(mgr) + propertydescription.SetManager(mgr) + propertyearlyitems.SetManager(mgr) + propertyfilesadded.SetManager(mgr) + propertyfilesmodified.SetManager(mgr) + propertyfilesremoved.SetManager(mgr) + propertyforks.SetManager(mgr) + propertyhash.SetManager(mgr) + propertyisresolved.SetManager(mgr) + propertyref.SetManager(mgr) + propertyteam.SetManager(mgr) + propertyticketstrackedby.SetManager(mgr) + propertytracksticketsfor.SetManager(mgr) + typebranch.SetManager(mgr) + typecommit.SetManager(mgr) + typepush.SetManager(mgr) + typerepository.SetManager(mgr) + typeticket.SetManager(mgr) + typeticketdependency.SetManager(mgr) + propertyblurhash.SetManager(mgr) + propertydiscoverable.SetManager(mgr) + propertyfeatured.SetManager(mgr) + propertysignaturealgorithm.SetManager(mgr) + propertysignaturevalue.SetManager(mgr) + propertyvoterscount.SetManager(mgr) + typeemoji.SetManager(mgr) + typeidentityproof.SetManager(mgr) + propertyowner.SetManager(mgr) + propertypublickey.SetManager(mgr) + propertypublickeypem.SetManager(mgr) + typepublickey.SetManager(mgr) + typeaccept.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeactivity.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeadd.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeannounce.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeapplication.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typearrive.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typearticle.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeaudio.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeblock.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typecollection.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typecollectionpage.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typecreate.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typedelete.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typedislike.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typedocument.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeevent.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeflag.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typefollow.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typegroup.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeignore.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeimage.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeintransitiveactivity.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeinvite.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typejoin.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeleave.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typelike.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typelink.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typelisten.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typemention.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typemove.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typenote.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeobject.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeoffer.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeorderedcollection.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeorderedcollectionpage.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeorganization.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typepage.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeperson.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeplace.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeprofile.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typequestion.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeread.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typereject.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typerelationship.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeremove.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeservice.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typetentativeaccept.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typetentativereject.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typetombstone.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typetravel.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeundo.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeupdate.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typevideo.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeview.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typebranch.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typecommit.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typepush.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typerepository.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeticket.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeticketdependency.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeemoji.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeidentityproof.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typepublickey.SetTypePropertyConstructor(NewJSONLDTypeProperty) +} diff --git a/vendor/github.com/go-fed/activity/streams/gen_json_resolver.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_json_resolver.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/gen_json_resolver.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_json_resolver.go index 0c6773d52..c6f86efb6 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_json_resolver.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_json_resolver.go @@ -6,7 +6,7 @@ import ( "context" "errors" "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) diff --git a/vendor/github.com/go-fed/activity/streams/gen_manager.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_manager.go similarity index 84% rename from vendor/github.com/go-fed/activity/streams/gen_manager.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_manager.go index 0f933e1fd..0512c6752 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_manager.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_manager.go @@ -3,172 +3,173 @@ package streams import ( - propertyaccuracy "github.com/go-fed/activity/streams/impl/activitystreams/property_accuracy" - propertyactor "github.com/go-fed/activity/streams/impl/activitystreams/property_actor" - propertyaltitude "github.com/go-fed/activity/streams/impl/activitystreams/property_altitude" - propertyanyof "github.com/go-fed/activity/streams/impl/activitystreams/property_anyof" - propertyattachment "github.com/go-fed/activity/streams/impl/activitystreams/property_attachment" - propertyattributedto "github.com/go-fed/activity/streams/impl/activitystreams/property_attributedto" - propertyaudience "github.com/go-fed/activity/streams/impl/activitystreams/property_audience" - propertybcc "github.com/go-fed/activity/streams/impl/activitystreams/property_bcc" - propertybto "github.com/go-fed/activity/streams/impl/activitystreams/property_bto" - propertycc "github.com/go-fed/activity/streams/impl/activitystreams/property_cc" - propertyclosed "github.com/go-fed/activity/streams/impl/activitystreams/property_closed" - propertycontent "github.com/go-fed/activity/streams/impl/activitystreams/property_content" - propertycontext "github.com/go-fed/activity/streams/impl/activitystreams/property_context" - propertycurrent "github.com/go-fed/activity/streams/impl/activitystreams/property_current" - propertydeleted "github.com/go-fed/activity/streams/impl/activitystreams/property_deleted" - propertydescribes "github.com/go-fed/activity/streams/impl/activitystreams/property_describes" - propertyduration "github.com/go-fed/activity/streams/impl/activitystreams/property_duration" - propertyendtime "github.com/go-fed/activity/streams/impl/activitystreams/property_endtime" - propertyfirst "github.com/go-fed/activity/streams/impl/activitystreams/property_first" - propertyfollowers "github.com/go-fed/activity/streams/impl/activitystreams/property_followers" - propertyfollowing "github.com/go-fed/activity/streams/impl/activitystreams/property_following" - propertyformertype "github.com/go-fed/activity/streams/impl/activitystreams/property_formertype" - propertygenerator "github.com/go-fed/activity/streams/impl/activitystreams/property_generator" - propertyheight "github.com/go-fed/activity/streams/impl/activitystreams/property_height" - propertyhref "github.com/go-fed/activity/streams/impl/activitystreams/property_href" - propertyhreflang "github.com/go-fed/activity/streams/impl/activitystreams/property_hreflang" - propertyicon "github.com/go-fed/activity/streams/impl/activitystreams/property_icon" - propertyimage "github.com/go-fed/activity/streams/impl/activitystreams/property_image" - propertyinbox "github.com/go-fed/activity/streams/impl/activitystreams/property_inbox" - propertyinreplyto "github.com/go-fed/activity/streams/impl/activitystreams/property_inreplyto" - propertyinstrument "github.com/go-fed/activity/streams/impl/activitystreams/property_instrument" - propertyitems "github.com/go-fed/activity/streams/impl/activitystreams/property_items" - propertylast "github.com/go-fed/activity/streams/impl/activitystreams/property_last" - propertylatitude "github.com/go-fed/activity/streams/impl/activitystreams/property_latitude" - propertyliked "github.com/go-fed/activity/streams/impl/activitystreams/property_liked" - propertylikes "github.com/go-fed/activity/streams/impl/activitystreams/property_likes" - propertylocation "github.com/go-fed/activity/streams/impl/activitystreams/property_location" - propertylongitude "github.com/go-fed/activity/streams/impl/activitystreams/property_longitude" - propertymanuallyapprovesfollowers "github.com/go-fed/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers" - propertymediatype "github.com/go-fed/activity/streams/impl/activitystreams/property_mediatype" - propertyname "github.com/go-fed/activity/streams/impl/activitystreams/property_name" - propertynext "github.com/go-fed/activity/streams/impl/activitystreams/property_next" - propertyobject "github.com/go-fed/activity/streams/impl/activitystreams/property_object" - propertyoneof "github.com/go-fed/activity/streams/impl/activitystreams/property_oneof" - propertyordereditems "github.com/go-fed/activity/streams/impl/activitystreams/property_ordereditems" - propertyorigin "github.com/go-fed/activity/streams/impl/activitystreams/property_origin" - propertyoutbox "github.com/go-fed/activity/streams/impl/activitystreams/property_outbox" - propertypartof "github.com/go-fed/activity/streams/impl/activitystreams/property_partof" - propertypreferredusername "github.com/go-fed/activity/streams/impl/activitystreams/property_preferredusername" - propertyprev "github.com/go-fed/activity/streams/impl/activitystreams/property_prev" - propertypreview "github.com/go-fed/activity/streams/impl/activitystreams/property_preview" - propertypublished "github.com/go-fed/activity/streams/impl/activitystreams/property_published" - propertyradius "github.com/go-fed/activity/streams/impl/activitystreams/property_radius" - propertyrel "github.com/go-fed/activity/streams/impl/activitystreams/property_rel" - propertyrelationship "github.com/go-fed/activity/streams/impl/activitystreams/property_relationship" - propertyreplies "github.com/go-fed/activity/streams/impl/activitystreams/property_replies" - propertyresult "github.com/go-fed/activity/streams/impl/activitystreams/property_result" - propertyshares "github.com/go-fed/activity/streams/impl/activitystreams/property_shares" - propertysource "github.com/go-fed/activity/streams/impl/activitystreams/property_source" - propertystartindex "github.com/go-fed/activity/streams/impl/activitystreams/property_startindex" - propertystarttime "github.com/go-fed/activity/streams/impl/activitystreams/property_starttime" - propertystreams "github.com/go-fed/activity/streams/impl/activitystreams/property_streams" - propertysubject "github.com/go-fed/activity/streams/impl/activitystreams/property_subject" - propertysummary "github.com/go-fed/activity/streams/impl/activitystreams/property_summary" - propertytag "github.com/go-fed/activity/streams/impl/activitystreams/property_tag" - propertytarget "github.com/go-fed/activity/streams/impl/activitystreams/property_target" - propertyto "github.com/go-fed/activity/streams/impl/activitystreams/property_to" - propertytotalitems "github.com/go-fed/activity/streams/impl/activitystreams/property_totalitems" - propertyunits "github.com/go-fed/activity/streams/impl/activitystreams/property_units" - propertyupdated "github.com/go-fed/activity/streams/impl/activitystreams/property_updated" - propertyurl "github.com/go-fed/activity/streams/impl/activitystreams/property_url" - propertywidth "github.com/go-fed/activity/streams/impl/activitystreams/property_width" - typeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_accept" - typeactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_activity" - typeadd "github.com/go-fed/activity/streams/impl/activitystreams/type_add" - typeannounce "github.com/go-fed/activity/streams/impl/activitystreams/type_announce" - typeapplication "github.com/go-fed/activity/streams/impl/activitystreams/type_application" - typearrive "github.com/go-fed/activity/streams/impl/activitystreams/type_arrive" - typearticle "github.com/go-fed/activity/streams/impl/activitystreams/type_article" - typeaudio "github.com/go-fed/activity/streams/impl/activitystreams/type_audio" - typeblock "github.com/go-fed/activity/streams/impl/activitystreams/type_block" - typecollection "github.com/go-fed/activity/streams/impl/activitystreams/type_collection" - typecollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage" - typecreate "github.com/go-fed/activity/streams/impl/activitystreams/type_create" - typedelete "github.com/go-fed/activity/streams/impl/activitystreams/type_delete" - typedislike "github.com/go-fed/activity/streams/impl/activitystreams/type_dislike" - typedocument "github.com/go-fed/activity/streams/impl/activitystreams/type_document" - typeevent "github.com/go-fed/activity/streams/impl/activitystreams/type_event" - typeflag "github.com/go-fed/activity/streams/impl/activitystreams/type_flag" - typefollow "github.com/go-fed/activity/streams/impl/activitystreams/type_follow" - typegroup "github.com/go-fed/activity/streams/impl/activitystreams/type_group" - typeignore "github.com/go-fed/activity/streams/impl/activitystreams/type_ignore" - typeimage "github.com/go-fed/activity/streams/impl/activitystreams/type_image" - typeintransitiveactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity" - typeinvite "github.com/go-fed/activity/streams/impl/activitystreams/type_invite" - typejoin "github.com/go-fed/activity/streams/impl/activitystreams/type_join" - typeleave "github.com/go-fed/activity/streams/impl/activitystreams/type_leave" - typelike "github.com/go-fed/activity/streams/impl/activitystreams/type_like" - typelink "github.com/go-fed/activity/streams/impl/activitystreams/type_link" - typelisten "github.com/go-fed/activity/streams/impl/activitystreams/type_listen" - typemention "github.com/go-fed/activity/streams/impl/activitystreams/type_mention" - typemove "github.com/go-fed/activity/streams/impl/activitystreams/type_move" - typenote "github.com/go-fed/activity/streams/impl/activitystreams/type_note" - typeobject "github.com/go-fed/activity/streams/impl/activitystreams/type_object" - typeoffer "github.com/go-fed/activity/streams/impl/activitystreams/type_offer" - typeorderedcollection "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection" - typeorderedcollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage" - typeorganization "github.com/go-fed/activity/streams/impl/activitystreams/type_organization" - typepage "github.com/go-fed/activity/streams/impl/activitystreams/type_page" - typeperson "github.com/go-fed/activity/streams/impl/activitystreams/type_person" - typeplace "github.com/go-fed/activity/streams/impl/activitystreams/type_place" - typeprofile "github.com/go-fed/activity/streams/impl/activitystreams/type_profile" - typequestion "github.com/go-fed/activity/streams/impl/activitystreams/type_question" - typeread "github.com/go-fed/activity/streams/impl/activitystreams/type_read" - typereject "github.com/go-fed/activity/streams/impl/activitystreams/type_reject" - typerelationship "github.com/go-fed/activity/streams/impl/activitystreams/type_relationship" - typeremove "github.com/go-fed/activity/streams/impl/activitystreams/type_remove" - typeservice "github.com/go-fed/activity/streams/impl/activitystreams/type_service" - typetentativeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept" - typetentativereject "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject" - typetombstone "github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone" - typetravel "github.com/go-fed/activity/streams/impl/activitystreams/type_travel" - typeundo "github.com/go-fed/activity/streams/impl/activitystreams/type_undo" - typeupdate "github.com/go-fed/activity/streams/impl/activitystreams/type_update" - typevideo "github.com/go-fed/activity/streams/impl/activitystreams/type_video" - typeview "github.com/go-fed/activity/streams/impl/activitystreams/type_view" - propertyassignedto "github.com/go-fed/activity/streams/impl/forgefed/property_assignedto" - propertycommitted "github.com/go-fed/activity/streams/impl/forgefed/property_committed" - propertycommittedby "github.com/go-fed/activity/streams/impl/forgefed/property_committedby" - propertydependants "github.com/go-fed/activity/streams/impl/forgefed/property_dependants" - propertydependedby "github.com/go-fed/activity/streams/impl/forgefed/property_dependedby" - propertydependencies "github.com/go-fed/activity/streams/impl/forgefed/property_dependencies" - propertydependson "github.com/go-fed/activity/streams/impl/forgefed/property_dependson" - propertydescription "github.com/go-fed/activity/streams/impl/forgefed/property_description" - propertyearlyitems "github.com/go-fed/activity/streams/impl/forgefed/property_earlyitems" - propertyfilesadded "github.com/go-fed/activity/streams/impl/forgefed/property_filesadded" - propertyfilesmodified "github.com/go-fed/activity/streams/impl/forgefed/property_filesmodified" - propertyfilesremoved "github.com/go-fed/activity/streams/impl/forgefed/property_filesremoved" - propertyforks "github.com/go-fed/activity/streams/impl/forgefed/property_forks" - propertyhash "github.com/go-fed/activity/streams/impl/forgefed/property_hash" - propertyisresolved "github.com/go-fed/activity/streams/impl/forgefed/property_isresolved" - propertyref "github.com/go-fed/activity/streams/impl/forgefed/property_ref" - propertyteam "github.com/go-fed/activity/streams/impl/forgefed/property_team" - propertyticketstrackedby "github.com/go-fed/activity/streams/impl/forgefed/property_ticketstrackedby" - propertytracksticketsfor "github.com/go-fed/activity/streams/impl/forgefed/property_tracksticketsfor" - typebranch "github.com/go-fed/activity/streams/impl/forgefed/type_branch" - typecommit "github.com/go-fed/activity/streams/impl/forgefed/type_commit" - typepush "github.com/go-fed/activity/streams/impl/forgefed/type_push" - typerepository "github.com/go-fed/activity/streams/impl/forgefed/type_repository" - typeticket "github.com/go-fed/activity/streams/impl/forgefed/type_ticket" - typeticketdependency "github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency" - propertyid "github.com/go-fed/activity/streams/impl/jsonld/property_id" - propertytype "github.com/go-fed/activity/streams/impl/jsonld/property_type" - propertyblurhash "github.com/go-fed/activity/streams/impl/toot/property_blurhash" - propertydiscoverable "github.com/go-fed/activity/streams/impl/toot/property_discoverable" - propertyfeatured "github.com/go-fed/activity/streams/impl/toot/property_featured" - propertysignaturealgorithm "github.com/go-fed/activity/streams/impl/toot/property_signaturealgorithm" - propertysignaturevalue "github.com/go-fed/activity/streams/impl/toot/property_signaturevalue" - propertyvoterscount "github.com/go-fed/activity/streams/impl/toot/property_voterscount" - typeemoji "github.com/go-fed/activity/streams/impl/toot/type_emoji" - typeidentityproof "github.com/go-fed/activity/streams/impl/toot/type_identityproof" - propertyowner "github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_owner" - propertypublickey "github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickey" - propertypublickeypem "github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickeypem" - typepublickey "github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey" - vocab "github.com/go-fed/activity/streams/vocab" + propertyaccuracy "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_accuracy" + propertyactor "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor" + propertyaltitude "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_altitude" + propertyanyof "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof" + propertyattachment "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment" + propertyattributedto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attributedto" + propertyaudience "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_audience" + propertybcc "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bcc" + propertybto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bto" + propertycc "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_cc" + propertyclosed "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_closed" + propertycontent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_content" + propertycontext "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_context" + propertycurrent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_current" + propertydeleted "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted" + propertydescribes "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes" + propertyduration "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration" + propertyendtime "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime" + propertyfirst "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first" + propertyfollowers "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers" + propertyfollowing "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_following" + propertyformertype "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_formertype" + propertygenerator "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_generator" + propertyheight "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_height" + propertyhref "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_href" + propertyhreflang "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_hreflang" + propertyicon "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_icon" + propertyimage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_image" + propertyinbox "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inbox" + propertyinreplyto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inreplyto" + propertyinstrument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_instrument" + propertyitems "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_items" + propertylast "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_last" + propertylatitude "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_latitude" + propertyliked "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_liked" + propertylikes "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_likes" + propertylocation "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_location" + propertylongitude "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_longitude" + propertymanuallyapprovesfollowers "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers" + propertymediatype "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_mediatype" + propertyname "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_name" + propertynext "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next" + propertyobject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object" + propertyoneof "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_oneof" + propertyordereditems "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_ordereditems" + propertyorigin "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_origin" + propertyoutbox "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_outbox" + propertypartof "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_partof" + propertypreferredusername "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preferredusername" + propertyprev "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_prev" + propertypreview "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preview" + propertypublished "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_published" + propertyradius "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_radius" + propertyrel "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_rel" + propertyrelationship "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_relationship" + propertyreplies "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies" + propertyresult "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result" + propertysensitive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive" + propertyshares "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares" + propertysource "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source" + propertystartindex "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex" + propertystarttime "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_starttime" + propertystreams "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_streams" + propertysubject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_subject" + propertysummary "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_summary" + propertytag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_tag" + propertytarget "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_target" + propertyto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_to" + propertytotalitems "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_totalitems" + propertyunits "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_units" + propertyupdated "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_updated" + propertyurl "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_url" + propertywidth "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_width" + typeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept" + typeactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity" + typeadd "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add" + typeannounce "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce" + typeapplication "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application" + typearrive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive" + typearticle "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article" + typeaudio "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio" + typeblock "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block" + typecollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection" + typecollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage" + typecreate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create" + typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete" + typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike" + typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document" + typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event" + typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag" + typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow" + typegroup "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group" + typeignore "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore" + typeimage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image" + typeintransitiveactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity" + typeinvite "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite" + typejoin "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join" + typeleave "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave" + typelike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like" + typelink "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link" + typelisten "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen" + typemention "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention" + typemove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move" + typenote "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note" + typeobject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object" + typeoffer "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer" + typeorderedcollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection" + typeorderedcollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage" + typeorganization "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization" + typepage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page" + typeperson "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person" + typeplace "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place" + typeprofile "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile" + typequestion "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question" + typeread "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read" + typereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject" + typerelationship "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship" + typeremove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove" + typeservice "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service" + typetentativeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept" + typetentativereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject" + typetombstone "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone" + typetravel "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel" + typeundo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo" + typeupdate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update" + typevideo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video" + typeview "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view" + propertyassignedto "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_assignedto" + propertycommitted "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committed" + propertycommittedby "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committedby" + propertydependants "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependants" + propertydependedby "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependedby" + propertydependencies "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependencies" + propertydependson "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependson" + propertydescription "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_description" + propertyearlyitems "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_earlyitems" + propertyfilesadded "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesadded" + propertyfilesmodified "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesmodified" + propertyfilesremoved "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesremoved" + propertyforks "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_forks" + propertyhash "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_hash" + propertyisresolved "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_isresolved" + propertyref "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ref" + propertyteam "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_team" + propertyticketstrackedby "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ticketstrackedby" + propertytracksticketsfor "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_tracksticketsfor" + typebranch "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch" + typecommit "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit" + typepush "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push" + typerepository "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository" + typeticket "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket" + typeticketdependency "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency" + propertyid "github.com/superseriousbusiness/activity/streams/impl/jsonld/property_id" + propertytype "github.com/superseriousbusiness/activity/streams/impl/jsonld/property_type" + propertyblurhash "github.com/superseriousbusiness/activity/streams/impl/toot/property_blurhash" + propertydiscoverable "github.com/superseriousbusiness/activity/streams/impl/toot/property_discoverable" + propertyfeatured "github.com/superseriousbusiness/activity/streams/impl/toot/property_featured" + propertysignaturealgorithm "github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturealgorithm" + propertysignaturevalue "github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturevalue" + propertyvoterscount "github.com/superseriousbusiness/activity/streams/impl/toot/property_voterscount" + typeemoji "github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji" + typeidentityproof "github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof" + propertyowner "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_owner" + propertypublickey "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickey" + propertypublickeypem "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickeypem" + typepublickey "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // Manager manages interface types and deserializations for use by generated code. @@ -1881,6 +1882,19 @@ func (this Manager) DeserializeResultPropertyActivityStreams() func(map[string]i } } +// DeserializeSensitivePropertyActivityStreams returns the deserialization method +// for the "ActivityStreamsSensitiveProperty" non-functional property in the +// vocabulary "ActivityStreams" +func (this Manager) DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) { + return func(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) { + i, err := propertysensitive.DeserializeSensitiveProperty(m, aliasMap) + if i == nil { + return nil, err + } + return i, err + } +} + // DeserializeServiceActivityStreams returns the deserialization method for the // "ActivityStreamsService" non-functional property in the vocabulary // "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_disjoint.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_disjoint.go similarity index 69% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_disjoint.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_disjoint.go index d755de119..d0b4d813b 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_disjoint.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_disjoint.go @@ -3,61 +3,61 @@ package streams import ( - typeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_accept" - typeactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_activity" - typeadd "github.com/go-fed/activity/streams/impl/activitystreams/type_add" - typeannounce "github.com/go-fed/activity/streams/impl/activitystreams/type_announce" - typeapplication "github.com/go-fed/activity/streams/impl/activitystreams/type_application" - typearrive "github.com/go-fed/activity/streams/impl/activitystreams/type_arrive" - typearticle "github.com/go-fed/activity/streams/impl/activitystreams/type_article" - typeaudio "github.com/go-fed/activity/streams/impl/activitystreams/type_audio" - typeblock "github.com/go-fed/activity/streams/impl/activitystreams/type_block" - typecollection "github.com/go-fed/activity/streams/impl/activitystreams/type_collection" - typecollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage" - typecreate "github.com/go-fed/activity/streams/impl/activitystreams/type_create" - typedelete "github.com/go-fed/activity/streams/impl/activitystreams/type_delete" - typedislike "github.com/go-fed/activity/streams/impl/activitystreams/type_dislike" - typedocument "github.com/go-fed/activity/streams/impl/activitystreams/type_document" - typeevent "github.com/go-fed/activity/streams/impl/activitystreams/type_event" - typeflag "github.com/go-fed/activity/streams/impl/activitystreams/type_flag" - typefollow "github.com/go-fed/activity/streams/impl/activitystreams/type_follow" - typegroup "github.com/go-fed/activity/streams/impl/activitystreams/type_group" - typeignore "github.com/go-fed/activity/streams/impl/activitystreams/type_ignore" - typeimage "github.com/go-fed/activity/streams/impl/activitystreams/type_image" - typeintransitiveactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity" - typeinvite "github.com/go-fed/activity/streams/impl/activitystreams/type_invite" - typejoin "github.com/go-fed/activity/streams/impl/activitystreams/type_join" - typeleave "github.com/go-fed/activity/streams/impl/activitystreams/type_leave" - typelike "github.com/go-fed/activity/streams/impl/activitystreams/type_like" - typelink "github.com/go-fed/activity/streams/impl/activitystreams/type_link" - typelisten "github.com/go-fed/activity/streams/impl/activitystreams/type_listen" - typemention "github.com/go-fed/activity/streams/impl/activitystreams/type_mention" - typemove "github.com/go-fed/activity/streams/impl/activitystreams/type_move" - typenote "github.com/go-fed/activity/streams/impl/activitystreams/type_note" - typeobject "github.com/go-fed/activity/streams/impl/activitystreams/type_object" - typeoffer "github.com/go-fed/activity/streams/impl/activitystreams/type_offer" - typeorderedcollection "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection" - typeorderedcollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage" - typeorganization "github.com/go-fed/activity/streams/impl/activitystreams/type_organization" - typepage "github.com/go-fed/activity/streams/impl/activitystreams/type_page" - typeperson "github.com/go-fed/activity/streams/impl/activitystreams/type_person" - typeplace "github.com/go-fed/activity/streams/impl/activitystreams/type_place" - typeprofile "github.com/go-fed/activity/streams/impl/activitystreams/type_profile" - typequestion "github.com/go-fed/activity/streams/impl/activitystreams/type_question" - typeread "github.com/go-fed/activity/streams/impl/activitystreams/type_read" - typereject "github.com/go-fed/activity/streams/impl/activitystreams/type_reject" - typerelationship "github.com/go-fed/activity/streams/impl/activitystreams/type_relationship" - typeremove "github.com/go-fed/activity/streams/impl/activitystreams/type_remove" - typeservice "github.com/go-fed/activity/streams/impl/activitystreams/type_service" - typetentativeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept" - typetentativereject "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject" - typetombstone "github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone" - typetravel "github.com/go-fed/activity/streams/impl/activitystreams/type_travel" - typeundo "github.com/go-fed/activity/streams/impl/activitystreams/type_undo" - typeupdate "github.com/go-fed/activity/streams/impl/activitystreams/type_update" - typevideo "github.com/go-fed/activity/streams/impl/activitystreams/type_video" - typeview "github.com/go-fed/activity/streams/impl/activitystreams/type_view" - vocab "github.com/go-fed/activity/streams/vocab" + typeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept" + typeactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity" + typeadd "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add" + typeannounce "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce" + typeapplication "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application" + typearrive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive" + typearticle "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article" + typeaudio "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio" + typeblock "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block" + typecollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection" + typecollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage" + typecreate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create" + typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete" + typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike" + typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document" + typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event" + typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag" + typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow" + typegroup "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group" + typeignore "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore" + typeimage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image" + typeintransitiveactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity" + typeinvite "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite" + typejoin "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join" + typeleave "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave" + typelike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like" + typelink "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link" + typelisten "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen" + typemention "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention" + typemove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move" + typenote "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note" + typeobject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object" + typeoffer "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer" + typeorderedcollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection" + typeorderedcollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage" + typeorganization "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization" + typepage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page" + typeperson "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person" + typeplace "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place" + typeprofile "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile" + typequestion "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question" + typeread "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read" + typereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject" + typerelationship "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship" + typeremove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove" + typeservice "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service" + typetentativeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept" + typetentativereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject" + typetombstone "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone" + typetravel "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel" + typeundo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo" + typeupdate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update" + typevideo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video" + typeview "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // ActivityStreamsAcceptIsDisjointWith returns true if Accept is disjoint with the diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_extendedby.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_extendedby.go similarity index 75% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_extendedby.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_extendedby.go index 735dc8c5e..5be94edec 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_extendedby.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_extendedby.go @@ -3,61 +3,61 @@ package streams import ( - typeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_accept" - typeactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_activity" - typeadd "github.com/go-fed/activity/streams/impl/activitystreams/type_add" - typeannounce "github.com/go-fed/activity/streams/impl/activitystreams/type_announce" - typeapplication "github.com/go-fed/activity/streams/impl/activitystreams/type_application" - typearrive "github.com/go-fed/activity/streams/impl/activitystreams/type_arrive" - typearticle "github.com/go-fed/activity/streams/impl/activitystreams/type_article" - typeaudio "github.com/go-fed/activity/streams/impl/activitystreams/type_audio" - typeblock "github.com/go-fed/activity/streams/impl/activitystreams/type_block" - typecollection "github.com/go-fed/activity/streams/impl/activitystreams/type_collection" - typecollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage" - typecreate "github.com/go-fed/activity/streams/impl/activitystreams/type_create" - typedelete "github.com/go-fed/activity/streams/impl/activitystreams/type_delete" - typedislike "github.com/go-fed/activity/streams/impl/activitystreams/type_dislike" - typedocument "github.com/go-fed/activity/streams/impl/activitystreams/type_document" - typeevent "github.com/go-fed/activity/streams/impl/activitystreams/type_event" - typeflag "github.com/go-fed/activity/streams/impl/activitystreams/type_flag" - typefollow "github.com/go-fed/activity/streams/impl/activitystreams/type_follow" - typegroup "github.com/go-fed/activity/streams/impl/activitystreams/type_group" - typeignore "github.com/go-fed/activity/streams/impl/activitystreams/type_ignore" - typeimage "github.com/go-fed/activity/streams/impl/activitystreams/type_image" - typeintransitiveactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity" - typeinvite "github.com/go-fed/activity/streams/impl/activitystreams/type_invite" - typejoin "github.com/go-fed/activity/streams/impl/activitystreams/type_join" - typeleave "github.com/go-fed/activity/streams/impl/activitystreams/type_leave" - typelike "github.com/go-fed/activity/streams/impl/activitystreams/type_like" - typelink "github.com/go-fed/activity/streams/impl/activitystreams/type_link" - typelisten "github.com/go-fed/activity/streams/impl/activitystreams/type_listen" - typemention "github.com/go-fed/activity/streams/impl/activitystreams/type_mention" - typemove "github.com/go-fed/activity/streams/impl/activitystreams/type_move" - typenote "github.com/go-fed/activity/streams/impl/activitystreams/type_note" - typeobject "github.com/go-fed/activity/streams/impl/activitystreams/type_object" - typeoffer "github.com/go-fed/activity/streams/impl/activitystreams/type_offer" - typeorderedcollection "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection" - typeorderedcollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage" - typeorganization "github.com/go-fed/activity/streams/impl/activitystreams/type_organization" - typepage "github.com/go-fed/activity/streams/impl/activitystreams/type_page" - typeperson "github.com/go-fed/activity/streams/impl/activitystreams/type_person" - typeplace "github.com/go-fed/activity/streams/impl/activitystreams/type_place" - typeprofile "github.com/go-fed/activity/streams/impl/activitystreams/type_profile" - typequestion "github.com/go-fed/activity/streams/impl/activitystreams/type_question" - typeread "github.com/go-fed/activity/streams/impl/activitystreams/type_read" - typereject "github.com/go-fed/activity/streams/impl/activitystreams/type_reject" - typerelationship "github.com/go-fed/activity/streams/impl/activitystreams/type_relationship" - typeremove "github.com/go-fed/activity/streams/impl/activitystreams/type_remove" - typeservice "github.com/go-fed/activity/streams/impl/activitystreams/type_service" - typetentativeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept" - typetentativereject "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject" - typetombstone "github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone" - typetravel "github.com/go-fed/activity/streams/impl/activitystreams/type_travel" - typeundo "github.com/go-fed/activity/streams/impl/activitystreams/type_undo" - typeupdate "github.com/go-fed/activity/streams/impl/activitystreams/type_update" - typevideo "github.com/go-fed/activity/streams/impl/activitystreams/type_video" - typeview "github.com/go-fed/activity/streams/impl/activitystreams/type_view" - vocab "github.com/go-fed/activity/streams/vocab" + typeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept" + typeactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity" + typeadd "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add" + typeannounce "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce" + typeapplication "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application" + typearrive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive" + typearticle "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article" + typeaudio "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio" + typeblock "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block" + typecollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection" + typecollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage" + typecreate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create" + typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete" + typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike" + typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document" + typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event" + typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag" + typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow" + typegroup "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group" + typeignore "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore" + typeimage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image" + typeintransitiveactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity" + typeinvite "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite" + typejoin "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join" + typeleave "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave" + typelike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like" + typelink "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link" + typelisten "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen" + typemention "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention" + typemove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move" + typenote "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note" + typeobject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object" + typeoffer "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer" + typeorderedcollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection" + typeorderedcollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage" + typeorganization "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization" + typepage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page" + typeperson "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person" + typeplace "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place" + typeprofile "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile" + typequestion "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question" + typeread "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read" + typereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject" + typerelationship "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship" + typeremove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove" + typeservice "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service" + typetentativeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept" + typetentativereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject" + typetombstone "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone" + typetravel "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel" + typeundo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo" + typeupdate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update" + typevideo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video" + typeview "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // ActivityStreamsAcceptIsExtendedBy returns true if the other's type extends from diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_extends.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_extends.go similarity index 70% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_extends.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_extends.go index 381066e63..991ec9deb 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_extends.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_extends.go @@ -3,61 +3,61 @@ package streams import ( - typeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_accept" - typeactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_activity" - typeadd "github.com/go-fed/activity/streams/impl/activitystreams/type_add" - typeannounce "github.com/go-fed/activity/streams/impl/activitystreams/type_announce" - typeapplication "github.com/go-fed/activity/streams/impl/activitystreams/type_application" - typearrive "github.com/go-fed/activity/streams/impl/activitystreams/type_arrive" - typearticle "github.com/go-fed/activity/streams/impl/activitystreams/type_article" - typeaudio "github.com/go-fed/activity/streams/impl/activitystreams/type_audio" - typeblock "github.com/go-fed/activity/streams/impl/activitystreams/type_block" - typecollection "github.com/go-fed/activity/streams/impl/activitystreams/type_collection" - typecollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage" - typecreate "github.com/go-fed/activity/streams/impl/activitystreams/type_create" - typedelete "github.com/go-fed/activity/streams/impl/activitystreams/type_delete" - typedislike "github.com/go-fed/activity/streams/impl/activitystreams/type_dislike" - typedocument "github.com/go-fed/activity/streams/impl/activitystreams/type_document" - typeevent "github.com/go-fed/activity/streams/impl/activitystreams/type_event" - typeflag "github.com/go-fed/activity/streams/impl/activitystreams/type_flag" - typefollow "github.com/go-fed/activity/streams/impl/activitystreams/type_follow" - typegroup "github.com/go-fed/activity/streams/impl/activitystreams/type_group" - typeignore "github.com/go-fed/activity/streams/impl/activitystreams/type_ignore" - typeimage "github.com/go-fed/activity/streams/impl/activitystreams/type_image" - typeintransitiveactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity" - typeinvite "github.com/go-fed/activity/streams/impl/activitystreams/type_invite" - typejoin "github.com/go-fed/activity/streams/impl/activitystreams/type_join" - typeleave "github.com/go-fed/activity/streams/impl/activitystreams/type_leave" - typelike "github.com/go-fed/activity/streams/impl/activitystreams/type_like" - typelink "github.com/go-fed/activity/streams/impl/activitystreams/type_link" - typelisten "github.com/go-fed/activity/streams/impl/activitystreams/type_listen" - typemention "github.com/go-fed/activity/streams/impl/activitystreams/type_mention" - typemove "github.com/go-fed/activity/streams/impl/activitystreams/type_move" - typenote "github.com/go-fed/activity/streams/impl/activitystreams/type_note" - typeobject "github.com/go-fed/activity/streams/impl/activitystreams/type_object" - typeoffer "github.com/go-fed/activity/streams/impl/activitystreams/type_offer" - typeorderedcollection "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection" - typeorderedcollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage" - typeorganization "github.com/go-fed/activity/streams/impl/activitystreams/type_organization" - typepage "github.com/go-fed/activity/streams/impl/activitystreams/type_page" - typeperson "github.com/go-fed/activity/streams/impl/activitystreams/type_person" - typeplace "github.com/go-fed/activity/streams/impl/activitystreams/type_place" - typeprofile "github.com/go-fed/activity/streams/impl/activitystreams/type_profile" - typequestion "github.com/go-fed/activity/streams/impl/activitystreams/type_question" - typeread "github.com/go-fed/activity/streams/impl/activitystreams/type_read" - typereject "github.com/go-fed/activity/streams/impl/activitystreams/type_reject" - typerelationship "github.com/go-fed/activity/streams/impl/activitystreams/type_relationship" - typeremove "github.com/go-fed/activity/streams/impl/activitystreams/type_remove" - typeservice "github.com/go-fed/activity/streams/impl/activitystreams/type_service" - typetentativeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept" - typetentativereject "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject" - typetombstone "github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone" - typetravel "github.com/go-fed/activity/streams/impl/activitystreams/type_travel" - typeundo "github.com/go-fed/activity/streams/impl/activitystreams/type_undo" - typeupdate "github.com/go-fed/activity/streams/impl/activitystreams/type_update" - typevideo "github.com/go-fed/activity/streams/impl/activitystreams/type_video" - typeview "github.com/go-fed/activity/streams/impl/activitystreams/type_view" - vocab "github.com/go-fed/activity/streams/vocab" + typeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept" + typeactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity" + typeadd "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add" + typeannounce "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce" + typeapplication "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application" + typearrive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive" + typearticle "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article" + typeaudio "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio" + typeblock "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block" + typecollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection" + typecollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage" + typecreate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create" + typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete" + typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike" + typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document" + typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event" + typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag" + typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow" + typegroup "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group" + typeignore "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore" + typeimage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image" + typeintransitiveactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity" + typeinvite "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite" + typejoin "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join" + typeleave "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave" + typelike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like" + typelink "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link" + typelisten "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen" + typemention "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention" + typemove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move" + typenote "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note" + typeobject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object" + typeoffer "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer" + typeorderedcollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection" + typeorderedcollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage" + typeorganization "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization" + typepage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page" + typeperson "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person" + typeplace "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place" + typeprofile "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile" + typequestion "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question" + typeread "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read" + typereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject" + typerelationship "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship" + typeremove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove" + typeservice "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service" + typetentativeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept" + typetentativereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject" + typetombstone "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone" + typetravel "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel" + typeundo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo" + typeupdate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update" + typevideo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video" + typeview "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // ActivityStreamsActivityStreamsAcceptExtends returns true if Accept extends from diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_isorextends.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_isorextends.go similarity index 71% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_isorextends.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_isorextends.go index f748c26e6..5c4b2443b 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_isorextends.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_isorextends.go @@ -3,61 +3,61 @@ package streams import ( - typeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_accept" - typeactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_activity" - typeadd "github.com/go-fed/activity/streams/impl/activitystreams/type_add" - typeannounce "github.com/go-fed/activity/streams/impl/activitystreams/type_announce" - typeapplication "github.com/go-fed/activity/streams/impl/activitystreams/type_application" - typearrive "github.com/go-fed/activity/streams/impl/activitystreams/type_arrive" - typearticle "github.com/go-fed/activity/streams/impl/activitystreams/type_article" - typeaudio "github.com/go-fed/activity/streams/impl/activitystreams/type_audio" - typeblock "github.com/go-fed/activity/streams/impl/activitystreams/type_block" - typecollection "github.com/go-fed/activity/streams/impl/activitystreams/type_collection" - typecollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage" - typecreate "github.com/go-fed/activity/streams/impl/activitystreams/type_create" - typedelete "github.com/go-fed/activity/streams/impl/activitystreams/type_delete" - typedislike "github.com/go-fed/activity/streams/impl/activitystreams/type_dislike" - typedocument "github.com/go-fed/activity/streams/impl/activitystreams/type_document" - typeevent "github.com/go-fed/activity/streams/impl/activitystreams/type_event" - typeflag "github.com/go-fed/activity/streams/impl/activitystreams/type_flag" - typefollow "github.com/go-fed/activity/streams/impl/activitystreams/type_follow" - typegroup "github.com/go-fed/activity/streams/impl/activitystreams/type_group" - typeignore "github.com/go-fed/activity/streams/impl/activitystreams/type_ignore" - typeimage "github.com/go-fed/activity/streams/impl/activitystreams/type_image" - typeintransitiveactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity" - typeinvite "github.com/go-fed/activity/streams/impl/activitystreams/type_invite" - typejoin "github.com/go-fed/activity/streams/impl/activitystreams/type_join" - typeleave "github.com/go-fed/activity/streams/impl/activitystreams/type_leave" - typelike "github.com/go-fed/activity/streams/impl/activitystreams/type_like" - typelink "github.com/go-fed/activity/streams/impl/activitystreams/type_link" - typelisten "github.com/go-fed/activity/streams/impl/activitystreams/type_listen" - typemention "github.com/go-fed/activity/streams/impl/activitystreams/type_mention" - typemove "github.com/go-fed/activity/streams/impl/activitystreams/type_move" - typenote "github.com/go-fed/activity/streams/impl/activitystreams/type_note" - typeobject "github.com/go-fed/activity/streams/impl/activitystreams/type_object" - typeoffer "github.com/go-fed/activity/streams/impl/activitystreams/type_offer" - typeorderedcollection "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection" - typeorderedcollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage" - typeorganization "github.com/go-fed/activity/streams/impl/activitystreams/type_organization" - typepage "github.com/go-fed/activity/streams/impl/activitystreams/type_page" - typeperson "github.com/go-fed/activity/streams/impl/activitystreams/type_person" - typeplace "github.com/go-fed/activity/streams/impl/activitystreams/type_place" - typeprofile "github.com/go-fed/activity/streams/impl/activitystreams/type_profile" - typequestion "github.com/go-fed/activity/streams/impl/activitystreams/type_question" - typeread "github.com/go-fed/activity/streams/impl/activitystreams/type_read" - typereject "github.com/go-fed/activity/streams/impl/activitystreams/type_reject" - typerelationship "github.com/go-fed/activity/streams/impl/activitystreams/type_relationship" - typeremove "github.com/go-fed/activity/streams/impl/activitystreams/type_remove" - typeservice "github.com/go-fed/activity/streams/impl/activitystreams/type_service" - typetentativeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept" - typetentativereject "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject" - typetombstone "github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone" - typetravel "github.com/go-fed/activity/streams/impl/activitystreams/type_travel" - typeundo "github.com/go-fed/activity/streams/impl/activitystreams/type_undo" - typeupdate "github.com/go-fed/activity/streams/impl/activitystreams/type_update" - typevideo "github.com/go-fed/activity/streams/impl/activitystreams/type_video" - typeview "github.com/go-fed/activity/streams/impl/activitystreams/type_view" - vocab "github.com/go-fed/activity/streams/vocab" + typeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept" + typeactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity" + typeadd "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add" + typeannounce "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce" + typeapplication "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application" + typearrive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive" + typearticle "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article" + typeaudio "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio" + typeblock "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block" + typecollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection" + typecollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage" + typecreate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create" + typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete" + typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike" + typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document" + typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event" + typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag" + typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow" + typegroup "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group" + typeignore "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore" + typeimage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image" + typeintransitiveactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity" + typeinvite "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite" + typejoin "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join" + typeleave "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave" + typelike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like" + typelink "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link" + typelisten "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen" + typemention "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention" + typemove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move" + typenote "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note" + typeobject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object" + typeoffer "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer" + typeorderedcollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection" + typeorderedcollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage" + typeorganization "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization" + typepage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page" + typeperson "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person" + typeplace "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place" + typeprofile "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile" + typequestion "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question" + typeread "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read" + typereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject" + typerelationship "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship" + typeremove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove" + typeservice "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service" + typetentativeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept" + typetentativereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject" + typetombstone "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone" + typetravel "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel" + typeundo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo" + typeupdate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update" + typevideo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video" + typeview "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // IsOrExtendsActivityStreamsAccept returns true if the other provided type is the diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_property_constructors.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_property_constructors.go similarity index 68% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_property_constructors.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_property_constructors.go index 07e3dd705..d7d91e589 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_property_constructors.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_property_constructors.go @@ -3,79 +3,80 @@ package streams import ( - propertyaccuracy "github.com/go-fed/activity/streams/impl/activitystreams/property_accuracy" - propertyactor "github.com/go-fed/activity/streams/impl/activitystreams/property_actor" - propertyaltitude "github.com/go-fed/activity/streams/impl/activitystreams/property_altitude" - propertyanyof "github.com/go-fed/activity/streams/impl/activitystreams/property_anyof" - propertyattachment "github.com/go-fed/activity/streams/impl/activitystreams/property_attachment" - propertyattributedto "github.com/go-fed/activity/streams/impl/activitystreams/property_attributedto" - propertyaudience "github.com/go-fed/activity/streams/impl/activitystreams/property_audience" - propertybcc "github.com/go-fed/activity/streams/impl/activitystreams/property_bcc" - propertybto "github.com/go-fed/activity/streams/impl/activitystreams/property_bto" - propertycc "github.com/go-fed/activity/streams/impl/activitystreams/property_cc" - propertyclosed "github.com/go-fed/activity/streams/impl/activitystreams/property_closed" - propertycontent "github.com/go-fed/activity/streams/impl/activitystreams/property_content" - propertycontext "github.com/go-fed/activity/streams/impl/activitystreams/property_context" - propertycurrent "github.com/go-fed/activity/streams/impl/activitystreams/property_current" - propertydeleted "github.com/go-fed/activity/streams/impl/activitystreams/property_deleted" - propertydescribes "github.com/go-fed/activity/streams/impl/activitystreams/property_describes" - propertyduration "github.com/go-fed/activity/streams/impl/activitystreams/property_duration" - propertyendtime "github.com/go-fed/activity/streams/impl/activitystreams/property_endtime" - propertyfirst "github.com/go-fed/activity/streams/impl/activitystreams/property_first" - propertyfollowers "github.com/go-fed/activity/streams/impl/activitystreams/property_followers" - propertyfollowing "github.com/go-fed/activity/streams/impl/activitystreams/property_following" - propertyformertype "github.com/go-fed/activity/streams/impl/activitystreams/property_formertype" - propertygenerator "github.com/go-fed/activity/streams/impl/activitystreams/property_generator" - propertyheight "github.com/go-fed/activity/streams/impl/activitystreams/property_height" - propertyhref "github.com/go-fed/activity/streams/impl/activitystreams/property_href" - propertyhreflang "github.com/go-fed/activity/streams/impl/activitystreams/property_hreflang" - propertyicon "github.com/go-fed/activity/streams/impl/activitystreams/property_icon" - propertyimage "github.com/go-fed/activity/streams/impl/activitystreams/property_image" - propertyinbox "github.com/go-fed/activity/streams/impl/activitystreams/property_inbox" - propertyinreplyto "github.com/go-fed/activity/streams/impl/activitystreams/property_inreplyto" - propertyinstrument "github.com/go-fed/activity/streams/impl/activitystreams/property_instrument" - propertyitems "github.com/go-fed/activity/streams/impl/activitystreams/property_items" - propertylast "github.com/go-fed/activity/streams/impl/activitystreams/property_last" - propertylatitude "github.com/go-fed/activity/streams/impl/activitystreams/property_latitude" - propertyliked "github.com/go-fed/activity/streams/impl/activitystreams/property_liked" - propertylikes "github.com/go-fed/activity/streams/impl/activitystreams/property_likes" - propertylocation "github.com/go-fed/activity/streams/impl/activitystreams/property_location" - propertylongitude "github.com/go-fed/activity/streams/impl/activitystreams/property_longitude" - propertymanuallyapprovesfollowers "github.com/go-fed/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers" - propertymediatype "github.com/go-fed/activity/streams/impl/activitystreams/property_mediatype" - propertyname "github.com/go-fed/activity/streams/impl/activitystreams/property_name" - propertynext "github.com/go-fed/activity/streams/impl/activitystreams/property_next" - propertyobject "github.com/go-fed/activity/streams/impl/activitystreams/property_object" - propertyoneof "github.com/go-fed/activity/streams/impl/activitystreams/property_oneof" - propertyordereditems "github.com/go-fed/activity/streams/impl/activitystreams/property_ordereditems" - propertyorigin "github.com/go-fed/activity/streams/impl/activitystreams/property_origin" - propertyoutbox "github.com/go-fed/activity/streams/impl/activitystreams/property_outbox" - propertypartof "github.com/go-fed/activity/streams/impl/activitystreams/property_partof" - propertypreferredusername "github.com/go-fed/activity/streams/impl/activitystreams/property_preferredusername" - propertyprev "github.com/go-fed/activity/streams/impl/activitystreams/property_prev" - propertypreview "github.com/go-fed/activity/streams/impl/activitystreams/property_preview" - propertypublished "github.com/go-fed/activity/streams/impl/activitystreams/property_published" - propertyradius "github.com/go-fed/activity/streams/impl/activitystreams/property_radius" - propertyrel "github.com/go-fed/activity/streams/impl/activitystreams/property_rel" - propertyrelationship "github.com/go-fed/activity/streams/impl/activitystreams/property_relationship" - propertyreplies "github.com/go-fed/activity/streams/impl/activitystreams/property_replies" - propertyresult "github.com/go-fed/activity/streams/impl/activitystreams/property_result" - propertyshares "github.com/go-fed/activity/streams/impl/activitystreams/property_shares" - propertysource "github.com/go-fed/activity/streams/impl/activitystreams/property_source" - propertystartindex "github.com/go-fed/activity/streams/impl/activitystreams/property_startindex" - propertystarttime "github.com/go-fed/activity/streams/impl/activitystreams/property_starttime" - propertystreams "github.com/go-fed/activity/streams/impl/activitystreams/property_streams" - propertysubject "github.com/go-fed/activity/streams/impl/activitystreams/property_subject" - propertysummary "github.com/go-fed/activity/streams/impl/activitystreams/property_summary" - propertytag "github.com/go-fed/activity/streams/impl/activitystreams/property_tag" - propertytarget "github.com/go-fed/activity/streams/impl/activitystreams/property_target" - propertyto "github.com/go-fed/activity/streams/impl/activitystreams/property_to" - propertytotalitems "github.com/go-fed/activity/streams/impl/activitystreams/property_totalitems" - propertyunits "github.com/go-fed/activity/streams/impl/activitystreams/property_units" - propertyupdated "github.com/go-fed/activity/streams/impl/activitystreams/property_updated" - propertyurl "github.com/go-fed/activity/streams/impl/activitystreams/property_url" - propertywidth "github.com/go-fed/activity/streams/impl/activitystreams/property_width" - vocab "github.com/go-fed/activity/streams/vocab" + propertyaccuracy "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_accuracy" + propertyactor "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor" + propertyaltitude "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_altitude" + propertyanyof "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof" + propertyattachment "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment" + propertyattributedto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attributedto" + propertyaudience "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_audience" + propertybcc "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bcc" + propertybto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bto" + propertycc "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_cc" + propertyclosed "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_closed" + propertycontent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_content" + propertycontext "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_context" + propertycurrent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_current" + propertydeleted "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted" + propertydescribes "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes" + propertyduration "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration" + propertyendtime "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime" + propertyfirst "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first" + propertyfollowers "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers" + propertyfollowing "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_following" + propertyformertype "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_formertype" + propertygenerator "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_generator" + propertyheight "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_height" + propertyhref "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_href" + propertyhreflang "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_hreflang" + propertyicon "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_icon" + propertyimage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_image" + propertyinbox "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inbox" + propertyinreplyto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inreplyto" + propertyinstrument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_instrument" + propertyitems "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_items" + propertylast "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_last" + propertylatitude "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_latitude" + propertyliked "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_liked" + propertylikes "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_likes" + propertylocation "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_location" + propertylongitude "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_longitude" + propertymanuallyapprovesfollowers "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers" + propertymediatype "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_mediatype" + propertyname "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_name" + propertynext "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next" + propertyobject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object" + propertyoneof "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_oneof" + propertyordereditems "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_ordereditems" + propertyorigin "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_origin" + propertyoutbox "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_outbox" + propertypartof "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_partof" + propertypreferredusername "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preferredusername" + propertyprev "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_prev" + propertypreview "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preview" + propertypublished "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_published" + propertyradius "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_radius" + propertyrel "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_rel" + propertyrelationship "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_relationship" + propertyreplies "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies" + propertyresult "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result" + propertysensitive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive" + propertyshares "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares" + propertysource "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source" + propertystartindex "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex" + propertystarttime "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_starttime" + propertystreams "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_streams" + propertysubject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_subject" + propertysummary "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_summary" + propertytag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_tag" + propertytarget "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_target" + propertyto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_to" + propertytotalitems "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_totalitems" + propertyunits "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_units" + propertyupdated "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_updated" + propertyurl "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_url" + propertywidth "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_width" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // NewActivityStreamsActivityStreamsAccuracyProperty creates a new @@ -420,6 +421,12 @@ func NewActivityStreamsResultProperty() vocab.ActivityStreamsResultProperty { return propertyresult.NewActivityStreamsResultProperty() } +// NewActivityStreamsActivityStreamsSensitiveProperty creates a new +// ActivityStreamsSensitiveProperty +func NewActivityStreamsSensitiveProperty() vocab.ActivityStreamsSensitiveProperty { + return propertysensitive.NewActivityStreamsSensitiveProperty() +} + // NewActivityStreamsActivityStreamsSharesProperty creates a new // ActivityStreamsSharesProperty func NewActivityStreamsSharesProperty() vocab.ActivityStreamsSharesProperty { diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_type_constructors.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_type_constructors.go similarity index 64% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_type_constructors.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_type_constructors.go index e22d1c16a..f2dbe39f8 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_activitystreams_type_constructors.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_activitystreams_type_constructors.go @@ -3,61 +3,61 @@ package streams import ( - typeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_accept" - typeactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_activity" - typeadd "github.com/go-fed/activity/streams/impl/activitystreams/type_add" - typeannounce "github.com/go-fed/activity/streams/impl/activitystreams/type_announce" - typeapplication "github.com/go-fed/activity/streams/impl/activitystreams/type_application" - typearrive "github.com/go-fed/activity/streams/impl/activitystreams/type_arrive" - typearticle "github.com/go-fed/activity/streams/impl/activitystreams/type_article" - typeaudio "github.com/go-fed/activity/streams/impl/activitystreams/type_audio" - typeblock "github.com/go-fed/activity/streams/impl/activitystreams/type_block" - typecollection "github.com/go-fed/activity/streams/impl/activitystreams/type_collection" - typecollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage" - typecreate "github.com/go-fed/activity/streams/impl/activitystreams/type_create" - typedelete "github.com/go-fed/activity/streams/impl/activitystreams/type_delete" - typedislike "github.com/go-fed/activity/streams/impl/activitystreams/type_dislike" - typedocument "github.com/go-fed/activity/streams/impl/activitystreams/type_document" - typeevent "github.com/go-fed/activity/streams/impl/activitystreams/type_event" - typeflag "github.com/go-fed/activity/streams/impl/activitystreams/type_flag" - typefollow "github.com/go-fed/activity/streams/impl/activitystreams/type_follow" - typegroup "github.com/go-fed/activity/streams/impl/activitystreams/type_group" - typeignore "github.com/go-fed/activity/streams/impl/activitystreams/type_ignore" - typeimage "github.com/go-fed/activity/streams/impl/activitystreams/type_image" - typeintransitiveactivity "github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity" - typeinvite "github.com/go-fed/activity/streams/impl/activitystreams/type_invite" - typejoin "github.com/go-fed/activity/streams/impl/activitystreams/type_join" - typeleave "github.com/go-fed/activity/streams/impl/activitystreams/type_leave" - typelike "github.com/go-fed/activity/streams/impl/activitystreams/type_like" - typelink "github.com/go-fed/activity/streams/impl/activitystreams/type_link" - typelisten "github.com/go-fed/activity/streams/impl/activitystreams/type_listen" - typemention "github.com/go-fed/activity/streams/impl/activitystreams/type_mention" - typemove "github.com/go-fed/activity/streams/impl/activitystreams/type_move" - typenote "github.com/go-fed/activity/streams/impl/activitystreams/type_note" - typeobject "github.com/go-fed/activity/streams/impl/activitystreams/type_object" - typeoffer "github.com/go-fed/activity/streams/impl/activitystreams/type_offer" - typeorderedcollection "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection" - typeorderedcollectionpage "github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage" - typeorganization "github.com/go-fed/activity/streams/impl/activitystreams/type_organization" - typepage "github.com/go-fed/activity/streams/impl/activitystreams/type_page" - typeperson "github.com/go-fed/activity/streams/impl/activitystreams/type_person" - typeplace "github.com/go-fed/activity/streams/impl/activitystreams/type_place" - typeprofile "github.com/go-fed/activity/streams/impl/activitystreams/type_profile" - typequestion "github.com/go-fed/activity/streams/impl/activitystreams/type_question" - typeread "github.com/go-fed/activity/streams/impl/activitystreams/type_read" - typereject "github.com/go-fed/activity/streams/impl/activitystreams/type_reject" - typerelationship "github.com/go-fed/activity/streams/impl/activitystreams/type_relationship" - typeremove "github.com/go-fed/activity/streams/impl/activitystreams/type_remove" - typeservice "github.com/go-fed/activity/streams/impl/activitystreams/type_service" - typetentativeaccept "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept" - typetentativereject "github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject" - typetombstone "github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone" - typetravel "github.com/go-fed/activity/streams/impl/activitystreams/type_travel" - typeundo "github.com/go-fed/activity/streams/impl/activitystreams/type_undo" - typeupdate "github.com/go-fed/activity/streams/impl/activitystreams/type_update" - typevideo "github.com/go-fed/activity/streams/impl/activitystreams/type_video" - typeview "github.com/go-fed/activity/streams/impl/activitystreams/type_view" - vocab "github.com/go-fed/activity/streams/vocab" + typeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept" + typeactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity" + typeadd "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add" + typeannounce "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce" + typeapplication "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application" + typearrive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive" + typearticle "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article" + typeaudio "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio" + typeblock "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block" + typecollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection" + typecollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage" + typecreate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create" + typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete" + typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike" + typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document" + typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event" + typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag" + typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow" + typegroup "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group" + typeignore "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore" + typeimage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image" + typeintransitiveactivity "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity" + typeinvite "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite" + typejoin "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join" + typeleave "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave" + typelike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like" + typelink "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link" + typelisten "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen" + typemention "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention" + typemove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move" + typenote "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note" + typeobject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object" + typeoffer "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer" + typeorderedcollection "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection" + typeorderedcollectionpage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage" + typeorganization "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization" + typepage "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page" + typeperson "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person" + typeplace "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place" + typeprofile "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile" + typequestion "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question" + typeread "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read" + typereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject" + typerelationship "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship" + typeremove "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove" + typeservice "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service" + typetentativeaccept "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept" + typetentativereject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject" + typetombstone "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone" + typetravel "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel" + typeundo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo" + typeupdate "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update" + typevideo "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video" + typeview "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // NewActivityStreamsAccept creates a new ActivityStreamsAccept diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_disjoint.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_disjoint.go similarity index 68% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_disjoint.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_disjoint.go index d6299f7ae..b6546e6a8 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_disjoint.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_disjoint.go @@ -3,13 +3,13 @@ package streams import ( - typebranch "github.com/go-fed/activity/streams/impl/forgefed/type_branch" - typecommit "github.com/go-fed/activity/streams/impl/forgefed/type_commit" - typepush "github.com/go-fed/activity/streams/impl/forgefed/type_push" - typerepository "github.com/go-fed/activity/streams/impl/forgefed/type_repository" - typeticket "github.com/go-fed/activity/streams/impl/forgefed/type_ticket" - typeticketdependency "github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency" - vocab "github.com/go-fed/activity/streams/vocab" + typebranch "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch" + typecommit "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit" + typepush "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push" + typerepository "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository" + typeticket "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket" + typeticketdependency "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // ForgeFedBranchIsDisjointWith returns true if Branch is disjoint with the diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_extendedby.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_extendedby.go similarity index 74% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_extendedby.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_extendedby.go index 2a70d7ad2..ef26e8d2b 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_extendedby.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_extendedby.go @@ -3,13 +3,13 @@ package streams import ( - typebranch "github.com/go-fed/activity/streams/impl/forgefed/type_branch" - typecommit "github.com/go-fed/activity/streams/impl/forgefed/type_commit" - typepush "github.com/go-fed/activity/streams/impl/forgefed/type_push" - typerepository "github.com/go-fed/activity/streams/impl/forgefed/type_repository" - typeticket "github.com/go-fed/activity/streams/impl/forgefed/type_ticket" - typeticketdependency "github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency" - vocab "github.com/go-fed/activity/streams/vocab" + typebranch "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch" + typecommit "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit" + typepush "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push" + typerepository "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository" + typeticket "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket" + typeticketdependency "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // ForgeFedBranchIsExtendedBy returns true if the other's type extends from diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_extends.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_extends.go similarity index 68% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_extends.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_extends.go index 2118ba375..8d05aefad 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_extends.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_extends.go @@ -3,13 +3,13 @@ package streams import ( - typebranch "github.com/go-fed/activity/streams/impl/forgefed/type_branch" - typecommit "github.com/go-fed/activity/streams/impl/forgefed/type_commit" - typepush "github.com/go-fed/activity/streams/impl/forgefed/type_push" - typerepository "github.com/go-fed/activity/streams/impl/forgefed/type_repository" - typeticket "github.com/go-fed/activity/streams/impl/forgefed/type_ticket" - typeticketdependency "github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency" - vocab "github.com/go-fed/activity/streams/vocab" + typebranch "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch" + typecommit "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit" + typepush "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push" + typerepository "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository" + typeticket "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket" + typeticketdependency "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // ForgeFedForgeFedBranchExtends returns true if Branch extends from the other's diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_isorextends.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_isorextends.go similarity index 70% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_isorextends.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_isorextends.go index 96d445505..77331d06d 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_isorextends.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_isorextends.go @@ -3,13 +3,13 @@ package streams import ( - typebranch "github.com/go-fed/activity/streams/impl/forgefed/type_branch" - typecommit "github.com/go-fed/activity/streams/impl/forgefed/type_commit" - typepush "github.com/go-fed/activity/streams/impl/forgefed/type_push" - typerepository "github.com/go-fed/activity/streams/impl/forgefed/type_repository" - typeticket "github.com/go-fed/activity/streams/impl/forgefed/type_ticket" - typeticketdependency "github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency" - vocab "github.com/go-fed/activity/streams/vocab" + typebranch "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch" + typecommit "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit" + typepush "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push" + typerepository "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository" + typeticket "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket" + typeticketdependency "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // IsOrExtendsForgeFedBranch returns true if the other provided type is the Branch diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_property_constructors.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_property_constructors.go similarity index 66% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_property_constructors.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_property_constructors.go index d8921cbb1..5a734fb59 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_property_constructors.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_property_constructors.go @@ -3,26 +3,26 @@ package streams import ( - propertyassignedto "github.com/go-fed/activity/streams/impl/forgefed/property_assignedto" - propertycommitted "github.com/go-fed/activity/streams/impl/forgefed/property_committed" - propertycommittedby "github.com/go-fed/activity/streams/impl/forgefed/property_committedby" - propertydependants "github.com/go-fed/activity/streams/impl/forgefed/property_dependants" - propertydependedby "github.com/go-fed/activity/streams/impl/forgefed/property_dependedby" - propertydependencies "github.com/go-fed/activity/streams/impl/forgefed/property_dependencies" - propertydependson "github.com/go-fed/activity/streams/impl/forgefed/property_dependson" - propertydescription "github.com/go-fed/activity/streams/impl/forgefed/property_description" - propertyearlyitems "github.com/go-fed/activity/streams/impl/forgefed/property_earlyitems" - propertyfilesadded "github.com/go-fed/activity/streams/impl/forgefed/property_filesadded" - propertyfilesmodified "github.com/go-fed/activity/streams/impl/forgefed/property_filesmodified" - propertyfilesremoved "github.com/go-fed/activity/streams/impl/forgefed/property_filesremoved" - propertyforks "github.com/go-fed/activity/streams/impl/forgefed/property_forks" - propertyhash "github.com/go-fed/activity/streams/impl/forgefed/property_hash" - propertyisresolved "github.com/go-fed/activity/streams/impl/forgefed/property_isresolved" - propertyref "github.com/go-fed/activity/streams/impl/forgefed/property_ref" - propertyteam "github.com/go-fed/activity/streams/impl/forgefed/property_team" - propertyticketstrackedby "github.com/go-fed/activity/streams/impl/forgefed/property_ticketstrackedby" - propertytracksticketsfor "github.com/go-fed/activity/streams/impl/forgefed/property_tracksticketsfor" - vocab "github.com/go-fed/activity/streams/vocab" + propertyassignedto "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_assignedto" + propertycommitted "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committed" + propertycommittedby "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committedby" + propertydependants "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependants" + propertydependedby "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependedby" + propertydependencies "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependencies" + propertydependson "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependson" + propertydescription "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_description" + propertyearlyitems "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_earlyitems" + propertyfilesadded "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesadded" + propertyfilesmodified "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesmodified" + propertyfilesremoved "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesremoved" + propertyforks "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_forks" + propertyhash "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_hash" + propertyisresolved "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_isresolved" + propertyref "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ref" + propertyteam "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_team" + propertyticketstrackedby "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ticketstrackedby" + propertytracksticketsfor "github.com/superseriousbusiness/activity/streams/impl/forgefed/property_tracksticketsfor" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // NewForgeFedForgeFedAssignedToProperty creates a new ForgeFedAssignedToProperty diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_type_constructors.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_type_constructors.go similarity index 61% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_type_constructors.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_type_constructors.go index 78b59500f..b8705fa8c 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_forgefed_type_constructors.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_forgefed_type_constructors.go @@ -3,13 +3,13 @@ package streams import ( - typebranch "github.com/go-fed/activity/streams/impl/forgefed/type_branch" - typecommit "github.com/go-fed/activity/streams/impl/forgefed/type_commit" - typepush "github.com/go-fed/activity/streams/impl/forgefed/type_push" - typerepository "github.com/go-fed/activity/streams/impl/forgefed/type_repository" - typeticket "github.com/go-fed/activity/streams/impl/forgefed/type_ticket" - typeticketdependency "github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency" - vocab "github.com/go-fed/activity/streams/vocab" + typebranch "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch" + typecommit "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit" + typepush "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push" + typerepository "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository" + typeticket "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket" + typeticketdependency "github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // NewForgeFedBranch creates a new ForgeFedBranch diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_jsonld_property_constructors.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_jsonld_property_constructors.go similarity index 62% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_jsonld_property_constructors.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_jsonld_property_constructors.go index 9f9f9d137..fa4a13096 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_jsonld_property_constructors.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_jsonld_property_constructors.go @@ -3,9 +3,9 @@ package streams import ( - propertyid "github.com/go-fed/activity/streams/impl/jsonld/property_id" - propertytype "github.com/go-fed/activity/streams/impl/jsonld/property_type" - vocab "github.com/go-fed/activity/streams/vocab" + propertyid "github.com/superseriousbusiness/activity/streams/impl/jsonld/property_id" + propertytype "github.com/superseriousbusiness/activity/streams/impl/jsonld/property_type" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // NewJSONLDJSONLDTypeProperty creates a new JSONLDTypeProperty diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_toot_disjoint.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_disjoint.go similarity index 66% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_toot_disjoint.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_disjoint.go index 144f27fa2..6ae7f9411 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_toot_disjoint.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_disjoint.go @@ -3,9 +3,9 @@ package streams import ( - typeemoji "github.com/go-fed/activity/streams/impl/toot/type_emoji" - typeidentityproof "github.com/go-fed/activity/streams/impl/toot/type_identityproof" - vocab "github.com/go-fed/activity/streams/vocab" + typeemoji "github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji" + typeidentityproof "github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // TootEmojiIsDisjointWith returns true if Emoji is disjoint with the other's type. diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_toot_extendedby.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_extendedby.go similarity index 72% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_toot_extendedby.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_extendedby.go index 8327ce103..0388d199d 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_toot_extendedby.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_extendedby.go @@ -3,9 +3,9 @@ package streams import ( - typeemoji "github.com/go-fed/activity/streams/impl/toot/type_emoji" - typeidentityproof "github.com/go-fed/activity/streams/impl/toot/type_identityproof" - vocab "github.com/go-fed/activity/streams/vocab" + typeemoji "github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji" + typeidentityproof "github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // TootEmojiIsExtendedBy returns true if the other's type extends from Emoji. Note diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_toot_extends.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_extends.go similarity index 65% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_toot_extends.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_extends.go index bef71b49c..8227c998d 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_toot_extends.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_extends.go @@ -3,9 +3,9 @@ package streams import ( - typeemoji "github.com/go-fed/activity/streams/impl/toot/type_emoji" - typeidentityproof "github.com/go-fed/activity/streams/impl/toot/type_identityproof" - vocab "github.com/go-fed/activity/streams/vocab" + typeemoji "github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji" + typeidentityproof "github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // TootTootEmojiExtends returns true if Emoji extends from the other's type. diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_toot_isorextends.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_isorextends.go similarity index 68% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_toot_isorextends.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_isorextends.go index 6890c5987..df4ec5c2a 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_toot_isorextends.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_isorextends.go @@ -3,9 +3,9 @@ package streams import ( - typeemoji "github.com/go-fed/activity/streams/impl/toot/type_emoji" - typeidentityproof "github.com/go-fed/activity/streams/impl/toot/type_identityproof" - vocab "github.com/go-fed/activity/streams/vocab" + typeemoji "github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji" + typeidentityproof "github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // IsOrExtendsTootEmoji returns true if the other provided type is the Emoji type diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_toot_property_constructors.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_property_constructors.go similarity index 65% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_toot_property_constructors.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_property_constructors.go index b93c20c76..ce738835e 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_toot_property_constructors.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_property_constructors.go @@ -3,13 +3,13 @@ package streams import ( - propertyblurhash "github.com/go-fed/activity/streams/impl/toot/property_blurhash" - propertydiscoverable "github.com/go-fed/activity/streams/impl/toot/property_discoverable" - propertyfeatured "github.com/go-fed/activity/streams/impl/toot/property_featured" - propertysignaturealgorithm "github.com/go-fed/activity/streams/impl/toot/property_signaturealgorithm" - propertysignaturevalue "github.com/go-fed/activity/streams/impl/toot/property_signaturevalue" - propertyvoterscount "github.com/go-fed/activity/streams/impl/toot/property_voterscount" - vocab "github.com/go-fed/activity/streams/vocab" + propertyblurhash "github.com/superseriousbusiness/activity/streams/impl/toot/property_blurhash" + propertydiscoverable "github.com/superseriousbusiness/activity/streams/impl/toot/property_discoverable" + propertyfeatured "github.com/superseriousbusiness/activity/streams/impl/toot/property_featured" + propertysignaturealgorithm "github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturealgorithm" + propertysignaturevalue "github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturevalue" + propertyvoterscount "github.com/superseriousbusiness/activity/streams/impl/toot/property_voterscount" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // NewTootTootBlurhashProperty creates a new TootBlurhashProperty diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_toot_type_constructors.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_type_constructors.go similarity index 58% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_toot_type_constructors.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_type_constructors.go index 77ba41c71..6e9f35d44 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_toot_type_constructors.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_type_constructors.go @@ -3,9 +3,9 @@ package streams import ( - typeemoji "github.com/go-fed/activity/streams/impl/toot/type_emoji" - typeidentityproof "github.com/go-fed/activity/streams/impl/toot/type_identityproof" - vocab "github.com/go-fed/activity/streams/vocab" + typeemoji "github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji" + typeidentityproof "github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // NewTootEmoji creates a new TootEmoji diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_disjoint.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_disjoint.go similarity index 64% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_disjoint.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_disjoint.go index c8a34164d..8528c51c2 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_disjoint.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_disjoint.go @@ -3,8 +3,8 @@ package streams import ( - typepublickey "github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey" - vocab "github.com/go-fed/activity/streams/vocab" + typepublickey "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // W3IDSecurityV1PublicKeyIsDisjointWith returns true if PublicKey is disjoint diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_extendedby.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_extendedby.go similarity index 70% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_extendedby.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_extendedby.go index 301544e69..736b9f0a3 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_extendedby.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_extendedby.go @@ -3,8 +3,8 @@ package streams import ( - typepublickey "github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey" - vocab "github.com/go-fed/activity/streams/vocab" + typepublickey "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // W3IDSecurityV1PublicKeyIsExtendedBy returns true if the other's type extends diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_extends.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_extends.go similarity index 65% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_extends.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_extends.go index 54d3f6625..97dc4e30e 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_extends.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_extends.go @@ -3,8 +3,8 @@ package streams import ( - typepublickey "github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey" - vocab "github.com/go-fed/activity/streams/vocab" + typepublickey "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // W3IDSecurityV1W3IDSecurityV1PublicKeyExtends returns true if PublicKey extends diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_isorextends.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_isorextends.go similarity index 66% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_isorextends.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_isorextends.go index 028ba96a1..76523a893 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_isorextends.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_isorextends.go @@ -3,8 +3,8 @@ package streams import ( - typepublickey "github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey" - vocab "github.com/go-fed/activity/streams/vocab" + typepublickey "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // IsOrExtendsW3IDSecurityV1PublicKey returns true if the other provided type is diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_property_constructors.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_property_constructors.go similarity index 67% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_property_constructors.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_property_constructors.go index e35820921..9f5530716 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_property_constructors.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_property_constructors.go @@ -3,10 +3,10 @@ package streams import ( - propertyowner "github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_owner" - propertypublickey "github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickey" - propertypublickeypem "github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickeypem" - vocab "github.com/go-fed/activity/streams/vocab" + propertyowner "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_owner" + propertypublickey "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickey" + propertypublickeypem "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickeypem" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // NewW3IDSecurityV1W3IDSecurityV1OwnerProperty creates a new diff --git a/vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_type_constructors.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_type_constructors.go similarity index 61% rename from vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_type_constructors.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_type_constructors.go index dbea0dc4e..ef47411bd 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_pkg_w3idsecurityv1_type_constructors.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_w3idsecurityv1_type_constructors.go @@ -3,8 +3,8 @@ package streams import ( - typepublickey "github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey" - vocab "github.com/go-fed/activity/streams/vocab" + typepublickey "github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // NewW3IDSecurityV1PublicKey creates a new W3IDSecurityV1PublicKey diff --git a/vendor/github.com/go-fed/activity/streams/gen_resolver_utils.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_resolver_utils.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/gen_resolver_utils.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_resolver_utils.go index 30eae3f78..17427c0b9 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_resolver_utils.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_resolver_utils.go @@ -5,7 +5,7 @@ package streams import ( "context" "errors" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // ErrNoCallbackMatch indicates a Resolver could not match the ActivityStreams value to a callback function. diff --git a/vendor/github.com/go-fed/activity/streams/gen_type_predicated_resolver.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_type_predicated_resolver.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/gen_type_predicated_resolver.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_type_predicated_resolver.go index 6199b6ca1..3e4e275e2 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_type_predicated_resolver.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_type_predicated_resolver.go @@ -5,7 +5,7 @@ package streams import ( "context" "errors" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // TypePredicatedResolver resolves ActivityStreams values if the value satisfies a diff --git a/vendor/github.com/go-fed/activity/streams/gen_type_resolver.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_type_resolver.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/gen_type_resolver.go rename to vendor/github.com/superseriousbusiness/activity/streams/gen_type_resolver.go index f834520f0..376e6dde9 100644 --- a/vendor/github.com/go-fed/activity/streams/gen_type_resolver.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_type_resolver.go @@ -5,7 +5,7 @@ package streams import ( "context" "errors" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" ) // TypeResolver resolves ActivityStreams values based on their type name. diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_accuracy/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_accuracy/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_accuracy/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_accuracy/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_accuracy/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_accuracy/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_accuracy/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_accuracy/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_accuracy/gen_property_activitystreams_accuracy.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_accuracy/gen_property_activitystreams_accuracy.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_accuracy/gen_property_activitystreams_accuracy.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_accuracy/gen_property_activitystreams_accuracy.go index 9bbe03ade..afaab89bd 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_accuracy/gen_property_activitystreams_accuracy.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_accuracy/gen_property_activitystreams_accuracy.go @@ -4,8 +4,8 @@ package propertyaccuracy import ( "fmt" - float "github.com/go-fed/activity/streams/values/float" - vocab "github.com/go-fed/activity/streams/vocab" + float "github.com/superseriousbusiness/activity/streams/values/float" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_actor/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_actor/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_actor/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_actor/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor/gen_pkg.go index 85c65198c..997746e60 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_actor/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor/gen_pkg.go @@ -2,7 +2,7 @@ package propertyactor -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_actor/gen_property_activitystreams_actor.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor/gen_property_activitystreams_actor.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_actor/gen_property_activitystreams_actor.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor/gen_property_activitystreams_actor.go index 6c5dec70c..06b06d1c3 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_actor/gen_property_activitystreams_actor.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor/gen_property_activitystreams_actor.go @@ -4,7 +4,7 @@ package propertyactor import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_altitude/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_altitude/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_altitude/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_altitude/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_altitude/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_altitude/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_altitude/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_altitude/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_altitude/gen_property_activitystreams_altitude.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_altitude/gen_property_activitystreams_altitude.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_altitude/gen_property_activitystreams_altitude.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_altitude/gen_property_activitystreams_altitude.go index 06e4e1f0f..cfbc4b261 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_altitude/gen_property_activitystreams_altitude.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_altitude/gen_property_activitystreams_altitude.go @@ -4,8 +4,8 @@ package propertyaltitude import ( "fmt" - float "github.com/go-fed/activity/streams/values/float" - vocab "github.com/go-fed/activity/streams/vocab" + float "github.com/superseriousbusiness/activity/streams/values/float" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_anyof/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_anyof/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_anyof/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_anyof/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof/gen_pkg.go index e2ea4919a..3a48c6b73 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_anyof/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof/gen_pkg.go @@ -2,7 +2,7 @@ package propertyanyof -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_anyof/gen_property_activitystreams_anyOf.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof/gen_property_activitystreams_anyOf.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_anyof/gen_property_activitystreams_anyOf.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof/gen_property_activitystreams_anyOf.go index 54f168795..7077ecdf0 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_anyof/gen_property_activitystreams_anyOf.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof/gen_property_activitystreams_anyOf.go @@ -4,7 +4,7 @@ package propertyanyof import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attachment/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attachment/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attachment/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attachment/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment/gen_pkg.go index a9b93f681..82cd30caf 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attachment/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment/gen_pkg.go @@ -2,7 +2,7 @@ package propertyattachment -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attachment/gen_property_activitystreams_attachment.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment/gen_property_activitystreams_attachment.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attachment/gen_property_activitystreams_attachment.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment/gen_property_activitystreams_attachment.go index efe1b3a38..ce58868c9 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attachment/gen_property_activitystreams_attachment.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment/gen_property_activitystreams_attachment.go @@ -4,7 +4,7 @@ package propertyattachment import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attributedto/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attributedto/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attributedto/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attributedto/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attributedto/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attributedto/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attributedto/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attributedto/gen_pkg.go index bccd4bde3..029e81677 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attributedto/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attributedto/gen_pkg.go @@ -2,7 +2,7 @@ package propertyattributedto -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attributedto/gen_property_activitystreams_attributedTo.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attributedto/gen_property_activitystreams_attributedTo.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attributedto/gen_property_activitystreams_attributedTo.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attributedto/gen_property_activitystreams_attributedTo.go index ca378cb9f..e3bc6a067 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_attributedto/gen_property_activitystreams_attributedTo.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attributedto/gen_property_activitystreams_attributedTo.go @@ -4,7 +4,7 @@ package propertyattributedto import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_audience/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_audience/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_audience/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_audience/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_audience/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_audience/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_audience/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_audience/gen_pkg.go index 9f7a550a5..abca9b36a 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_audience/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_audience/gen_pkg.go @@ -2,7 +2,7 @@ package propertyaudience -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_audience/gen_property_activitystreams_audience.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_audience/gen_property_activitystreams_audience.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_audience/gen_property_activitystreams_audience.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_audience/gen_property_activitystreams_audience.go index aca72d149..5fd83545f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_audience/gen_property_activitystreams_audience.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_audience/gen_property_activitystreams_audience.go @@ -4,7 +4,7 @@ package propertyaudience import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bcc/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bcc/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bcc/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bcc/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bcc/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bcc/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bcc/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bcc/gen_pkg.go index edc0629b5..7f8df194f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bcc/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bcc/gen_pkg.go @@ -2,7 +2,7 @@ package propertybcc -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bcc/gen_property_activitystreams_bcc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bcc/gen_property_activitystreams_bcc.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bcc/gen_property_activitystreams_bcc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bcc/gen_property_activitystreams_bcc.go index 19beec707..2f4912763 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bcc/gen_property_activitystreams_bcc.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bcc/gen_property_activitystreams_bcc.go @@ -4,7 +4,7 @@ package propertybcc import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bto/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bto/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bto/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bto/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bto/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bto/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bto/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bto/gen_pkg.go index 151b80b73..deeb59f2f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bto/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bto/gen_pkg.go @@ -2,7 +2,7 @@ package propertybto -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bto/gen_property_activitystreams_bto.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bto/gen_property_activitystreams_bto.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bto/gen_property_activitystreams_bto.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bto/gen_property_activitystreams_bto.go index a3e8b2c2c..1faa683ff 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_bto/gen_property_activitystreams_bto.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bto/gen_property_activitystreams_bto.go @@ -4,7 +4,7 @@ package propertybto import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_cc/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_cc/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_cc/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_cc/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_cc/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_cc/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_cc/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_cc/gen_pkg.go index 5671fdfc2..707dcaaa9 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_cc/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_cc/gen_pkg.go @@ -2,7 +2,7 @@ package propertycc -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_cc/gen_property_activitystreams_cc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_cc/gen_property_activitystreams_cc.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_cc/gen_property_activitystreams_cc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_cc/gen_property_activitystreams_cc.go index e4df02fa3..e13b3b7d1 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_cc/gen_property_activitystreams_cc.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_cc/gen_property_activitystreams_cc.go @@ -4,7 +4,7 @@ package propertycc import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_closed/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_closed/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_closed/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_closed/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_closed/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_closed/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_closed/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_closed/gen_pkg.go index cc4ce57cc..2d7436e21 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_closed/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_closed/gen_pkg.go @@ -2,7 +2,7 @@ package propertyclosed -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_closed/gen_property_activitystreams_closed.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_closed/gen_property_activitystreams_closed.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_closed/gen_property_activitystreams_closed.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_closed/gen_property_activitystreams_closed.go index ffe820f1b..c4ab13fc8 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_closed/gen_property_activitystreams_closed.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_closed/gen_property_activitystreams_closed.go @@ -4,9 +4,9 @@ package propertyclosed import ( "fmt" - boolean "github.com/go-fed/activity/streams/values/boolean" - datetime "github.com/go-fed/activity/streams/values/dateTime" - vocab "github.com/go-fed/activity/streams/vocab" + boolean "github.com/superseriousbusiness/activity/streams/values/boolean" + datetime "github.com/superseriousbusiness/activity/streams/values/dateTime" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" "time" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_content/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_content/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_content/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_content/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_content/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_content/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_content/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_content/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_content/gen_property_activitystreams_content.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_content/gen_property_activitystreams_content.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_content/gen_property_activitystreams_content.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_content/gen_property_activitystreams_content.go index 8e6b624ad..d7de3b2e0 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_content/gen_property_activitystreams_content.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_content/gen_property_activitystreams_content.go @@ -4,9 +4,9 @@ package propertycontent import ( "fmt" - langstring "github.com/go-fed/activity/streams/values/langString" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + langstring "github.com/superseriousbusiness/activity/streams/values/langString" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_context/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_context/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_context/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_context/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_context/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_context/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_context/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_context/gen_pkg.go index 54bf7c06e..54f1feead 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_context/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_context/gen_pkg.go @@ -2,7 +2,7 @@ package propertycontext -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_context/gen_property_activitystreams_context.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_context/gen_property_activitystreams_context.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_context/gen_property_activitystreams_context.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_context/gen_property_activitystreams_context.go index a173a4699..d862bac01 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_context/gen_property_activitystreams_context.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_context/gen_property_activitystreams_context.go @@ -4,7 +4,7 @@ package propertycontext import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_current/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_current/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_current/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_current/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_current/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_current/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_current/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_current/gen_pkg.go index c52916bdf..c05ce229c 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_current/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_current/gen_pkg.go @@ -2,7 +2,7 @@ package propertycurrent -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_current/gen_property_activitystreams_current.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_current/gen_property_activitystreams_current.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_current/gen_property_activitystreams_current.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_current/gen_property_activitystreams_current.go index 0c9c6001e..b5fd6c5db 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_current/gen_property_activitystreams_current.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_current/gen_property_activitystreams_current.go @@ -4,7 +4,7 @@ package propertycurrent import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_deleted/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_deleted/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_deleted/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_deleted/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_deleted/gen_property_activitystreams_deleted.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted/gen_property_activitystreams_deleted.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_deleted/gen_property_activitystreams_deleted.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted/gen_property_activitystreams_deleted.go index beb3f8ce7..11fffcca4 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_deleted/gen_property_activitystreams_deleted.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted/gen_property_activitystreams_deleted.go @@ -4,8 +4,8 @@ package propertydeleted import ( "fmt" - datetime "github.com/go-fed/activity/streams/values/dateTime" - vocab "github.com/go-fed/activity/streams/vocab" + datetime "github.com/superseriousbusiness/activity/streams/values/dateTime" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" "time" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_describes/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_describes/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_describes/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_describes/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes/gen_pkg.go index 553d52a2d..2504c2e7c 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_describes/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes/gen_pkg.go @@ -2,7 +2,7 @@ package propertydescribes -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_describes/gen_property_activitystreams_describes.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes/gen_property_activitystreams_describes.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_describes/gen_property_activitystreams_describes.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes/gen_property_activitystreams_describes.go index 1f66d6c09..bb480a1be 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_describes/gen_property_activitystreams_describes.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes/gen_property_activitystreams_describes.go @@ -4,7 +4,7 @@ package propertydescribes import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_duration/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_duration/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_duration/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_duration/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_duration/gen_property_activitystreams_duration.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration/gen_property_activitystreams_duration.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_duration/gen_property_activitystreams_duration.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration/gen_property_activitystreams_duration.go index 556d583b3..10aff6cfd 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_duration/gen_property_activitystreams_duration.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration/gen_property_activitystreams_duration.go @@ -4,8 +4,8 @@ package propertyduration import ( "fmt" - duration "github.com/go-fed/activity/streams/values/duration" - vocab "github.com/go-fed/activity/streams/vocab" + duration "github.com/superseriousbusiness/activity/streams/values/duration" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" "time" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_endtime/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_endtime/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_endtime/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_endtime/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_endtime/gen_property_activitystreams_endTime.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime/gen_property_activitystreams_endTime.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_endtime/gen_property_activitystreams_endTime.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime/gen_property_activitystreams_endTime.go index 9e89dafb8..c0170530c 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_endtime/gen_property_activitystreams_endTime.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime/gen_property_activitystreams_endTime.go @@ -4,8 +4,8 @@ package propertyendtime import ( "fmt" - datetime "github.com/go-fed/activity/streams/values/dateTime" - vocab "github.com/go-fed/activity/streams/vocab" + datetime "github.com/superseriousbusiness/activity/streams/values/dateTime" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" "time" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_first/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_first/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_first/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_first/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_pkg.go index 1e738bb60..9ab75cc0a 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_first/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_pkg.go @@ -2,7 +2,7 @@ package propertyfirst -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_first/gen_property_activitystreams_first.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_property_activitystreams_first.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_first/gen_property_activitystreams_first.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_property_activitystreams_first.go index d63164b87..c757647f7 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_first/gen_property_activitystreams_first.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_property_activitystreams_first.go @@ -4,7 +4,7 @@ package propertyfirst import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_followers/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_followers/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_followers/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_followers/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers/gen_pkg.go index 01d7ea18b..912e4c93e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_followers/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers/gen_pkg.go @@ -2,7 +2,7 @@ package propertyfollowers -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_followers/gen_property_activitystreams_followers.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers/gen_property_activitystreams_followers.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_followers/gen_property_activitystreams_followers.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers/gen_property_activitystreams_followers.go index 19eb0a6c9..90c497b52 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_followers/gen_property_activitystreams_followers.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers/gen_property_activitystreams_followers.go @@ -4,7 +4,7 @@ package propertyfollowers import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_following/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_following/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_following/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_following/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_following/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_following/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_following/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_following/gen_pkg.go index 632b76f3f..6aae3cdaf 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_following/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_following/gen_pkg.go @@ -2,7 +2,7 @@ package propertyfollowing -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_following/gen_property_activitystreams_following.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_following/gen_property_activitystreams_following.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_following/gen_property_activitystreams_following.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_following/gen_property_activitystreams_following.go index 31a1edfc9..2d3e66879 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_following/gen_property_activitystreams_following.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_following/gen_property_activitystreams_following.go @@ -4,7 +4,7 @@ package propertyfollowing import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_formertype/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_formertype/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_formertype/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_formertype/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_formertype/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_formertype/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_formertype/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_formertype/gen_pkg.go index 899db00d8..4fb353de6 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_formertype/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_formertype/gen_pkg.go @@ -2,7 +2,7 @@ package propertyformertype -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_formertype/gen_property_activitystreams_formerType.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_formertype/gen_property_activitystreams_formerType.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_formertype/gen_property_activitystreams_formerType.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_formertype/gen_property_activitystreams_formerType.go index d4dd9bb70..89563d542 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_formertype/gen_property_activitystreams_formerType.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_formertype/gen_property_activitystreams_formerType.go @@ -4,8 +4,8 @@ package propertyformertype import ( "fmt" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_generator/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_generator/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_generator/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_generator/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_generator/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_generator/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_generator/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_generator/gen_pkg.go index b388dfef7..42417f03d 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_generator/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_generator/gen_pkg.go @@ -2,7 +2,7 @@ package propertygenerator -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_generator/gen_property_activitystreams_generator.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_generator/gen_property_activitystreams_generator.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_generator/gen_property_activitystreams_generator.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_generator/gen_property_activitystreams_generator.go index 074ed84d6..e876b321c 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_generator/gen_property_activitystreams_generator.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_generator/gen_property_activitystreams_generator.go @@ -4,7 +4,7 @@ package propertygenerator import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_height/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_height/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_height/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_height/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_height/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_height/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_height/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_height/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_height/gen_property_activitystreams_height.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_height/gen_property_activitystreams_height.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_height/gen_property_activitystreams_height.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_height/gen_property_activitystreams_height.go index c467bd65a..525297436 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_height/gen_property_activitystreams_height.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_height/gen_property_activitystreams_height.go @@ -4,8 +4,8 @@ package propertyheight import ( "fmt" - nonnegativeinteger "github.com/go-fed/activity/streams/values/nonNegativeInteger" - vocab "github.com/go-fed/activity/streams/vocab" + nonnegativeinteger "github.com/superseriousbusiness/activity/streams/values/nonNegativeInteger" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_href/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_href/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_href/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_href/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_href/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_href/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_href/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_href/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_href/gen_property_activitystreams_href.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_href/gen_property_activitystreams_href.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_href/gen_property_activitystreams_href.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_href/gen_property_activitystreams_href.go index 3cd3ad8b2..d1d158db7 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_href/gen_property_activitystreams_href.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_href/gen_property_activitystreams_href.go @@ -4,8 +4,8 @@ package propertyhref import ( "fmt" - anyuri "github.com/go-fed/activity/streams/values/anyURI" - vocab "github.com/go-fed/activity/streams/vocab" + anyuri "github.com/superseriousbusiness/activity/streams/values/anyURI" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_hreflang/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_hreflang/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_hreflang/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_hreflang/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_hreflang/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_hreflang/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_hreflang/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_hreflang/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_hreflang/gen_property_activitystreams_hreflang.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_hreflang/gen_property_activitystreams_hreflang.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_hreflang/gen_property_activitystreams_hreflang.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_hreflang/gen_property_activitystreams_hreflang.go index a87c7da6b..eb3b2c941 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_hreflang/gen_property_activitystreams_hreflang.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_hreflang/gen_property_activitystreams_hreflang.go @@ -4,8 +4,8 @@ package propertyhreflang import ( "fmt" - bcp47 "github.com/go-fed/activity/streams/values/bcp47" - vocab "github.com/go-fed/activity/streams/vocab" + bcp47 "github.com/superseriousbusiness/activity/streams/values/bcp47" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_icon/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_icon/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_icon/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_icon/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_icon/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_icon/gen_pkg.go similarity index 94% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_icon/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_icon/gen_pkg.go index f2cae8533..4fef7455f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_icon/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_icon/gen_pkg.go @@ -2,7 +2,7 @@ package propertyicon -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_icon/gen_property_activitystreams_icon.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_icon/gen_property_activitystreams_icon.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_icon/gen_property_activitystreams_icon.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_icon/gen_property_activitystreams_icon.go index 7d1b7b868..d154a54bc 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_icon/gen_property_activitystreams_icon.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_icon/gen_property_activitystreams_icon.go @@ -4,7 +4,7 @@ package propertyicon import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_image/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_image/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_image/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_image/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_image/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_image/gen_pkg.go similarity index 94% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_image/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_image/gen_pkg.go index 7451bcb23..09ab5b927 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_image/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_image/gen_pkg.go @@ -2,7 +2,7 @@ package propertyimage -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_image/gen_property_activitystreams_image.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_image/gen_property_activitystreams_image.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_image/gen_property_activitystreams_image.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_image/gen_property_activitystreams_image.go index 6c971cc5a..c9e7ee626 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_image/gen_property_activitystreams_image.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_image/gen_property_activitystreams_image.go @@ -4,7 +4,7 @@ package propertyimage import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inbox/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inbox/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inbox/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inbox/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inbox/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inbox/gen_pkg.go similarity index 94% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inbox/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inbox/gen_pkg.go index fd89c2c62..ea0e12ca0 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inbox/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inbox/gen_pkg.go @@ -2,7 +2,7 @@ package propertyinbox -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inbox/gen_property_activitystreams_inbox.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inbox/gen_property_activitystreams_inbox.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inbox/gen_property_activitystreams_inbox.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inbox/gen_property_activitystreams_inbox.go index d93011f27..40da7ccfa 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inbox/gen_property_activitystreams_inbox.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inbox/gen_property_activitystreams_inbox.go @@ -4,7 +4,7 @@ package propertyinbox import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inreplyto/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inreplyto/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inreplyto/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inreplyto/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inreplyto/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inreplyto/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inreplyto/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inreplyto/gen_pkg.go index 28597162f..1832a0630 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inreplyto/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inreplyto/gen_pkg.go @@ -2,7 +2,7 @@ package propertyinreplyto -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inreplyto/gen_property_activitystreams_inReplyTo.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inreplyto/gen_property_activitystreams_inReplyTo.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inreplyto/gen_property_activitystreams_inReplyTo.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inreplyto/gen_property_activitystreams_inReplyTo.go index 02ca1883b..5766c3b0f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_inreplyto/gen_property_activitystreams_inReplyTo.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inreplyto/gen_property_activitystreams_inReplyTo.go @@ -4,7 +4,7 @@ package propertyinreplyto import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_instrument/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_instrument/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_instrument/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_instrument/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_instrument/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_instrument/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_instrument/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_instrument/gen_pkg.go index 7db2733ab..d7d008d73 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_instrument/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_instrument/gen_pkg.go @@ -2,7 +2,7 @@ package propertyinstrument -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_instrument/gen_property_activitystreams_instrument.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_instrument/gen_property_activitystreams_instrument.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_instrument/gen_property_activitystreams_instrument.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_instrument/gen_property_activitystreams_instrument.go index 5ec8a82c6..b0f0070b6 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_instrument/gen_property_activitystreams_instrument.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_instrument/gen_property_activitystreams_instrument.go @@ -4,7 +4,7 @@ package propertyinstrument import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_items/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_items/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_items/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_items/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_items/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_items/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_items/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_items/gen_pkg.go index 35216bfa9..311a38162 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_items/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_items/gen_pkg.go @@ -2,7 +2,7 @@ package propertyitems -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_items/gen_property_activitystreams_items.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_items/gen_property_activitystreams_items.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_items/gen_property_activitystreams_items.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_items/gen_property_activitystreams_items.go index bdc6a457c..7944a4541 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_items/gen_property_activitystreams_items.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_items/gen_property_activitystreams_items.go @@ -4,7 +4,7 @@ package propertyitems import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_last/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_last/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_last/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_last/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_last/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_last/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_last/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_last/gen_pkg.go index 34002889d..ec35fb846 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_last/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_last/gen_pkg.go @@ -2,7 +2,7 @@ package propertylast -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_last/gen_property_activitystreams_last.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_last/gen_property_activitystreams_last.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_last/gen_property_activitystreams_last.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_last/gen_property_activitystreams_last.go index b50c32554..b11746bce 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_last/gen_property_activitystreams_last.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_last/gen_property_activitystreams_last.go @@ -4,7 +4,7 @@ package propertylast import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_latitude/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_latitude/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_latitude/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_latitude/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_latitude/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_latitude/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_latitude/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_latitude/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_latitude/gen_property_activitystreams_latitude.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_latitude/gen_property_activitystreams_latitude.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_latitude/gen_property_activitystreams_latitude.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_latitude/gen_property_activitystreams_latitude.go index d5dd400b0..9c47f1707 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_latitude/gen_property_activitystreams_latitude.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_latitude/gen_property_activitystreams_latitude.go @@ -4,8 +4,8 @@ package propertylatitude import ( "fmt" - float "github.com/go-fed/activity/streams/values/float" - vocab "github.com/go-fed/activity/streams/vocab" + float "github.com/superseriousbusiness/activity/streams/values/float" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_liked/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_liked/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_liked/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_liked/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_liked/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_liked/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_liked/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_liked/gen_pkg.go index f4837d33c..21e5bcedd 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_liked/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_liked/gen_pkg.go @@ -2,7 +2,7 @@ package propertyliked -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_liked/gen_property_activitystreams_liked.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_liked/gen_property_activitystreams_liked.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_liked/gen_property_activitystreams_liked.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_liked/gen_property_activitystreams_liked.go index ea632584f..9f89dc665 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_liked/gen_property_activitystreams_liked.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_liked/gen_property_activitystreams_liked.go @@ -4,7 +4,7 @@ package propertyliked import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_likes/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_likes/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_likes/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_likes/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_likes/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_likes/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_likes/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_likes/gen_pkg.go index fa01eb3d0..251ef2368 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_likes/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_likes/gen_pkg.go @@ -2,7 +2,7 @@ package propertylikes -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_likes/gen_property_activitystreams_likes.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_likes/gen_property_activitystreams_likes.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_likes/gen_property_activitystreams_likes.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_likes/gen_property_activitystreams_likes.go index 6acdadd57..dc5895e2c 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_likes/gen_property_activitystreams_likes.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_likes/gen_property_activitystreams_likes.go @@ -4,7 +4,7 @@ package propertylikes import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_location/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_location/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_location/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_location/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_location/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_location/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_location/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_location/gen_pkg.go index 946433a6d..de04e27b7 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_location/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_location/gen_pkg.go @@ -2,7 +2,7 @@ package propertylocation -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_location/gen_property_activitystreams_location.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_location/gen_property_activitystreams_location.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_location/gen_property_activitystreams_location.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_location/gen_property_activitystreams_location.go index 1644d8e09..eef781bba 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_location/gen_property_activitystreams_location.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_location/gen_property_activitystreams_location.go @@ -4,7 +4,7 @@ package propertylocation import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_longitude/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_longitude/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_longitude/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_longitude/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_longitude/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_longitude/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_longitude/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_longitude/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_longitude/gen_property_activitystreams_longitude.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_longitude/gen_property_activitystreams_longitude.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_longitude/gen_property_activitystreams_longitude.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_longitude/gen_property_activitystreams_longitude.go index b05ffe8af..1c25b1f90 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_longitude/gen_property_activitystreams_longitude.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_longitude/gen_property_activitystreams_longitude.go @@ -4,8 +4,8 @@ package propertylongitude import ( "fmt" - float "github.com/go-fed/activity/streams/values/float" - vocab "github.com/go-fed/activity/streams/vocab" + float "github.com/superseriousbusiness/activity/streams/values/float" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_property_activitystreams_manuallyApprovesFollowers.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_property_activitystreams_manuallyApprovesFollowers.go similarity index 98% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_property_activitystreams_manuallyApprovesFollowers.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_property_activitystreams_manuallyApprovesFollowers.go index e0356a2cf..69e32b7b7 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_property_activitystreams_manuallyApprovesFollowers.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers/gen_property_activitystreams_manuallyApprovesFollowers.go @@ -4,8 +4,8 @@ package propertymanuallyapprovesfollowers import ( "fmt" - boolean "github.com/go-fed/activity/streams/values/boolean" - vocab "github.com/go-fed/activity/streams/vocab" + boolean "github.com/superseriousbusiness/activity/streams/values/boolean" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_mediatype/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_mediatype/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_mediatype/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_mediatype/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_mediatype/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_mediatype/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_mediatype/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_mediatype/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_mediatype/gen_property_activitystreams_mediaType.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_mediatype/gen_property_activitystreams_mediaType.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_mediatype/gen_property_activitystreams_mediaType.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_mediatype/gen_property_activitystreams_mediaType.go index 8c8eefef3..b0aed2d33 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_mediatype/gen_property_activitystreams_mediaType.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_mediatype/gen_property_activitystreams_mediaType.go @@ -4,8 +4,8 @@ package propertymediatype import ( "fmt" - rfc2045 "github.com/go-fed/activity/streams/values/rfc2045" - vocab "github.com/go-fed/activity/streams/vocab" + rfc2045 "github.com/superseriousbusiness/activity/streams/values/rfc2045" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_name/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_name/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_name/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_name/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_name/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_name/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_name/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_name/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_name/gen_property_activitystreams_name.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_name/gen_property_activitystreams_name.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_name/gen_property_activitystreams_name.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_name/gen_property_activitystreams_name.go index 69d9cfbce..734a0cb01 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_name/gen_property_activitystreams_name.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_name/gen_property_activitystreams_name.go @@ -4,9 +4,9 @@ package propertyname import ( "fmt" - langstring "github.com/go-fed/activity/streams/values/langString" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + langstring "github.com/superseriousbusiness/activity/streams/values/langString" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_next/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_next/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_next/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_next/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next/gen_pkg.go index 20e814b77..ba9278f5d 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_next/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next/gen_pkg.go @@ -2,7 +2,7 @@ package propertynext -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_next/gen_property_activitystreams_next.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next/gen_property_activitystreams_next.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_next/gen_property_activitystreams_next.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next/gen_property_activitystreams_next.go index 6727d280f..e78ad86b7 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_next/gen_property_activitystreams_next.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next/gen_property_activitystreams_next.go @@ -4,7 +4,7 @@ package propertynext import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_object/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_object/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_object/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_object/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object/gen_pkg.go index d9176c966..962ed946f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_object/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object/gen_pkg.go @@ -2,7 +2,7 @@ package propertyobject -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_object/gen_property_activitystreams_object.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object/gen_property_activitystreams_object.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_object/gen_property_activitystreams_object.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object/gen_property_activitystreams_object.go index 501ddaabd..23807ad67 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_object/gen_property_activitystreams_object.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object/gen_property_activitystreams_object.go @@ -4,7 +4,7 @@ package propertyobject import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_oneof/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_oneof/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_oneof/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_oneof/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_oneof/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_oneof/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_oneof/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_oneof/gen_pkg.go index f0a1b461f..67ce556c7 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_oneof/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_oneof/gen_pkg.go @@ -2,7 +2,7 @@ package propertyoneof -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_oneof/gen_property_activitystreams_oneOf.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_oneof/gen_property_activitystreams_oneOf.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_oneof/gen_property_activitystreams_oneOf.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_oneof/gen_property_activitystreams_oneOf.go index 4561cecd7..abb3b6b25 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_oneof/gen_property_activitystreams_oneOf.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_oneof/gen_property_activitystreams_oneOf.go @@ -4,7 +4,7 @@ package propertyoneof import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_ordereditems/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_ordereditems/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_ordereditems/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_ordereditems/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_ordereditems/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_ordereditems/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_ordereditems/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_ordereditems/gen_pkg.go index 6aa80f7f9..44dc09f65 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_ordereditems/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_ordereditems/gen_pkg.go @@ -2,7 +2,7 @@ package propertyordereditems -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_ordereditems/gen_property_activitystreams_orderedItems.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_ordereditems/gen_property_activitystreams_orderedItems.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_ordereditems/gen_property_activitystreams_orderedItems.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_ordereditems/gen_property_activitystreams_orderedItems.go index 02b9bc8b4..f3b4fb2eb 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_ordereditems/gen_property_activitystreams_orderedItems.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_ordereditems/gen_property_activitystreams_orderedItems.go @@ -4,7 +4,7 @@ package propertyordereditems import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_origin/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_origin/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_origin/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_origin/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_origin/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_origin/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_origin/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_origin/gen_pkg.go index 98eba3a99..a571a6655 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_origin/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_origin/gen_pkg.go @@ -2,7 +2,7 @@ package propertyorigin -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_origin/gen_property_activitystreams_origin.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_origin/gen_property_activitystreams_origin.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_origin/gen_property_activitystreams_origin.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_origin/gen_property_activitystreams_origin.go index 3d83911d8..34237f5d4 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_origin/gen_property_activitystreams_origin.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_origin/gen_property_activitystreams_origin.go @@ -4,7 +4,7 @@ package propertyorigin import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_outbox/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_outbox/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_outbox/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_outbox/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_outbox/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_outbox/gen_pkg.go similarity index 94% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_outbox/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_outbox/gen_pkg.go index b6905981a..7bfb37637 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_outbox/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_outbox/gen_pkg.go @@ -2,7 +2,7 @@ package propertyoutbox -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_outbox/gen_property_activitystreams_outbox.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_outbox/gen_property_activitystreams_outbox.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_outbox/gen_property_activitystreams_outbox.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_outbox/gen_property_activitystreams_outbox.go index 4e8874e8c..1769ddf1b 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_outbox/gen_property_activitystreams_outbox.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_outbox/gen_property_activitystreams_outbox.go @@ -4,7 +4,7 @@ package propertyoutbox import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_partof/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_partof/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_partof/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_partof/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_partof/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_partof/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_partof/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_partof/gen_pkg.go index a7708d3d0..d734ec47b 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_partof/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_partof/gen_pkg.go @@ -2,7 +2,7 @@ package propertypartof -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_partof/gen_property_activitystreams_partOf.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_partof/gen_property_activitystreams_partOf.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_partof/gen_property_activitystreams_partOf.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_partof/gen_property_activitystreams_partOf.go index 7bee379a9..a3a70ffa8 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_partof/gen_property_activitystreams_partOf.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_partof/gen_property_activitystreams_partOf.go @@ -4,7 +4,7 @@ package propertypartof import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preferredusername/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preferredusername/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preferredusername/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preferredusername/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preferredusername/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preferredusername/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preferredusername/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preferredusername/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preferredusername/gen_property_activitystreams_preferredUsername.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preferredusername/gen_property_activitystreams_preferredUsername.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preferredusername/gen_property_activitystreams_preferredUsername.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preferredusername/gen_property_activitystreams_preferredUsername.go index 7053417e1..951b48298 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preferredusername/gen_property_activitystreams_preferredUsername.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preferredusername/gen_property_activitystreams_preferredUsername.go @@ -4,9 +4,9 @@ package propertypreferredusername import ( "fmt" - langstring "github.com/go-fed/activity/streams/values/langString" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + langstring "github.com/superseriousbusiness/activity/streams/values/langString" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_prev/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_prev/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_prev/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_prev/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_prev/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_prev/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_prev/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_prev/gen_pkg.go index e52b7048c..cbc1bb850 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_prev/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_prev/gen_pkg.go @@ -2,7 +2,7 @@ package propertyprev -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_prev/gen_property_activitystreams_prev.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_prev/gen_property_activitystreams_prev.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_prev/gen_property_activitystreams_prev.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_prev/gen_property_activitystreams_prev.go index cdc28e40f..d9bf488b5 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_prev/gen_property_activitystreams_prev.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_prev/gen_property_activitystreams_prev.go @@ -4,7 +4,7 @@ package propertyprev import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preview/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preview/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preview/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preview/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preview/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preview/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preview/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preview/gen_pkg.go index 270923db5..f2ce41e54 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preview/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preview/gen_pkg.go @@ -2,7 +2,7 @@ package propertypreview -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preview/gen_property_activitystreams_preview.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preview/gen_property_activitystreams_preview.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preview/gen_property_activitystreams_preview.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preview/gen_property_activitystreams_preview.go index c1dcd7672..244067728 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_preview/gen_property_activitystreams_preview.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preview/gen_property_activitystreams_preview.go @@ -4,7 +4,7 @@ package propertypreview import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_published/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_published/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_published/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_published/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_published/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_published/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_published/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_published/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_published/gen_property_activitystreams_published.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_published/gen_property_activitystreams_published.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_published/gen_property_activitystreams_published.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_published/gen_property_activitystreams_published.go index a1b627c60..168f33bad 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_published/gen_property_activitystreams_published.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_published/gen_property_activitystreams_published.go @@ -4,8 +4,8 @@ package propertypublished import ( "fmt" - datetime "github.com/go-fed/activity/streams/values/dateTime" - vocab "github.com/go-fed/activity/streams/vocab" + datetime "github.com/superseriousbusiness/activity/streams/values/dateTime" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" "time" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_radius/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_radius/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_radius/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_radius/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_radius/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_radius/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_radius/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_radius/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_radius/gen_property_activitystreams_radius.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_radius/gen_property_activitystreams_radius.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_radius/gen_property_activitystreams_radius.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_radius/gen_property_activitystreams_radius.go index 98d7b4884..c1bf1415c 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_radius/gen_property_activitystreams_radius.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_radius/gen_property_activitystreams_radius.go @@ -4,8 +4,8 @@ package propertyradius import ( "fmt" - float "github.com/go-fed/activity/streams/values/float" - vocab "github.com/go-fed/activity/streams/vocab" + float "github.com/superseriousbusiness/activity/streams/values/float" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_rel/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_rel/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_rel/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_rel/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_rel/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_rel/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_rel/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_rel/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_rel/gen_property_activitystreams_rel.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_rel/gen_property_activitystreams_rel.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_rel/gen_property_activitystreams_rel.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_rel/gen_property_activitystreams_rel.go index f102e2358..ceee6ed95 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_rel/gen_property_activitystreams_rel.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_rel/gen_property_activitystreams_rel.go @@ -4,8 +4,8 @@ package propertyrel import ( "fmt" - rfc5988 "github.com/go-fed/activity/streams/values/rfc5988" - vocab "github.com/go-fed/activity/streams/vocab" + rfc5988 "github.com/superseriousbusiness/activity/streams/values/rfc5988" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_relationship/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_relationship/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_relationship/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_relationship/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_relationship/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_relationship/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_relationship/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_relationship/gen_pkg.go index 4c63d8db2..7e3c3021e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_relationship/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_relationship/gen_pkg.go @@ -2,7 +2,7 @@ package propertyrelationship -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_relationship/gen_property_activitystreams_relationship.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_relationship/gen_property_activitystreams_relationship.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_relationship/gen_property_activitystreams_relationship.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_relationship/gen_property_activitystreams_relationship.go index 5dc71e782..f36234e6d 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_relationship/gen_property_activitystreams_relationship.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_relationship/gen_property_activitystreams_relationship.go @@ -4,7 +4,7 @@ package propertyrelationship import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_replies/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_replies/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_replies/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_replies/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies/gen_pkg.go index b87cc931b..e60d7034a 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_replies/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies/gen_pkg.go @@ -2,7 +2,7 @@ package propertyreplies -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_replies/gen_property_activitystreams_replies.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies/gen_property_activitystreams_replies.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_replies/gen_property_activitystreams_replies.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies/gen_property_activitystreams_replies.go index 8213e0a49..769ba330e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_replies/gen_property_activitystreams_replies.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies/gen_property_activitystreams_replies.go @@ -4,7 +4,7 @@ package propertyreplies import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_result/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_result/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_result/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_result/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result/gen_pkg.go index b7dcf088b..1cdcaae7d 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_result/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result/gen_pkg.go @@ -2,7 +2,7 @@ package propertyresult -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_result/gen_property_activitystreams_result.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result/gen_property_activitystreams_result.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_result/gen_property_activitystreams_result.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result/gen_property_activitystreams_result.go index d2644133d..3e967d0c3 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_result/gen_property_activitystreams_result.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result/gen_property_activitystreams_result.go @@ -4,7 +4,7 @@ package propertyresult import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive/gen_doc.go new file mode 100644 index 000000000..869719ba0 --- /dev/null +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive/gen_doc.go @@ -0,0 +1,17 @@ +// Code generated by astool. DO NOT EDIT. + +// Package propertysensitive contains the implementation for the sensitive +// property. All applications are strongly encouraged to use the interface +// instead of this concrete definition. The interfaces allow applications to +// consume only the types and properties needed and be independent of the +// go-fed implementation if another alternative implementation is created. +// This package is code-generated and subject to the same license as the +// go-fed tool used to generate it. +// +// This package is independent of other types' and properties' implementations +// by having a Manager injected into it to act as a factory for the concrete +// implementations. The implementations have been generated into their own +// separate subpackages for each vocabulary. +// +// Strongly consider using the interfaces instead of this package. +package propertysensitive diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive/gen_pkg.go new file mode 100644 index 000000000..88d18245a --- /dev/null +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive/gen_pkg.go @@ -0,0 +1,15 @@ +// Code generated by astool. DO NOT EDIT. + +package propertysensitive + +var mgr privateManager + +// privateManager abstracts the code-generated manager that provides access to +// concrete implementations. +type privateManager interface{} + +// SetManager sets the manager package-global variable. For internal use only, do +// not use as part of Application behavior. Must be called at golang init time. +func SetManager(m privateManager) { + mgr = m +} diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive/gen_property_activitystreams_sensitive.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive/gen_property_activitystreams_sensitive.go new file mode 100644 index 000000000..8f6e749ad --- /dev/null +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive/gen_property_activitystreams_sensitive.go @@ -0,0 +1,531 @@ +// Code generated by astool. DO NOT EDIT. + +package propertysensitive + +import ( + "fmt" + boolean "github.com/superseriousbusiness/activity/streams/values/boolean" + vocab "github.com/superseriousbusiness/activity/streams/vocab" + "net/url" +) + +// ActivityStreamsSensitivePropertyIterator is an iterator for a property. It is +// permitted to be a single default-valued value type. +type ActivityStreamsSensitivePropertyIterator struct { + xmlschemaBooleanMember bool + hasBooleanMember bool + unknown interface{} + iri *url.URL + alias string + myIdx int + parent vocab.ActivityStreamsSensitiveProperty +} + +// NewActivityStreamsSensitivePropertyIterator creates a new +// ActivityStreamsSensitive property. +func NewActivityStreamsSensitivePropertyIterator() *ActivityStreamsSensitivePropertyIterator { + return &ActivityStreamsSensitivePropertyIterator{alias: ""} +} + +// deserializeActivityStreamsSensitivePropertyIterator creates an iterator from an +// element that has been unmarshalled from a text or binary format. +func deserializeActivityStreamsSensitivePropertyIterator(i interface{}, aliasMap map[string]string) (*ActivityStreamsSensitivePropertyIterator, error) { + alias := "" + if a, ok := aliasMap["https://www.w3.org/ns/activitystreams"]; ok { + alias = a + } + if s, ok := i.(string); ok { + u, err := url.Parse(s) + // If error exists, don't error out -- skip this and treat as unknown string ([]byte) at worst + // Also, if no scheme exists, don't treat it as a URL -- net/url is greedy + if err == nil && len(u.Scheme) > 0 { + this := &ActivityStreamsSensitivePropertyIterator{ + alias: alias, + iri: u, + } + return this, nil + } + } + if v, err := boolean.DeserializeBoolean(i); err == nil { + this := &ActivityStreamsSensitivePropertyIterator{ + alias: alias, + hasBooleanMember: true, + xmlschemaBooleanMember: v, + } + return this, nil + } + this := &ActivityStreamsSensitivePropertyIterator{ + alias: alias, + unknown: i, + } + return this, nil +} + +// Get returns the value of this property. When IsXMLSchemaBoolean returns false, +// Get will return any arbitrary value. +func (this ActivityStreamsSensitivePropertyIterator) Get() bool { + return this.xmlschemaBooleanMember +} + +// GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will +// return any arbitrary value. +func (this ActivityStreamsSensitivePropertyIterator) GetIRI() *url.URL { + return this.iri +} + +// HasAny returns true if the value or IRI is set. +func (this ActivityStreamsSensitivePropertyIterator) HasAny() bool { + return this.IsXMLSchemaBoolean() || this.iri != nil +} + +// IsIRI returns true if this property is an IRI. +func (this ActivityStreamsSensitivePropertyIterator) IsIRI() bool { + return this.iri != nil +} + +// IsXMLSchemaBoolean returns true if this property is set and not an IRI. +func (this ActivityStreamsSensitivePropertyIterator) IsXMLSchemaBoolean() bool { + return this.hasBooleanMember +} + +// JSONLDContext returns the JSONLD URIs required in the context string for this +// property and the specific values that are set. The value in the map is the +// alias used to import the property's value or values. +func (this ActivityStreamsSensitivePropertyIterator) JSONLDContext() map[string]string { + m := map[string]string{"https://www.w3.org/ns/activitystreams": this.alias} + var child map[string]string + + /* + Since the literal maps in this function are determined at + code-generation time, this loop should not overwrite an existing key with a + new value. + */ + for k, v := range child { + m[k] = v + } + return m +} + +// KindIndex computes an arbitrary value for indexing this kind of value. This is +// a leaky API detail only for folks looking to replace the go-fed +// implementation. Applications should not use this method. +func (this ActivityStreamsSensitivePropertyIterator) KindIndex() int { + if this.IsXMLSchemaBoolean() { + return 0 + } + if this.IsIRI() { + return -2 + } + return -1 +} + +// LessThan compares two instances of this property with an arbitrary but stable +// comparison. Applications should not use this because it is only meant to +// help alternative implementations to go-fed to be able to normalize +// nonfunctional properties. +func (this ActivityStreamsSensitivePropertyIterator) LessThan(o vocab.ActivityStreamsSensitivePropertyIterator) bool { + // LessThan comparison for if either or both are IRIs. + if this.IsIRI() && o.IsIRI() { + return this.iri.String() < o.GetIRI().String() + } else if this.IsIRI() { + // IRIs are always less than other values, none, or unknowns + return true + } else if o.IsIRI() { + // This other, none, or unknown value is always greater than IRIs + return false + } + // LessThan comparison for the single value or unknown value. + if !this.IsXMLSchemaBoolean() && !o.IsXMLSchemaBoolean() { + // Both are unknowns. + return false + } else if this.IsXMLSchemaBoolean() && !o.IsXMLSchemaBoolean() { + // Values are always greater than unknown values. + return false + } else if !this.IsXMLSchemaBoolean() && o.IsXMLSchemaBoolean() { + // Unknowns are always less than known values. + return true + } else { + // Actual comparison. + return boolean.LessBoolean(this.Get(), o.Get()) + } +} + +// Name returns the name of this property: "ActivityStreamsSensitive". +func (this ActivityStreamsSensitivePropertyIterator) Name() string { + if len(this.alias) > 0 { + return this.alias + ":" + "ActivityStreamsSensitive" + } else { + return "ActivityStreamsSensitive" + } +} + +// Next returns the next iterator, or nil if there is no next iterator. +func (this ActivityStreamsSensitivePropertyIterator) Next() vocab.ActivityStreamsSensitivePropertyIterator { + if this.myIdx+1 >= this.parent.Len() { + return nil + } else { + return this.parent.At(this.myIdx + 1) + } +} + +// Prev returns the previous iterator, or nil if there is no previous iterator. +func (this ActivityStreamsSensitivePropertyIterator) Prev() vocab.ActivityStreamsSensitivePropertyIterator { + if this.myIdx-1 < 0 { + return nil + } else { + return this.parent.At(this.myIdx - 1) + } +} + +// Set sets the value of this property. Calling IsXMLSchemaBoolean afterwards will +// return true. +func (this *ActivityStreamsSensitivePropertyIterator) Set(v bool) { + this.clear() + this.xmlschemaBooleanMember = v + this.hasBooleanMember = true +} + +// SetIRI sets the value of this property. Calling IsIRI afterwards will return +// true. +func (this *ActivityStreamsSensitivePropertyIterator) SetIRI(v *url.URL) { + this.clear() + this.iri = v +} + +// clear ensures no value of this property is set. Calling IsXMLSchemaBoolean +// afterwards will return false. +func (this *ActivityStreamsSensitivePropertyIterator) clear() { + this.unknown = nil + this.iri = nil + this.hasBooleanMember = false +} + +// serialize converts this into an interface representation suitable for +// marshalling into a text or binary format. Applications should not need this +// function as most typical use cases serialize types instead of individual +// properties. It is exposed for alternatives to go-fed implementations to use. +func (this ActivityStreamsSensitivePropertyIterator) serialize() (interface{}, error) { + if this.IsXMLSchemaBoolean() { + return boolean.SerializeBoolean(this.Get()) + } else if this.IsIRI() { + return this.iri.String(), nil + } + return this.unknown, nil +} + +// ActivityStreamsSensitiveProperty is the non-functional property "sensitive". It +// is permitted to have one or more values, and of different value types. +type ActivityStreamsSensitiveProperty struct { + properties []*ActivityStreamsSensitivePropertyIterator + alias string +} + +// DeserializeSensitiveProperty creates a "sensitive" property from an interface +// representation that has been unmarshalled from a text or binary format. +func DeserializeSensitiveProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) { + alias := "" + if a, ok := aliasMap["https://www.w3.org/ns/activitystreams"]; ok { + alias = a + } + propName := "sensitive" + if len(alias) > 0 { + propName = fmt.Sprintf("%s:%s", alias, "sensitive") + } + i, ok := m[propName] + + if ok { + this := &ActivityStreamsSensitiveProperty{ + alias: alias, + properties: []*ActivityStreamsSensitivePropertyIterator{}, + } + if list, ok := i.([]interface{}); ok { + for _, iterator := range list { + if p, err := deserializeActivityStreamsSensitivePropertyIterator(iterator, aliasMap); err != nil { + return this, err + } else if p != nil { + this.properties = append(this.properties, p) + } + } + } else { + if p, err := deserializeActivityStreamsSensitivePropertyIterator(i, aliasMap); err != nil { + return this, err + } else if p != nil { + this.properties = append(this.properties, p) + } + } + // Set up the properties for iteration. + for idx, ele := range this.properties { + ele.parent = this + ele.myIdx = idx + } + return this, nil + } + return nil, nil +} + +// NewActivityStreamsSensitiveProperty creates a new sensitive property. +func NewActivityStreamsSensitiveProperty() *ActivityStreamsSensitiveProperty { + return &ActivityStreamsSensitiveProperty{alias: ""} +} + +// AppendIRI appends an IRI value to the back of a list of the property "sensitive" +func (this *ActivityStreamsSensitiveProperty) AppendIRI(v *url.URL) { + this.properties = append(this.properties, &ActivityStreamsSensitivePropertyIterator{ + alias: this.alias, + iri: v, + myIdx: this.Len(), + parent: this, + }) +} + +// AppendXMLSchemaBoolean appends a boolean value to the back of a list of the +// property "sensitive". Invalidates iterators that are traversing using Prev. +func (this *ActivityStreamsSensitiveProperty) AppendXMLSchemaBoolean(v bool) { + this.properties = append(this.properties, &ActivityStreamsSensitivePropertyIterator{ + alias: this.alias, + hasBooleanMember: true, + myIdx: this.Len(), + parent: this, + xmlschemaBooleanMember: v, + }) +} + +// At returns the property value for the specified index. Panics if the index is +// out of bounds. +func (this ActivityStreamsSensitiveProperty) At(index int) vocab.ActivityStreamsSensitivePropertyIterator { + return this.properties[index] +} + +// Begin returns the first iterator, or nil if empty. Can be used with the +// iterator's Next method and this property's End method to iterate from front +// to back through all values. +func (this ActivityStreamsSensitiveProperty) Begin() vocab.ActivityStreamsSensitivePropertyIterator { + if this.Empty() { + return nil + } else { + return this.properties[0] + } +} + +// Empty returns returns true if there are no elements. +func (this ActivityStreamsSensitiveProperty) Empty() bool { + return this.Len() == 0 +} + +// End returns beyond-the-last iterator, which is nil. Can be used with the +// iterator's Next method and this property's Begin method to iterate from +// front to back through all values. +func (this ActivityStreamsSensitiveProperty) End() vocab.ActivityStreamsSensitivePropertyIterator { + return nil +} + +// Insert inserts an IRI value at the specified index for a property "sensitive". +// Existing elements at that index and higher are shifted back once. +// Invalidates all iterators. +func (this *ActivityStreamsSensitiveProperty) InsertIRI(idx int, v *url.URL) { + this.properties = append(this.properties, nil) + copy(this.properties[idx+1:], this.properties[idx:]) + this.properties[idx] = &ActivityStreamsSensitivePropertyIterator{ + alias: this.alias, + iri: v, + myIdx: idx, + parent: this, + } + for i := idx; i < this.Len(); i++ { + (this.properties)[i].myIdx = i + } +} + +// InsertXMLSchemaBoolean inserts a boolean value at the specified index for a +// property "sensitive". Existing elements at that index and higher are +// shifted back once. Invalidates all iterators. +func (this *ActivityStreamsSensitiveProperty) InsertXMLSchemaBoolean(idx int, v bool) { + this.properties = append(this.properties, nil) + copy(this.properties[idx+1:], this.properties[idx:]) + this.properties[idx] = &ActivityStreamsSensitivePropertyIterator{ + alias: this.alias, + hasBooleanMember: true, + myIdx: idx, + parent: this, + xmlschemaBooleanMember: v, + } + for i := idx; i < this.Len(); i++ { + (this.properties)[i].myIdx = i + } +} + +// JSONLDContext returns the JSONLD URIs required in the context string for this +// property and the specific values that are set. The value in the map is the +// alias used to import the property's value or values. +func (this ActivityStreamsSensitiveProperty) JSONLDContext() map[string]string { + m := map[string]string{"https://www.w3.org/ns/activitystreams": this.alias} + for _, elem := range this.properties { + child := elem.JSONLDContext() + /* + Since the literal maps in this function are determined at + code-generation time, this loop should not overwrite an existing key with a + new value. + */ + for k, v := range child { + m[k] = v + } + } + return m +} + +// KindIndex computes an arbitrary value for indexing this kind of value. This is +// a leaky API method specifically needed only for alternate implementations +// for go-fed. Applications should not use this method. Panics if the index is +// out of bounds. +func (this ActivityStreamsSensitiveProperty) KindIndex(idx int) int { + return this.properties[idx].KindIndex() +} + +// Len returns the number of values that exist for the "sensitive" property. +func (this ActivityStreamsSensitiveProperty) Len() (length int) { + return len(this.properties) +} + +// Less computes whether another property is less than this one. Mixing types +// results in a consistent but arbitrary ordering +func (this ActivityStreamsSensitiveProperty) Less(i, j int) bool { + idx1 := this.KindIndex(i) + idx2 := this.KindIndex(j) + if idx1 < idx2 { + return true + } else if idx1 == idx2 { + if idx1 == 0 { + lhs := this.properties[i].Get() + rhs := this.properties[j].Get() + return boolean.LessBoolean(lhs, rhs) + } else if idx1 == -2 { + lhs := this.properties[i].GetIRI() + rhs := this.properties[j].GetIRI() + return lhs.String() < rhs.String() + } + } + return false +} + +// LessThan compares two instances of this property with an arbitrary but stable +// comparison. Applications should not use this because it is only meant to +// help alternative implementations to go-fed to be able to normalize +// nonfunctional properties. +func (this ActivityStreamsSensitiveProperty) LessThan(o vocab.ActivityStreamsSensitiveProperty) bool { + l1 := this.Len() + l2 := o.Len() + l := l1 + if l2 < l1 { + l = l2 + } + for i := 0; i < l; i++ { + if this.properties[i].LessThan(o.At(i)) { + return true + } else if o.At(i).LessThan(this.properties[i]) { + return false + } + } + return l1 < l2 +} + +// Name returns the name of this property ("sensitive") with any alias. +func (this ActivityStreamsSensitiveProperty) Name() string { + if len(this.alias) > 0 { + return this.alias + ":" + "sensitive" + } else { + return "sensitive" + } +} + +// PrependIRI prepends an IRI value to the front of a list of the property +// "sensitive". +func (this *ActivityStreamsSensitiveProperty) PrependIRI(v *url.URL) { + this.properties = append([]*ActivityStreamsSensitivePropertyIterator{{ + alias: this.alias, + iri: v, + myIdx: 0, + parent: this, + }}, this.properties...) + for i := 1; i < this.Len(); i++ { + (this.properties)[i].myIdx = i + } +} + +// PrependXMLSchemaBoolean prepends a boolean value to the front of a list of the +// property "sensitive". Invalidates all iterators. +func (this *ActivityStreamsSensitiveProperty) PrependXMLSchemaBoolean(v bool) { + this.properties = append([]*ActivityStreamsSensitivePropertyIterator{{ + alias: this.alias, + hasBooleanMember: true, + myIdx: 0, + parent: this, + xmlschemaBooleanMember: v, + }}, this.properties...) + for i := 1; i < this.Len(); i++ { + (this.properties)[i].myIdx = i + } +} + +// Remove deletes an element at the specified index from a list of the property +// "sensitive", regardless of its type. Panics if the index is out of bounds. +// Invalidates all iterators. +func (this *ActivityStreamsSensitiveProperty) Remove(idx int) { + (this.properties)[idx].parent = nil + copy((this.properties)[idx:], (this.properties)[idx+1:]) + (this.properties)[len(this.properties)-1] = &ActivityStreamsSensitivePropertyIterator{} + this.properties = (this.properties)[:len(this.properties)-1] + for i := idx; i < this.Len(); i++ { + (this.properties)[i].myIdx = i + } +} + +// Serialize converts this into an interface representation suitable for +// marshalling into a text or binary format. Applications should not need this +// function as most typical use cases serialize types instead of individual +// properties. It is exposed for alternatives to go-fed implementations to use. +func (this ActivityStreamsSensitiveProperty) Serialize() (interface{}, error) { + s := make([]interface{}, 0, len(this.properties)) + for _, iterator := range this.properties { + if b, err := iterator.serialize(); err != nil { + return s, err + } else { + s = append(s, b) + } + } + // Shortcut: if serializing one value, don't return an array -- pretty sure other Fediverse software would choke on a "type" value with array, for example. + if len(s) == 1 { + return s[0], nil + } + return s, nil +} + +// Set sets a boolean value to be at the specified index for the property +// "sensitive". Panics if the index is out of bounds. Invalidates all +// iterators. +func (this *ActivityStreamsSensitiveProperty) Set(idx int, v bool) { + (this.properties)[idx].parent = nil + (this.properties)[idx] = &ActivityStreamsSensitivePropertyIterator{ + alias: this.alias, + hasBooleanMember: true, + myIdx: idx, + parent: this, + xmlschemaBooleanMember: v, + } +} + +// SetIRI sets an IRI value to be at the specified index for the property +// "sensitive". Panics if the index is out of bounds. +func (this *ActivityStreamsSensitiveProperty) SetIRI(idx int, v *url.URL) { + (this.properties)[idx].parent = nil + (this.properties)[idx] = &ActivityStreamsSensitivePropertyIterator{ + alias: this.alias, + iri: v, + myIdx: idx, + parent: this, + } +} + +// Swap swaps the location of values at two indices for the "sensitive" property. +func (this ActivityStreamsSensitiveProperty) Swap(i, j int) { + this.properties[i], this.properties[j] = this.properties[j], this.properties[i] +} diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_shares/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_shares/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_shares/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_shares/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares/gen_pkg.go index 5e5c55a03..08a1a9996 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_shares/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares/gen_pkg.go @@ -2,7 +2,7 @@ package propertyshares -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_shares/gen_property_activitystreams_shares.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares/gen_property_activitystreams_shares.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_shares/gen_property_activitystreams_shares.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares/gen_property_activitystreams_shares.go index 17d6b3b4e..05b849d41 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_shares/gen_property_activitystreams_shares.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares/gen_property_activitystreams_shares.go @@ -4,7 +4,7 @@ package propertyshares import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_source/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_source/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_source/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_source/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source/gen_pkg.go index 3ed50bcbe..9088fda69 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_source/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source/gen_pkg.go @@ -2,7 +2,7 @@ package propertysource -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_source/gen_property_activitystreams_source.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source/gen_property_activitystreams_source.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_source/gen_property_activitystreams_source.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source/gen_property_activitystreams_source.go index 35acec7c3..486041eae 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_source/gen_property_activitystreams_source.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source/gen_property_activitystreams_source.go @@ -4,7 +4,7 @@ package propertysource import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_startindex/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_startindex/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_startindex/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_startindex/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_startindex/gen_property_activitystreams_startIndex.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex/gen_property_activitystreams_startIndex.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_startindex/gen_property_activitystreams_startIndex.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex/gen_property_activitystreams_startIndex.go index 29c57b906..76d75af99 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_startindex/gen_property_activitystreams_startIndex.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex/gen_property_activitystreams_startIndex.go @@ -4,8 +4,8 @@ package propertystartindex import ( "fmt" - nonnegativeinteger "github.com/go-fed/activity/streams/values/nonNegativeInteger" - vocab "github.com/go-fed/activity/streams/vocab" + nonnegativeinteger "github.com/superseriousbusiness/activity/streams/values/nonNegativeInteger" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_starttime/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_starttime/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_starttime/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_starttime/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_starttime/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_starttime/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_starttime/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_starttime/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_starttime/gen_property_activitystreams_startTime.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_starttime/gen_property_activitystreams_startTime.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_starttime/gen_property_activitystreams_startTime.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_starttime/gen_property_activitystreams_startTime.go index 15b3168fe..d5e891c87 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_starttime/gen_property_activitystreams_startTime.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_starttime/gen_property_activitystreams_startTime.go @@ -4,8 +4,8 @@ package propertystarttime import ( "fmt" - datetime "github.com/go-fed/activity/streams/values/dateTime" - vocab "github.com/go-fed/activity/streams/vocab" + datetime "github.com/superseriousbusiness/activity/streams/values/dateTime" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" "time" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_streams/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_streams/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_streams/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_streams/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_streams/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_streams/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_streams/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_streams/gen_pkg.go index 1ddf6c14b..b66961850 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_streams/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_streams/gen_pkg.go @@ -2,7 +2,7 @@ package propertystreams -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_streams/gen_property_activitystreams_streams.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_streams/gen_property_activitystreams_streams.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_streams/gen_property_activitystreams_streams.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_streams/gen_property_activitystreams_streams.go index 83597d0c3..ee96b6600 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_streams/gen_property_activitystreams_streams.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_streams/gen_property_activitystreams_streams.go @@ -4,7 +4,7 @@ package propertystreams import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_subject/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_subject/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_subject/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_subject/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_subject/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_subject/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_subject/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_subject/gen_pkg.go index 75cc38e21..893da0b29 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_subject/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_subject/gen_pkg.go @@ -2,7 +2,7 @@ package propertysubject -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_subject/gen_property_activitystreams_subject.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_subject/gen_property_activitystreams_subject.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_subject/gen_property_activitystreams_subject.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_subject/gen_property_activitystreams_subject.go index 3d0e02e04..fc7cdb823 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_subject/gen_property_activitystreams_subject.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_subject/gen_property_activitystreams_subject.go @@ -4,7 +4,7 @@ package propertysubject import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_summary/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_summary/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_summary/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_summary/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_summary/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_summary/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_summary/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_summary/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_summary/gen_property_activitystreams_summary.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_summary/gen_property_activitystreams_summary.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_summary/gen_property_activitystreams_summary.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_summary/gen_property_activitystreams_summary.go index 5acc2dfda..750b0a766 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_summary/gen_property_activitystreams_summary.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_summary/gen_property_activitystreams_summary.go @@ -4,9 +4,9 @@ package propertysummary import ( "fmt" - langstring "github.com/go-fed/activity/streams/values/langString" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + langstring "github.com/superseriousbusiness/activity/streams/values/langString" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_tag/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_tag/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_tag/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_tag/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_tag/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_tag/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_tag/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_tag/gen_pkg.go index 1407af2c0..7fc5026e1 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_tag/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_tag/gen_pkg.go @@ -2,7 +2,7 @@ package propertytag -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_tag/gen_property_activitystreams_tag.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_tag/gen_property_activitystreams_tag.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_tag/gen_property_activitystreams_tag.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_tag/gen_property_activitystreams_tag.go index 2d1472f91..68d7ce035 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_tag/gen_property_activitystreams_tag.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_tag/gen_property_activitystreams_tag.go @@ -4,7 +4,7 @@ package propertytag import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_target/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_target/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_target/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_target/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_target/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_target/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_target/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_target/gen_pkg.go index e2404b595..47b9a3c24 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_target/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_target/gen_pkg.go @@ -2,7 +2,7 @@ package propertytarget -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_target/gen_property_activitystreams_target.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_target/gen_property_activitystreams_target.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_target/gen_property_activitystreams_target.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_target/gen_property_activitystreams_target.go index f5d293a8d..67af9c813 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_target/gen_property_activitystreams_target.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_target/gen_property_activitystreams_target.go @@ -4,7 +4,7 @@ package propertytarget import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_to/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_to/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_to/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_to/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_to/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_to/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_to/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_to/gen_pkg.go index c4f9f3b3b..6d11fa75a 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_to/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_to/gen_pkg.go @@ -2,7 +2,7 @@ package propertyto -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_to/gen_property_activitystreams_to.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_to/gen_property_activitystreams_to.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_to/gen_property_activitystreams_to.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_to/gen_property_activitystreams_to.go index b5082a484..a56f50245 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_to/gen_property_activitystreams_to.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_to/gen_property_activitystreams_to.go @@ -4,7 +4,7 @@ package propertyto import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_totalitems/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_totalitems/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_totalitems/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_totalitems/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_totalitems/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_totalitems/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_totalitems/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_totalitems/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_totalitems/gen_property_activitystreams_totalItems.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_totalitems/gen_property_activitystreams_totalItems.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_totalitems/gen_property_activitystreams_totalItems.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_totalitems/gen_property_activitystreams_totalItems.go index 96a61b94c..ae6e463b1 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_totalitems/gen_property_activitystreams_totalItems.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_totalitems/gen_property_activitystreams_totalItems.go @@ -4,8 +4,8 @@ package propertytotalitems import ( "fmt" - nonnegativeinteger "github.com/go-fed/activity/streams/values/nonNegativeInteger" - vocab "github.com/go-fed/activity/streams/vocab" + nonnegativeinteger "github.com/superseriousbusiness/activity/streams/values/nonNegativeInteger" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_units/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_units/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_units/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_units/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_units/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_units/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_units/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_units/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_units/gen_property_activitystreams_units.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_units/gen_property_activitystreams_units.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_units/gen_property_activitystreams_units.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_units/gen_property_activitystreams_units.go index cd90ad054..37c8fa8e2 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_units/gen_property_activitystreams_units.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_units/gen_property_activitystreams_units.go @@ -4,9 +4,9 @@ package propertyunits import ( "fmt" - anyuri "github.com/go-fed/activity/streams/values/anyURI" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + anyuri "github.com/superseriousbusiness/activity/streams/values/anyURI" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_updated/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_updated/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_updated/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_updated/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_updated/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_updated/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_updated/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_updated/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_updated/gen_property_activitystreams_updated.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_updated/gen_property_activitystreams_updated.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_updated/gen_property_activitystreams_updated.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_updated/gen_property_activitystreams_updated.go index df7b46b37..42ffd2a6b 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_updated/gen_property_activitystreams_updated.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_updated/gen_property_activitystreams_updated.go @@ -4,8 +4,8 @@ package propertyupdated import ( "fmt" - datetime "github.com/go-fed/activity/streams/values/dateTime" - vocab "github.com/go-fed/activity/streams/vocab" + datetime "github.com/superseriousbusiness/activity/streams/values/dateTime" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" "time" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_url/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_url/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_url/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_url/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_url/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_url/gen_pkg.go similarity index 93% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_url/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_url/gen_pkg.go index 6062eef25..cad89cd63 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_url/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_url/gen_pkg.go @@ -2,7 +2,7 @@ package propertyurl -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_url/gen_property_activitystreams_url.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_url/gen_property_activitystreams_url.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_url/gen_property_activitystreams_url.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_url/gen_property_activitystreams_url.go index 01ce5b51d..79719e452 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_url/gen_property_activitystreams_url.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_url/gen_property_activitystreams_url.go @@ -4,8 +4,8 @@ package propertyurl import ( "fmt" - anyuri "github.com/go-fed/activity/streams/values/anyURI" - vocab "github.com/go-fed/activity/streams/vocab" + anyuri "github.com/superseriousbusiness/activity/streams/values/anyURI" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_width/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_width/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_width/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_width/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_width/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_width/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_width/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_width/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_width/gen_property_activitystreams_width.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_width/gen_property_activitystreams_width.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_width/gen_property_activitystreams_width.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_width/gen_property_activitystreams_width.go index c03c337c2..5f2c7bd88 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/property_width/gen_property_activitystreams_width.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_width/gen_property_activitystreams_width.go @@ -4,8 +4,8 @@ package propertywidth import ( "fmt" - nonnegativeinteger "github.com/go-fed/activity/streams/values/nonNegativeInteger" - vocab "github.com/go-fed/activity/streams/vocab" + nonnegativeinteger "github.com/superseriousbusiness/activity/streams/values/nonNegativeInteger" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_accept/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_accept/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_accept/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_accept/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept/gen_pkg.go index 2068c7d5f..6e25594be 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_accept/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept/gen_pkg.go @@ -2,7 +2,7 @@ package typeaccept -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_accept/gen_type_activitystreams_accept.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept/gen_type_activitystreams_accept.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_accept/gen_type_activitystreams_accept.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept/gen_type_activitystreams_accept.go index 2c919e642..2e5b2a324 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_accept/gen_type_activitystreams_accept.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept/gen_type_activitystreams_accept.go @@ -4,7 +4,7 @@ package typeaccept import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -76,6 +76,7 @@ type ActivityStreamsAccept struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -307,6 +308,11 @@ func DeserializeAccept(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -437,6 +443,8 @@ func DeserializeAccept(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -655,6 +663,12 @@ func (this ActivityStreamsAccept) GetActivityStreamsResult() vocab.ActivityStrea return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsAccept) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsAccept) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -788,6 +802,7 @@ func (this ActivityStreamsAccept) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1201,6 +1216,20 @@ func (this ActivityStreamsAccept) LessThan(o vocab.ActivityStreamsAccept) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1630,6 +1659,14 @@ func (this ActivityStreamsAccept) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1883,6 +1920,11 @@ func (this *ActivityStreamsAccept) SetActivityStreamsResult(i vocab.ActivityStre this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsAccept) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsAccept) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_activity/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_activity/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity/gen_doc.go diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity/gen_pkg.go new file mode 100644 index 000000000..8e050beed --- /dev/null +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity/gen_pkg.go @@ -0,0 +1,211 @@ +// Code generated by astool. DO NOT EDIT. + +package typeactivity + +import vocab "github.com/superseriousbusiness/activity/streams/vocab" + +var mgr privateManager + +var typePropertyConstructor func() vocab.JSONLDTypeProperty + +// privateManager abstracts the code-generated manager that provides access to +// concrete implementations. +type privateManager interface { + // DeserializeActorPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsActorProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeActorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsActorProperty, error) + // DeserializeAltitudePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsAltitudeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeAltitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAltitudeProperty, error) + // DeserializeAttachmentPropertyActivityStreams returns the + // deserialization method for the "ActivityStreamsAttachmentProperty" + // non-functional property in the vocabulary "ActivityStreams" + DeserializeAttachmentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttachmentProperty, error) + // DeserializeAttributedToPropertyActivityStreams returns the + // deserialization method for the + // "ActivityStreamsAttributedToProperty" non-functional property in + // the vocabulary "ActivityStreams" + DeserializeAttributedToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttributedToProperty, error) + // DeserializeAudiencePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsAudienceProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeAudiencePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAudienceProperty, error) + // DeserializeBccPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsBccProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeBccPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBccProperty, error) + // DeserializeBtoPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsBtoProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeBtoPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBtoProperty, error) + // DeserializeCcPropertyActivityStreams returns the deserialization method + // for the "ActivityStreamsCcProperty" non-functional property in the + // vocabulary "ActivityStreams" + DeserializeCcPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCcProperty, error) + // DeserializeContentPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsContentProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeContentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContentProperty, error) + // DeserializeContextPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsContextProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeContextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContextProperty, error) + // DeserializeDurationPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsDurationProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeDurationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDurationProperty, error) + // DeserializeEndTimePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsEndTimeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error) + // DeserializeGeneratorPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsGeneratorProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeGeneratorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsGeneratorProperty, error) + // DeserializeIconPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsIconProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeIconPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIconProperty, error) + // DeserializeIdPropertyJSONLD returns the deserialization method for the + // "JSONLDIdProperty" non-functional property in the vocabulary + // "JSONLD" + DeserializeIdPropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDIdProperty, error) + // DeserializeImagePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsImageProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeImagePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsImageProperty, error) + // DeserializeInReplyToPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsInReplyToProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeInReplyToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInReplyToProperty, error) + // DeserializeInstrumentPropertyActivityStreams returns the + // deserialization method for the "ActivityStreamsInstrumentProperty" + // non-functional property in the vocabulary "ActivityStreams" + DeserializeInstrumentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInstrumentProperty, error) + // DeserializeLikesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsLikesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeLikesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLikesProperty, error) + // DeserializeLocationPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsLocationProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeLocationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLocationProperty, error) + // DeserializeMediaTypePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsMediaTypeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeMediaTypePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMediaTypeProperty, error) + // DeserializeNamePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsNameProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error) + // DeserializeObjectPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsObjectProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeObjectPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsObjectProperty, error) + // DeserializeOriginPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsOriginProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeOriginPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOriginProperty, error) + // DeserializePreviewPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsPreviewProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializePreviewPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPreviewProperty, error) + // DeserializePublishedPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsPublishedProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializePublishedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPublishedProperty, error) + // DeserializeRepliesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsRepliesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeResultPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsResultProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) + // DeserializeSharesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSharesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSharesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSharesProperty, error) + // DeserializeSourcePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSourceProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSourcePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSourceProperty, error) + // DeserializeStartTimePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsStartTimeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeStartTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStartTimeProperty, error) + // DeserializeSummaryPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSummaryProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSummaryPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSummaryProperty, error) + // DeserializeTagPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsTagProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeTagPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTagProperty, error) + // DeserializeTargetPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsTargetProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeTargetPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTargetProperty, error) + // DeserializeTeamPropertyForgeFed returns the deserialization method for + // the "ForgeFedTeamProperty" non-functional property in the + // vocabulary "ForgeFed" + DeserializeTeamPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTeamProperty, error) + // DeserializeTicketsTrackedByPropertyForgeFed returns the deserialization + // method for the "ForgeFedTicketsTrackedByProperty" non-functional + // property in the vocabulary "ForgeFed" + DeserializeTicketsTrackedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicketsTrackedByProperty, error) + // DeserializeToPropertyActivityStreams returns the deserialization method + // for the "ActivityStreamsToProperty" non-functional property in the + // vocabulary "ActivityStreams" + DeserializeToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsToProperty, error) + // DeserializeTracksTicketsForPropertyForgeFed returns the deserialization + // method for the "ForgeFedTracksTicketsForProperty" non-functional + // property in the vocabulary "ForgeFed" + DeserializeTracksTicketsForPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTracksTicketsForProperty, error) + // DeserializeTypePropertyJSONLD returns the deserialization method for + // the "JSONLDTypeProperty" non-functional property in the vocabulary + // "JSONLD" + DeserializeTypePropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDTypeProperty, error) + // DeserializeUpdatedPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsUpdatedProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeUpdatedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUpdatedProperty, error) + // DeserializeUrlPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsUrlProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeUrlPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUrlProperty, error) +} + +// jsonldContexter is a private interface to determine the JSON-LD contexts and +// aliases needed for functional and non-functional properties. It is a helper +// interface for this implementation. +type jsonldContexter interface { + // JSONLDContext returns the JSONLD URIs required in the context string + // for this property and the specific values that are set. The value + // in the map is the alias used to import the property's value or + // values. + JSONLDContext() map[string]string +} + +// SetManager sets the manager package-global variable. For internal use only, do +// not use as part of Application behavior. Must be called at golang init time. +func SetManager(m privateManager) { + mgr = m +} + +// SetTypePropertyConstructor sets the "type" property's constructor in the +// package-global variable. For internal use only, do not use as part of +// Application behavior. Must be called at golang init time. Permits +// ActivityStreams types to correctly set their "type" property at +// construction time, so users don't have to remember to do so each time. It +// is dependency injected so other go-fed compatible implementations could +// inject their own type. +func SetTypePropertyConstructor(f func() vocab.JSONLDTypeProperty) { + typePropertyConstructor = f +} diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_activity/gen_type_activitystreams_activity.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity/gen_type_activitystreams_activity.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_activity/gen_type_activitystreams_activity.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity/gen_type_activitystreams_activity.go index 337a5de07..4e4628358 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_activity/gen_type_activitystreams_activity.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity/gen_type_activitystreams_activity.go @@ -4,7 +4,7 @@ package typeactivity import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -56,6 +56,7 @@ type ActivityStreamsActivity struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -287,6 +288,11 @@ func DeserializeActivity(m map[string]interface{}, aliasMap map[string]string) ( } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -417,6 +423,8 @@ func DeserializeActivity(m map[string]interface{}, aliasMap map[string]string) ( continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -635,6 +643,12 @@ func (this ActivityStreamsActivity) GetActivityStreamsResult() vocab.ActivityStr return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsActivity) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsActivity) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -768,6 +782,7 @@ func (this ActivityStreamsActivity) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1181,6 +1196,20 @@ func (this ActivityStreamsActivity) LessThan(o vocab.ActivityStreamsActivity) bo // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1610,6 +1639,14 @@ func (this ActivityStreamsActivity) Serialize() (map[string]interface{}, error) m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1863,6 +1900,11 @@ func (this *ActivityStreamsActivity) SetActivityStreamsResult(i vocab.ActivitySt this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsActivity) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsActivity) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_add/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_add/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add/gen_doc.go diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add/gen_pkg.go new file mode 100644 index 000000000..326f6a5a4 --- /dev/null +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add/gen_pkg.go @@ -0,0 +1,211 @@ +// Code generated by astool. DO NOT EDIT. + +package typeadd + +import vocab "github.com/superseriousbusiness/activity/streams/vocab" + +var mgr privateManager + +var typePropertyConstructor func() vocab.JSONLDTypeProperty + +// privateManager abstracts the code-generated manager that provides access to +// concrete implementations. +type privateManager interface { + // DeserializeActorPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsActorProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeActorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsActorProperty, error) + // DeserializeAltitudePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsAltitudeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeAltitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAltitudeProperty, error) + // DeserializeAttachmentPropertyActivityStreams returns the + // deserialization method for the "ActivityStreamsAttachmentProperty" + // non-functional property in the vocabulary "ActivityStreams" + DeserializeAttachmentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttachmentProperty, error) + // DeserializeAttributedToPropertyActivityStreams returns the + // deserialization method for the + // "ActivityStreamsAttributedToProperty" non-functional property in + // the vocabulary "ActivityStreams" + DeserializeAttributedToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttributedToProperty, error) + // DeserializeAudiencePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsAudienceProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeAudiencePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAudienceProperty, error) + // DeserializeBccPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsBccProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeBccPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBccProperty, error) + // DeserializeBtoPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsBtoProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeBtoPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBtoProperty, error) + // DeserializeCcPropertyActivityStreams returns the deserialization method + // for the "ActivityStreamsCcProperty" non-functional property in the + // vocabulary "ActivityStreams" + DeserializeCcPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCcProperty, error) + // DeserializeContentPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsContentProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeContentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContentProperty, error) + // DeserializeContextPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsContextProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeContextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContextProperty, error) + // DeserializeDurationPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsDurationProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeDurationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDurationProperty, error) + // DeserializeEndTimePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsEndTimeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error) + // DeserializeGeneratorPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsGeneratorProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeGeneratorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsGeneratorProperty, error) + // DeserializeIconPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsIconProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeIconPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIconProperty, error) + // DeserializeIdPropertyJSONLD returns the deserialization method for the + // "JSONLDIdProperty" non-functional property in the vocabulary + // "JSONLD" + DeserializeIdPropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDIdProperty, error) + // DeserializeImagePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsImageProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeImagePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsImageProperty, error) + // DeserializeInReplyToPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsInReplyToProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeInReplyToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInReplyToProperty, error) + // DeserializeInstrumentPropertyActivityStreams returns the + // deserialization method for the "ActivityStreamsInstrumentProperty" + // non-functional property in the vocabulary "ActivityStreams" + DeserializeInstrumentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInstrumentProperty, error) + // DeserializeLikesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsLikesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeLikesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLikesProperty, error) + // DeserializeLocationPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsLocationProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeLocationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLocationProperty, error) + // DeserializeMediaTypePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsMediaTypeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeMediaTypePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMediaTypeProperty, error) + // DeserializeNamePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsNameProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error) + // DeserializeObjectPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsObjectProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeObjectPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsObjectProperty, error) + // DeserializeOriginPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsOriginProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeOriginPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOriginProperty, error) + // DeserializePreviewPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsPreviewProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializePreviewPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPreviewProperty, error) + // DeserializePublishedPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsPublishedProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializePublishedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPublishedProperty, error) + // DeserializeRepliesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsRepliesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeResultPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsResultProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) + // DeserializeSharesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSharesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSharesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSharesProperty, error) + // DeserializeSourcePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSourceProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSourcePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSourceProperty, error) + // DeserializeStartTimePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsStartTimeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeStartTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStartTimeProperty, error) + // DeserializeSummaryPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSummaryProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSummaryPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSummaryProperty, error) + // DeserializeTagPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsTagProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeTagPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTagProperty, error) + // DeserializeTargetPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsTargetProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeTargetPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTargetProperty, error) + // DeserializeTeamPropertyForgeFed returns the deserialization method for + // the "ForgeFedTeamProperty" non-functional property in the + // vocabulary "ForgeFed" + DeserializeTeamPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTeamProperty, error) + // DeserializeTicketsTrackedByPropertyForgeFed returns the deserialization + // method for the "ForgeFedTicketsTrackedByProperty" non-functional + // property in the vocabulary "ForgeFed" + DeserializeTicketsTrackedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicketsTrackedByProperty, error) + // DeserializeToPropertyActivityStreams returns the deserialization method + // for the "ActivityStreamsToProperty" non-functional property in the + // vocabulary "ActivityStreams" + DeserializeToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsToProperty, error) + // DeserializeTracksTicketsForPropertyForgeFed returns the deserialization + // method for the "ForgeFedTracksTicketsForProperty" non-functional + // property in the vocabulary "ForgeFed" + DeserializeTracksTicketsForPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTracksTicketsForProperty, error) + // DeserializeTypePropertyJSONLD returns the deserialization method for + // the "JSONLDTypeProperty" non-functional property in the vocabulary + // "JSONLD" + DeserializeTypePropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDTypeProperty, error) + // DeserializeUpdatedPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsUpdatedProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeUpdatedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUpdatedProperty, error) + // DeserializeUrlPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsUrlProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeUrlPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUrlProperty, error) +} + +// jsonldContexter is a private interface to determine the JSON-LD contexts and +// aliases needed for functional and non-functional properties. It is a helper +// interface for this implementation. +type jsonldContexter interface { + // JSONLDContext returns the JSONLD URIs required in the context string + // for this property and the specific values that are set. The value + // in the map is the alias used to import the property's value or + // values. + JSONLDContext() map[string]string +} + +// SetManager sets the manager package-global variable. For internal use only, do +// not use as part of Application behavior. Must be called at golang init time. +func SetManager(m privateManager) { + mgr = m +} + +// SetTypePropertyConstructor sets the "type" property's constructor in the +// package-global variable. For internal use only, do not use as part of +// Application behavior. Must be called at golang init time. Permits +// ActivityStreams types to correctly set their "type" property at +// construction time, so users don't have to remember to do so each time. It +// is dependency injected so other go-fed compatible implementations could +// inject their own type. +func SetTypePropertyConstructor(f func() vocab.JSONLDTypeProperty) { + typePropertyConstructor = f +} diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_add/gen_type_activitystreams_add.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add/gen_type_activitystreams_add.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_add/gen_type_activitystreams_add.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add/gen_type_activitystreams_add.go index 770a4c13f..adc3be875 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_add/gen_type_activitystreams_add.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add/gen_type_activitystreams_add.go @@ -4,7 +4,7 @@ package typeadd import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -76,6 +76,7 @@ type ActivityStreamsAdd struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -302,6 +303,11 @@ func DeserializeAdd(m map[string]interface{}, aliasMap map[string]string) (*Acti } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -432,6 +438,8 @@ func DeserializeAdd(m map[string]interface{}, aliasMap map[string]string) (*Acti continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -650,6 +658,12 @@ func (this ActivityStreamsAdd) GetActivityStreamsResult() vocab.ActivityStreamsR return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsAdd) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsAdd) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -783,6 +797,7 @@ func (this ActivityStreamsAdd) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1196,6 +1211,20 @@ func (this ActivityStreamsAdd) LessThan(o vocab.ActivityStreamsAdd) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1625,6 +1654,14 @@ func (this ActivityStreamsAdd) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1878,6 +1915,11 @@ func (this *ActivityStreamsAdd) SetActivityStreamsResult(i vocab.ActivityStreams this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsAdd) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsAdd) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_announce/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_announce/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce/gen_doc.go diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce/gen_pkg.go new file mode 100644 index 000000000..af1af29d9 --- /dev/null +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce/gen_pkg.go @@ -0,0 +1,211 @@ +// Code generated by astool. DO NOT EDIT. + +package typeannounce + +import vocab "github.com/superseriousbusiness/activity/streams/vocab" + +var mgr privateManager + +var typePropertyConstructor func() vocab.JSONLDTypeProperty + +// privateManager abstracts the code-generated manager that provides access to +// concrete implementations. +type privateManager interface { + // DeserializeActorPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsActorProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeActorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsActorProperty, error) + // DeserializeAltitudePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsAltitudeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeAltitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAltitudeProperty, error) + // DeserializeAttachmentPropertyActivityStreams returns the + // deserialization method for the "ActivityStreamsAttachmentProperty" + // non-functional property in the vocabulary "ActivityStreams" + DeserializeAttachmentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttachmentProperty, error) + // DeserializeAttributedToPropertyActivityStreams returns the + // deserialization method for the + // "ActivityStreamsAttributedToProperty" non-functional property in + // the vocabulary "ActivityStreams" + DeserializeAttributedToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttributedToProperty, error) + // DeserializeAudiencePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsAudienceProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeAudiencePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAudienceProperty, error) + // DeserializeBccPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsBccProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeBccPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBccProperty, error) + // DeserializeBtoPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsBtoProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeBtoPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBtoProperty, error) + // DeserializeCcPropertyActivityStreams returns the deserialization method + // for the "ActivityStreamsCcProperty" non-functional property in the + // vocabulary "ActivityStreams" + DeserializeCcPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCcProperty, error) + // DeserializeContentPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsContentProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeContentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContentProperty, error) + // DeserializeContextPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsContextProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeContextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContextProperty, error) + // DeserializeDurationPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsDurationProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeDurationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDurationProperty, error) + // DeserializeEndTimePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsEndTimeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error) + // DeserializeGeneratorPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsGeneratorProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeGeneratorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsGeneratorProperty, error) + // DeserializeIconPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsIconProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeIconPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIconProperty, error) + // DeserializeIdPropertyJSONLD returns the deserialization method for the + // "JSONLDIdProperty" non-functional property in the vocabulary + // "JSONLD" + DeserializeIdPropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDIdProperty, error) + // DeserializeImagePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsImageProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeImagePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsImageProperty, error) + // DeserializeInReplyToPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsInReplyToProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeInReplyToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInReplyToProperty, error) + // DeserializeInstrumentPropertyActivityStreams returns the + // deserialization method for the "ActivityStreamsInstrumentProperty" + // non-functional property in the vocabulary "ActivityStreams" + DeserializeInstrumentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInstrumentProperty, error) + // DeserializeLikesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsLikesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeLikesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLikesProperty, error) + // DeserializeLocationPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsLocationProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeLocationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLocationProperty, error) + // DeserializeMediaTypePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsMediaTypeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeMediaTypePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMediaTypeProperty, error) + // DeserializeNamePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsNameProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error) + // DeserializeObjectPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsObjectProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeObjectPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsObjectProperty, error) + // DeserializeOriginPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsOriginProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeOriginPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOriginProperty, error) + // DeserializePreviewPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsPreviewProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializePreviewPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPreviewProperty, error) + // DeserializePublishedPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsPublishedProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializePublishedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPublishedProperty, error) + // DeserializeRepliesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsRepliesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeResultPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsResultProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) + // DeserializeSharesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSharesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSharesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSharesProperty, error) + // DeserializeSourcePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSourceProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSourcePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSourceProperty, error) + // DeserializeStartTimePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsStartTimeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeStartTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStartTimeProperty, error) + // DeserializeSummaryPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSummaryProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSummaryPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSummaryProperty, error) + // DeserializeTagPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsTagProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeTagPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTagProperty, error) + // DeserializeTargetPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsTargetProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeTargetPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTargetProperty, error) + // DeserializeTeamPropertyForgeFed returns the deserialization method for + // the "ForgeFedTeamProperty" non-functional property in the + // vocabulary "ForgeFed" + DeserializeTeamPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTeamProperty, error) + // DeserializeTicketsTrackedByPropertyForgeFed returns the deserialization + // method for the "ForgeFedTicketsTrackedByProperty" non-functional + // property in the vocabulary "ForgeFed" + DeserializeTicketsTrackedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicketsTrackedByProperty, error) + // DeserializeToPropertyActivityStreams returns the deserialization method + // for the "ActivityStreamsToProperty" non-functional property in the + // vocabulary "ActivityStreams" + DeserializeToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsToProperty, error) + // DeserializeTracksTicketsForPropertyForgeFed returns the deserialization + // method for the "ForgeFedTracksTicketsForProperty" non-functional + // property in the vocabulary "ForgeFed" + DeserializeTracksTicketsForPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTracksTicketsForProperty, error) + // DeserializeTypePropertyJSONLD returns the deserialization method for + // the "JSONLDTypeProperty" non-functional property in the vocabulary + // "JSONLD" + DeserializeTypePropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDTypeProperty, error) + // DeserializeUpdatedPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsUpdatedProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeUpdatedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUpdatedProperty, error) + // DeserializeUrlPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsUrlProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeUrlPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUrlProperty, error) +} + +// jsonldContexter is a private interface to determine the JSON-LD contexts and +// aliases needed for functional and non-functional properties. It is a helper +// interface for this implementation. +type jsonldContexter interface { + // JSONLDContext returns the JSONLD URIs required in the context string + // for this property and the specific values that are set. The value + // in the map is the alias used to import the property's value or + // values. + JSONLDContext() map[string]string +} + +// SetManager sets the manager package-global variable. For internal use only, do +// not use as part of Application behavior. Must be called at golang init time. +func SetManager(m privateManager) { + mgr = m +} + +// SetTypePropertyConstructor sets the "type" property's constructor in the +// package-global variable. For internal use only, do not use as part of +// Application behavior. Must be called at golang init time. Permits +// ActivityStreams types to correctly set their "type" property at +// construction time, so users don't have to remember to do so each time. It +// is dependency injected so other go-fed compatible implementations could +// inject their own type. +func SetTypePropertyConstructor(f func() vocab.JSONLDTypeProperty) { + typePropertyConstructor = f +} diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_announce/gen_type_activitystreams_announce.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce/gen_type_activitystreams_announce.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_announce/gen_type_activitystreams_announce.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce/gen_type_activitystreams_announce.go index 761e3ef5a..e8ee9a453 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_announce/gen_type_activitystreams_announce.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce/gen_type_activitystreams_announce.go @@ -4,7 +4,7 @@ package typeannounce import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -58,6 +58,7 @@ type ActivityStreamsAnnounce struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -284,6 +285,11 @@ func DeserializeAnnounce(m map[string]interface{}, aliasMap map[string]string) ( } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -414,6 +420,8 @@ func DeserializeAnnounce(m map[string]interface{}, aliasMap map[string]string) ( continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -632,6 +640,12 @@ func (this ActivityStreamsAnnounce) GetActivityStreamsResult() vocab.ActivityStr return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsAnnounce) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsAnnounce) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -765,6 +779,7 @@ func (this ActivityStreamsAnnounce) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1178,6 +1193,20 @@ func (this ActivityStreamsAnnounce) LessThan(o vocab.ActivityStreamsAnnounce) bo // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1607,6 +1636,14 @@ func (this ActivityStreamsAnnounce) Serialize() (map[string]interface{}, error) m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1860,6 +1897,11 @@ func (this *ActivityStreamsAnnounce) SetActivityStreamsResult(i vocab.ActivitySt this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsAnnounce) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsAnnounce) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_application/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_application/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_application/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_application/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application/gen_pkg.go index 05764bc36..707f83ab4 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_application/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application/gen_pkg.go @@ -2,7 +2,7 @@ package typeapplication -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -150,6 +150,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_application/gen_type_activitystreams_application.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application/gen_type_activitystreams_application.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_application/gen_type_activitystreams_application.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application/gen_type_activitystreams_application.go index ba850008b..7aa8f9f83 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_application/gen_type_activitystreams_application.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application/gen_type_activitystreams_application.go @@ -4,7 +4,7 @@ package typeapplication import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -50,6 +50,7 @@ type ActivityStreamsApplication struct { W3IDSecurityV1PublicKey vocab.W3IDSecurityV1PublicKeyProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -306,6 +307,11 @@ func DeserializeApplication(m map[string]interface{}, aliasMap map[string]string } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -450,6 +456,8 @@ func DeserializeApplication(m map[string]interface{}, aliasMap map[string]string continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -686,6 +694,12 @@ func (this ActivityStreamsApplication) GetActivityStreamsReplies() vocab.Activit return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsApplication) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsApplication) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -842,6 +856,7 @@ func (this ActivityStreamsApplication) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.W3IDSecurityV1PublicKey, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1339,6 +1354,20 @@ func (this ActivityStreamsApplication) LessThan(o vocab.ActivityStreamsApplicati // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1816,6 +1845,14 @@ func (this ActivityStreamsApplication) Serialize() (map[string]interface{}, erro m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -2085,6 +2122,11 @@ func (this *ActivityStreamsApplication) SetActivityStreamsReplies(i vocab.Activi this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsApplication) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsApplication) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_arrive/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_arrive/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_announce/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_announce/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive/gen_pkg.go index 626354eb2..1ee179dd4 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_announce/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive/gen_pkg.go @@ -1,8 +1,8 @@ // Code generated by astool. DO NOT EDIT. -package typeannounce +package typearrive -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -100,10 +100,6 @@ type privateManager interface { // method for the "ActivityStreamsNameProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error) - // DeserializeObjectPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsObjectProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeObjectPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsObjectProperty, error) // DeserializeOriginPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsOriginProperty" non-functional // property in the vocabulary "ActivityStreams" @@ -124,6 +120,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_arrive/gen_type_activitystreams_arrive.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive/gen_type_activitystreams_arrive.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_arrive/gen_type_activitystreams_arrive.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive/gen_type_activitystreams_arrive.go index 0e09740e6..20dcbec22 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_arrive/gen_type_activitystreams_arrive.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive/gen_type_activitystreams_arrive.go @@ -4,7 +4,7 @@ package typearrive import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -57,6 +57,7 @@ type ActivityStreamsArrive struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -278,6 +279,11 @@ func DeserializeArrive(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -406,6 +412,8 @@ func DeserializeArrive(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -618,6 +626,12 @@ func (this ActivityStreamsArrive) GetActivityStreamsResult() vocab.ActivityStrea return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsArrive) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsArrive) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -750,6 +764,7 @@ func (this ActivityStreamsArrive) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1149,6 +1164,20 @@ func (this ActivityStreamsArrive) LessThan(o vocab.ActivityStreamsArrive) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1570,6 +1599,14 @@ func (this ActivityStreamsArrive) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1818,6 +1855,11 @@ func (this *ActivityStreamsArrive) SetActivityStreamsResult(i vocab.ActivityStre this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsArrive) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsArrive) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_article/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_article/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_article/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_article/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article/gen_pkg.go index 4c0055c5c..eafe0ec1f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_article/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article/gen_pkg.go @@ -2,7 +2,7 @@ package typearticle -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -108,6 +108,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_article/gen_type_activitystreams_article.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article/gen_type_activitystreams_article.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_article/gen_type_activitystreams_article.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article/gen_type_activitystreams_article.go index 158c880ad..95e4c8c2c 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_article/gen_type_activitystreams_article.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article/gen_type_activitystreams_article.go @@ -4,7 +4,7 @@ package typearticle import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -43,6 +43,7 @@ type ActivityStreamsArticle struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -248,6 +249,11 @@ func DeserializeArticle(m map[string]interface{}, aliasMap map[string]string) (* } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -365,6 +371,8 @@ func DeserializeArticle(m map[string]interface{}, aliasMap map[string]string) (* continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -557,6 +565,12 @@ func (this ActivityStreamsArticle) GetActivityStreamsReplies() vocab.ActivityStr return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsArticle) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsArticle) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -680,6 +694,7 @@ func (this ActivityStreamsArticle) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1036,6 +1051,20 @@ func (this ActivityStreamsArticle) LessThan(o vocab.ActivityStreamsArticle) bool // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1419,6 +1448,14 @@ func (this ActivityStreamsArticle) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1644,6 +1681,11 @@ func (this *ActivityStreamsArticle) SetActivityStreamsReplies(i vocab.ActivitySt this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsArticle) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsArticle) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_audio/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_audio/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_audio/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_audio/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio/gen_pkg.go index ece118158..45af5af65 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_audio/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio/gen_pkg.go @@ -2,7 +2,7 @@ package typeaudio -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -112,6 +112,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_audio/gen_type_activitystreams_audio.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio/gen_type_activitystreams_audio.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_audio/gen_type_activitystreams_audio.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio/gen_type_activitystreams_audio.go index 30a004090..1f23a82ef 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_audio/gen_type_activitystreams_audio.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio/gen_type_activitystreams_audio.go @@ -4,7 +4,7 @@ package typeaudio import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -46,6 +46,7 @@ type ActivityStreamsAudio struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -256,6 +257,11 @@ func DeserializeAudio(m map[string]interface{}, aliasMap map[string]string) (*Ac } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -375,6 +381,8 @@ func DeserializeAudio(m map[string]interface{}, aliasMap map[string]string) (*Ac continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -567,6 +575,12 @@ func (this ActivityStreamsAudio) GetActivityStreamsReplies() vocab.ActivityStrea return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsAudio) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsAudio) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -696,6 +710,7 @@ func (this ActivityStreamsAudio) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1066,6 +1081,20 @@ func (this ActivityStreamsAudio) LessThan(o vocab.ActivityStreamsAudio) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1457,6 +1486,14 @@ func (this ActivityStreamsAudio) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1682,6 +1719,11 @@ func (this *ActivityStreamsAudio) SetActivityStreamsReplies(i vocab.ActivityStre this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsAudio) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsAudio) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_block/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_block/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_block/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_block/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block/gen_pkg.go index 23e71ecc6..f96cdce5c 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_block/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block/gen_pkg.go @@ -2,7 +2,7 @@ package typeblock -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_block/gen_type_activitystreams_block.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block/gen_type_activitystreams_block.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_block/gen_type_activitystreams_block.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block/gen_type_activitystreams_block.go index 07a7c985f..c7e3212bd 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_block/gen_type_activitystreams_block.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block/gen_type_activitystreams_block.go @@ -4,7 +4,7 @@ package typeblock import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -49,6 +49,7 @@ type ActivityStreamsBlock struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -275,6 +276,11 @@ func DeserializeBlock(m map[string]interface{}, aliasMap map[string]string) (*Ac } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -405,6 +411,8 @@ func DeserializeBlock(m map[string]interface{}, aliasMap map[string]string) (*Ac continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -623,6 +631,12 @@ func (this ActivityStreamsBlock) GetActivityStreamsResult() vocab.ActivityStream return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsBlock) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsBlock) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -756,6 +770,7 @@ func (this ActivityStreamsBlock) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1169,6 +1184,20 @@ func (this ActivityStreamsBlock) LessThan(o vocab.ActivityStreamsBlock) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1598,6 +1627,14 @@ func (this ActivityStreamsBlock) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1851,6 +1888,11 @@ func (this *ActivityStreamsBlock) SetActivityStreamsResult(i vocab.ActivityStrea this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsBlock) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsBlock) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collection/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collection/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collection/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collection/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection/gen_pkg.go index 45181d662..8d3067544 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collection/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection/gen_pkg.go @@ -2,7 +2,7 @@ package typecollection -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collection/gen_type_activitystreams_collection.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection/gen_type_activitystreams_collection.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collection/gen_type_activitystreams_collection.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection/gen_type_activitystreams_collection.go index 6482591ac..b00075b56 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collection/gen_type_activitystreams_collection.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection/gen_type_activitystreams_collection.go @@ -4,7 +4,7 @@ package typecollection import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -57,6 +57,7 @@ type ActivityStreamsCollection struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -288,6 +289,11 @@ func DeserializeCollection(m map[string]interface{}, aliasMap map[string]string) } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -418,6 +424,8 @@ func DeserializeCollection(m map[string]interface{}, aliasMap map[string]string) continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -636,6 +644,12 @@ func (this ActivityStreamsCollection) GetActivityStreamsReplies() vocab.Activity return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsCollection) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsCollection) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -769,6 +783,7 @@ func (this ActivityStreamsCollection) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1182,6 +1197,20 @@ func (this ActivityStreamsCollection) LessThan(o vocab.ActivityStreamsCollection // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1611,6 +1640,14 @@ func (this ActivityStreamsCollection) Serialize() (map[string]interface{}, error m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1864,6 +1901,11 @@ func (this *ActivityStreamsCollection) SetActivityStreamsReplies(i vocab.Activit this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsCollection) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsCollection) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage/gen_pkg.go index 0ac83ca98..a8564ef5e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage/gen_pkg.go @@ -2,7 +2,7 @@ package typecollectionpage -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -136,6 +136,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage/gen_type_activitystreams_collectionpage.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage/gen_type_activitystreams_collectionpage.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage/gen_type_activitystreams_collectionpage.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage/gen_type_activitystreams_collectionpage.go index 126f14aca..47d9f79f1 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage/gen_type_activitystreams_collectionpage.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage/gen_type_activitystreams_collectionpage.go @@ -4,7 +4,7 @@ package typecollectionpage import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -61,6 +61,7 @@ type ActivityStreamsCollectionPage struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -307,6 +308,11 @@ func DeserializeCollectionPage(m map[string]interface{}, aliasMap map[string]str } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -443,6 +449,8 @@ func DeserializeCollectionPage(m map[string]interface{}, aliasMap map[string]str continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -679,6 +687,12 @@ func (this ActivityStreamsCollectionPage) GetActivityStreamsReplies() vocab.Acti return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsCollectionPage) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsCollectionPage) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -815,6 +829,7 @@ func (this ActivityStreamsCollectionPage) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1270,6 +1285,20 @@ func (this ActivityStreamsCollectionPage) LessThan(o vocab.ActivityStreamsCollec // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1723,6 +1752,14 @@ func (this ActivityStreamsCollectionPage) Serialize() (map[string]interface{}, e m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1991,6 +2028,11 @@ func (this *ActivityStreamsCollectionPage) SetActivityStreamsReplies(i vocab.Act this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsCollectionPage) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsCollectionPage) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_create/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_create/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_create/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_create/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create/gen_pkg.go index 64861bdfc..b582b43a9 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_create/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create/gen_pkg.go @@ -2,7 +2,7 @@ package typecreate -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_create/gen_type_activitystreams_create.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create/gen_type_activitystreams_create.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_create/gen_type_activitystreams_create.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create/gen_type_activitystreams_create.go index 05c74e360..1dde08a5a 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_create/gen_type_activitystreams_create.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create/gen_type_activitystreams_create.go @@ -4,7 +4,7 @@ package typecreate import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -53,6 +53,7 @@ type ActivityStreamsCreate struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -279,6 +280,11 @@ func DeserializeCreate(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -409,6 +415,8 @@ func DeserializeCreate(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -627,6 +635,12 @@ func (this ActivityStreamsCreate) GetActivityStreamsResult() vocab.ActivityStrea return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsCreate) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsCreate) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -760,6 +774,7 @@ func (this ActivityStreamsCreate) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1173,6 +1188,20 @@ func (this ActivityStreamsCreate) LessThan(o vocab.ActivityStreamsCreate) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1602,6 +1631,14 @@ func (this ActivityStreamsCreate) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1855,6 +1892,11 @@ func (this *ActivityStreamsCreate) SetActivityStreamsResult(i vocab.ActivityStre this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsCreate) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsCreate) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_delete/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_delete/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_delete/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_delete/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete/gen_pkg.go index 59f8c6eb7..b0908cbb0 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_delete/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete/gen_pkg.go @@ -2,7 +2,7 @@ package typedelete -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_delete/gen_type_activitystreams_delete.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete/gen_type_activitystreams_delete.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_delete/gen_type_activitystreams_delete.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete/gen_type_activitystreams_delete.go index 4876994b5..43dedbac3 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_delete/gen_type_activitystreams_delete.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete/gen_type_activitystreams_delete.go @@ -4,7 +4,7 @@ package typedelete import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -54,6 +54,7 @@ type ActivityStreamsDelete struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -280,6 +281,11 @@ func DeserializeDelete(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -410,6 +416,8 @@ func DeserializeDelete(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -628,6 +636,12 @@ func (this ActivityStreamsDelete) GetActivityStreamsResult() vocab.ActivityStrea return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsDelete) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsDelete) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -761,6 +775,7 @@ func (this ActivityStreamsDelete) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1174,6 +1189,20 @@ func (this ActivityStreamsDelete) LessThan(o vocab.ActivityStreamsDelete) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1603,6 +1632,14 @@ func (this ActivityStreamsDelete) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1856,6 +1893,11 @@ func (this *ActivityStreamsDelete) SetActivityStreamsResult(i vocab.ActivityStre this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsDelete) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsDelete) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_dislike/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_dislike/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_dislike/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_dislike/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike/gen_pkg.go index dd34234a3..876e5d113 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_dislike/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike/gen_pkg.go @@ -2,7 +2,7 @@ package typedislike -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_dislike/gen_type_activitystreams_dislike.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike/gen_type_activitystreams_dislike.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_dislike/gen_type_activitystreams_dislike.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike/gen_type_activitystreams_dislike.go index 4ac4abfa7..e0dc27cd5 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_dislike/gen_type_activitystreams_dislike.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike/gen_type_activitystreams_dislike.go @@ -4,7 +4,7 @@ package typedislike import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -46,6 +46,7 @@ type ActivityStreamsDislike struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -252,6 +253,11 @@ func DeserializeDislike(m map[string]interface{}, aliasMap map[string]string) (* } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -382,6 +388,8 @@ func DeserializeDislike(m map[string]interface{}, aliasMap map[string]string) (* continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -620,6 +628,12 @@ func (this ActivityStreamsDislike) GetActivityStreamsResult() vocab.ActivityStre return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsDislike) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsDislike) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -753,6 +767,7 @@ func (this ActivityStreamsDislike) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1166,6 +1181,20 @@ func (this ActivityStreamsDislike) LessThan(o vocab.ActivityStreamsDislike) bool // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1595,6 +1624,14 @@ func (this ActivityStreamsDislike) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1848,6 +1885,11 @@ func (this *ActivityStreamsDislike) SetActivityStreamsResult(i vocab.ActivityStr this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsDislike) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsDislike) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_document/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_document/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_document/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_document/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document/gen_pkg.go index a64977722..d4145b6f6 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_document/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document/gen_pkg.go @@ -2,7 +2,7 @@ package typedocument -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -112,6 +112,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_document/gen_type_activitystreams_document.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document/gen_type_activitystreams_document.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_document/gen_type_activitystreams_document.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document/gen_type_activitystreams_document.go index 093f6391e..9663fae73 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_document/gen_type_activitystreams_document.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document/gen_type_activitystreams_document.go @@ -4,7 +4,7 @@ package typedocument import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -42,6 +42,7 @@ type ActivityStreamsDocument struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -232,6 +233,11 @@ func DeserializeDocument(m map[string]interface{}, aliasMap map[string]string) ( } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -351,6 +357,8 @@ func DeserializeDocument(m map[string]interface{}, aliasMap map[string]string) ( continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -568,6 +576,12 @@ func (this ActivityStreamsDocument) GetActivityStreamsReplies() vocab.ActivitySt return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsDocument) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsDocument) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -697,6 +711,7 @@ func (this ActivityStreamsDocument) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1067,6 +1082,20 @@ func (this ActivityStreamsDocument) LessThan(o vocab.ActivityStreamsDocument) bo // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1458,6 +1487,14 @@ func (this ActivityStreamsDocument) Serialize() (map[string]interface{}, error) m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1683,6 +1720,11 @@ func (this *ActivityStreamsDocument) SetActivityStreamsReplies(i vocab.ActivityS this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsDocument) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsDocument) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_event/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_event/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_event/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_event/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event/gen_pkg.go index 74af2a1d5..d18688f53 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_event/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event/gen_pkg.go @@ -2,7 +2,7 @@ package typeevent -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -108,6 +108,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_event/gen_type_activitystreams_event.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event/gen_type_activitystreams_event.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_event/gen_type_activitystreams_event.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event/gen_type_activitystreams_event.go index 6ebf1de39..e9fb7cd0f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_event/gen_type_activitystreams_event.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event/gen_type_activitystreams_event.go @@ -4,7 +4,7 @@ package typeevent import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -42,6 +42,7 @@ type ActivityStreamsEvent struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -227,6 +228,11 @@ func DeserializeEvent(m map[string]interface{}, aliasMap map[string]string) (*Ac } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -344,6 +350,8 @@ func DeserializeEvent(m map[string]interface{}, aliasMap map[string]string) (*Ac continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -556,6 +564,12 @@ func (this ActivityStreamsEvent) GetActivityStreamsReplies() vocab.ActivityStrea return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsEvent) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsEvent) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -679,6 +693,7 @@ func (this ActivityStreamsEvent) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1035,6 +1050,20 @@ func (this ActivityStreamsEvent) LessThan(o vocab.ActivityStreamsEvent) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1418,6 +1447,14 @@ func (this ActivityStreamsEvent) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1643,6 +1680,11 @@ func (this *ActivityStreamsEvent) SetActivityStreamsReplies(i vocab.ActivityStre this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsEvent) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsEvent) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_flag/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_flag/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_flag/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_flag/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag/gen_pkg.go index 9099556ba..094b751f4 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_flag/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag/gen_pkg.go @@ -2,7 +2,7 @@ package typeflag -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_flag/gen_type_activitystreams_flag.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag/gen_type_activitystreams_flag.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_flag/gen_type_activitystreams_flag.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag/gen_type_activitystreams_flag.go index f979a1f93..fe55a0f3f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_flag/gen_type_activitystreams_flag.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag/gen_type_activitystreams_flag.go @@ -4,7 +4,7 @@ package typeflag import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -51,6 +51,7 @@ type ActivityStreamsFlag struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -257,6 +258,11 @@ func DeserializeFlag(m map[string]interface{}, aliasMap map[string]string) (*Act } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -387,6 +393,8 @@ func DeserializeFlag(m map[string]interface{}, aliasMap map[string]string) (*Act continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -625,6 +633,12 @@ func (this ActivityStreamsFlag) GetActivityStreamsResult() vocab.ActivityStreams return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsFlag) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsFlag) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -758,6 +772,7 @@ func (this ActivityStreamsFlag) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1171,6 +1186,20 @@ func (this ActivityStreamsFlag) LessThan(o vocab.ActivityStreamsFlag) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1600,6 +1629,14 @@ func (this ActivityStreamsFlag) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1853,6 +1890,11 @@ func (this *ActivityStreamsFlag) SetActivityStreamsResult(i vocab.ActivityStream this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsFlag) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsFlag) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_follow/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_follow/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_follow/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_follow/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow/gen_pkg.go index 17d65c295..c2aad58e8 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_follow/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow/gen_pkg.go @@ -2,7 +2,7 @@ package typefollow -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_follow/gen_type_activitystreams_follow.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow/gen_type_activitystreams_follow.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_follow/gen_type_activitystreams_follow.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow/gen_type_activitystreams_follow.go index 1cf4b896f..3b454cbb9 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_follow/gen_type_activitystreams_follow.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow/gen_type_activitystreams_follow.go @@ -4,7 +4,7 @@ package typefollow import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -55,6 +55,7 @@ type ActivityStreamsFollow struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -261,6 +262,11 @@ func DeserializeFollow(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -391,6 +397,8 @@ func DeserializeFollow(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -629,6 +637,12 @@ func (this ActivityStreamsFollow) GetActivityStreamsResult() vocab.ActivityStrea return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsFollow) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsFollow) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -762,6 +776,7 @@ func (this ActivityStreamsFollow) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1175,6 +1190,20 @@ func (this ActivityStreamsFollow) LessThan(o vocab.ActivityStreamsFollow) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1604,6 +1633,14 @@ func (this ActivityStreamsFollow) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1857,6 +1894,11 @@ func (this *ActivityStreamsFollow) SetActivityStreamsResult(i vocab.ActivityStre this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsFollow) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsFollow) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_group/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_group/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_group/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_group/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group/gen_pkg.go index 167179c55..2116ca947 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_group/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group/gen_pkg.go @@ -2,7 +2,7 @@ package typegroup -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -150,6 +150,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_group/gen_type_activitystreams_group.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group/gen_type_activitystreams_group.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_group/gen_type_activitystreams_group.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group/gen_type_activitystreams_group.go index 4951eef9b..2e14b5a9e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_group/gen_type_activitystreams_group.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group/gen_type_activitystreams_group.go @@ -4,7 +4,7 @@ package typegroup import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -50,6 +50,7 @@ type ActivityStreamsGroup struct { W3IDSecurityV1PublicKey vocab.W3IDSecurityV1PublicKeyProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -286,6 +287,11 @@ func DeserializeGroup(m map[string]interface{}, aliasMap map[string]string) (*Ac } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -430,6 +436,8 @@ func DeserializeGroup(m map[string]interface{}, aliasMap map[string]string) (*Ac continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -686,6 +694,12 @@ func (this ActivityStreamsGroup) GetActivityStreamsReplies() vocab.ActivityStrea return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsGroup) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsGroup) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -842,6 +856,7 @@ func (this ActivityStreamsGroup) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.W3IDSecurityV1PublicKey, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1339,6 +1354,20 @@ func (this ActivityStreamsGroup) LessThan(o vocab.ActivityStreamsGroup) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1816,6 +1845,14 @@ func (this ActivityStreamsGroup) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -2085,6 +2122,11 @@ func (this *ActivityStreamsGroup) SetActivityStreamsReplies(i vocab.ActivityStre this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsGroup) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsGroup) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_ignore/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_ignore/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_ignore/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_ignore/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore/gen_pkg.go index 7b6ab2101..f29a762a4 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_ignore/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore/gen_pkg.go @@ -2,7 +2,7 @@ package typeignore -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_ignore/gen_type_activitystreams_ignore.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore/gen_type_activitystreams_ignore.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_ignore/gen_type_activitystreams_ignore.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore/gen_type_activitystreams_ignore.go index 85f24e621..fe2dcf8ca 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_ignore/gen_type_activitystreams_ignore.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore/gen_type_activitystreams_ignore.go @@ -4,7 +4,7 @@ package typeignore import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -50,6 +50,7 @@ type ActivityStreamsIgnore struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -256,6 +257,11 @@ func DeserializeIgnore(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -386,6 +392,8 @@ func DeserializeIgnore(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -629,6 +637,12 @@ func (this ActivityStreamsIgnore) GetActivityStreamsResult() vocab.ActivityStrea return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsIgnore) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsIgnore) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -762,6 +776,7 @@ func (this ActivityStreamsIgnore) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1175,6 +1190,20 @@ func (this ActivityStreamsIgnore) LessThan(o vocab.ActivityStreamsIgnore) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1604,6 +1633,14 @@ func (this ActivityStreamsIgnore) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1857,6 +1894,11 @@ func (this *ActivityStreamsIgnore) SetActivityStreamsResult(i vocab.ActivityStre this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsIgnore) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsIgnore) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_image/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_image/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_image/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_image/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image/gen_pkg.go index 2525ee058..41290f925 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_image/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image/gen_pkg.go @@ -2,7 +2,7 @@ package typeimage -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -116,6 +116,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_image/gen_type_activitystreams_image.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image/gen_type_activitystreams_image.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_image/gen_type_activitystreams_image.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image/gen_type_activitystreams_image.go index 47b11ea35..23f288f2f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_image/gen_type_activitystreams_image.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image/gen_type_activitystreams_image.go @@ -4,7 +4,7 @@ package typeimage import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -54,6 +54,7 @@ type ActivityStreamsImage struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -250,6 +251,11 @@ func DeserializeImage(m map[string]interface{}, aliasMap map[string]string) (*Ac } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -376,6 +382,8 @@ func DeserializeImage(m map[string]interface{}, aliasMap map[string]string) (*Ac continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -596,6 +604,12 @@ func (this ActivityStreamsImage) GetActivityStreamsReplies() vocab.ActivityStrea return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsImage) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsImage) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -732,6 +746,7 @@ func (this ActivityStreamsImage) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1117,6 +1132,20 @@ func (this ActivityStreamsImage) LessThan(o vocab.ActivityStreamsImage) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1530,6 +1559,14 @@ func (this ActivityStreamsImage) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1768,6 +1805,11 @@ func (this *ActivityStreamsImage) SetActivityStreamsReplies(i vocab.ActivityStre this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsImage) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsImage) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_add/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_add/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_pkg.go index 1f6695351..ef5399316 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_add/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_pkg.go @@ -1,8 +1,8 @@ // Code generated by astool. DO NOT EDIT. -package typeadd +package typeintransitiveactivity -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -100,10 +100,6 @@ type privateManager interface { // method for the "ActivityStreamsNameProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error) - // DeserializeObjectPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsObjectProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeObjectPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsObjectProperty, error) // DeserializeOriginPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsOriginProperty" non-functional // property in the vocabulary "ActivityStreams" @@ -124,6 +120,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_type_activitystreams_intransitiveactivity.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_type_activitystreams_intransitiveactivity.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_type_activitystreams_intransitiveactivity.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_type_activitystreams_intransitiveactivity.go index 1aec4ecb6..295d0b154 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_type_activitystreams_intransitiveactivity.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity/gen_type_activitystreams_intransitiveactivity.go @@ -4,7 +4,7 @@ package typeintransitiveactivity import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -53,6 +53,7 @@ type ActivityStreamsIntransitiveActivity struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -254,6 +255,11 @@ func DeserializeIntransitiveActivity(m map[string]interface{}, aliasMap map[stri } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -382,6 +388,8 @@ func DeserializeIntransitiveActivity(m map[string]interface{}, aliasMap map[stri continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -620,6 +628,12 @@ func (this ActivityStreamsIntransitiveActivity) GetActivityStreamsResult() vocab return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsIntransitiveActivity) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsIntransitiveActivity) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -754,6 +768,7 @@ func (this ActivityStreamsIntransitiveActivity) JSONLDContext() map[string]strin m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1153,6 +1168,20 @@ func (this ActivityStreamsIntransitiveActivity) LessThan(o vocab.ActivityStreams // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1574,6 +1603,14 @@ func (this ActivityStreamsIntransitiveActivity) Serialize() (map[string]interfac m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1822,6 +1859,11 @@ func (this *ActivityStreamsIntransitiveActivity) SetActivityStreamsResult(i voca this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsIntransitiveActivity) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsIntransitiveActivity) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_invite/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_invite/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_invite/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_invite/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite/gen_pkg.go index e87d031e5..4a2112007 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_invite/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite/gen_pkg.go @@ -2,7 +2,7 @@ package typeinvite -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_invite/gen_type_activitystreams_invite.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite/gen_type_activitystreams_invite.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_invite/gen_type_activitystreams_invite.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite/gen_type_activitystreams_invite.go index d88924759..44ec6d8cb 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_invite/gen_type_activitystreams_invite.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite/gen_type_activitystreams_invite.go @@ -4,7 +4,7 @@ package typeinvite import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -63,6 +63,7 @@ type ActivityStreamsInvite struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -269,6 +270,11 @@ func DeserializeInvite(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -399,6 +405,8 @@ func DeserializeInvite(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -637,6 +645,12 @@ func (this ActivityStreamsInvite) GetActivityStreamsResult() vocab.ActivityStrea return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsInvite) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsInvite) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -770,6 +784,7 @@ func (this ActivityStreamsInvite) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1183,6 +1198,20 @@ func (this ActivityStreamsInvite) LessThan(o vocab.ActivityStreamsInvite) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1612,6 +1641,14 @@ func (this ActivityStreamsInvite) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1865,6 +1902,11 @@ func (this *ActivityStreamsInvite) SetActivityStreamsResult(i vocab.ActivityStre this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsInvite) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsInvite) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_join/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_join/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_join/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_join/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join/gen_pkg.go index 20b91a598..1c0160c5e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_join/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join/gen_pkg.go @@ -2,7 +2,7 @@ package typejoin -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_join/gen_type_activitystreams_join.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join/gen_type_activitystreams_join.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_join/gen_type_activitystreams_join.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join/gen_type_activitystreams_join.go index 3699bee8a..a18abeb84 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_join/gen_type_activitystreams_join.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join/gen_type_activitystreams_join.go @@ -4,7 +4,7 @@ package typejoin import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -53,6 +53,7 @@ type ActivityStreamsJoin struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -259,6 +260,11 @@ func DeserializeJoin(m map[string]interface{}, aliasMap map[string]string) (*Act } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -389,6 +395,8 @@ func DeserializeJoin(m map[string]interface{}, aliasMap map[string]string) (*Act continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -627,6 +635,12 @@ func (this ActivityStreamsJoin) GetActivityStreamsResult() vocab.ActivityStreams return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsJoin) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsJoin) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -760,6 +774,7 @@ func (this ActivityStreamsJoin) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1173,6 +1188,20 @@ func (this ActivityStreamsJoin) LessThan(o vocab.ActivityStreamsJoin) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1602,6 +1631,14 @@ func (this ActivityStreamsJoin) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1855,6 +1892,11 @@ func (this *ActivityStreamsJoin) SetActivityStreamsResult(i vocab.ActivityStream this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsJoin) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsJoin) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_leave/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_leave/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_leave/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_leave/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave/gen_pkg.go index 1d646e299..59e6cf13e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_leave/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave/gen_pkg.go @@ -2,7 +2,7 @@ package typeleave -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_leave/gen_type_activitystreams_leave.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave/gen_type_activitystreams_leave.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_leave/gen_type_activitystreams_leave.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave/gen_type_activitystreams_leave.go index bbcbb93e0..70f2c4853 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_leave/gen_type_activitystreams_leave.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave/gen_type_activitystreams_leave.go @@ -4,7 +4,7 @@ package typeleave import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -67,6 +67,7 @@ type ActivityStreamsLeave struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -273,6 +274,11 @@ func DeserializeLeave(m map[string]interface{}, aliasMap map[string]string) (*Ac } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -403,6 +409,8 @@ func DeserializeLeave(m map[string]interface{}, aliasMap map[string]string) (*Ac continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -641,6 +649,12 @@ func (this ActivityStreamsLeave) GetActivityStreamsResult() vocab.ActivityStream return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsLeave) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsLeave) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -774,6 +788,7 @@ func (this ActivityStreamsLeave) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1187,6 +1202,20 @@ func (this ActivityStreamsLeave) LessThan(o vocab.ActivityStreamsLeave) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1616,6 +1645,14 @@ func (this ActivityStreamsLeave) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1869,6 +1906,11 @@ func (this *ActivityStreamsLeave) SetActivityStreamsResult(i vocab.ActivityStrea this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsLeave) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsLeave) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_like/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_like/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_like/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_like/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like/gen_pkg.go index 2a3a9902a..f91c9f206 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_like/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like/gen_pkg.go @@ -2,7 +2,7 @@ package typelike -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_like/gen_type_activitystreams_like.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like/gen_type_activitystreams_like.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_like/gen_type_activitystreams_like.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like/gen_type_activitystreams_like.go index c78004d32..20fdca95b 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_like/gen_type_activitystreams_like.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like/gen_type_activitystreams_like.go @@ -4,7 +4,7 @@ package typelike import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -50,6 +50,7 @@ type ActivityStreamsLike struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -256,6 +257,11 @@ func DeserializeLike(m map[string]interface{}, aliasMap map[string]string) (*Act } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -386,6 +392,8 @@ func DeserializeLike(m map[string]interface{}, aliasMap map[string]string) (*Act continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -624,6 +632,12 @@ func (this ActivityStreamsLike) GetActivityStreamsResult() vocab.ActivityStreams return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsLike) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsLike) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -757,6 +771,7 @@ func (this ActivityStreamsLike) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1170,6 +1185,20 @@ func (this ActivityStreamsLike) LessThan(o vocab.ActivityStreamsLike) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1599,6 +1628,14 @@ func (this ActivityStreamsLike) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1852,6 +1889,11 @@ func (this *ActivityStreamsLike) SetActivityStreamsResult(i vocab.ActivityStream this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsLike) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsLike) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_link/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_link/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_link/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link/gen_pkg.go similarity index 98% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_link/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link/gen_pkg.go index 61d2ba834..94db1fef9 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_link/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link/gen_pkg.go @@ -2,7 +2,7 @@ package typelink -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_link/gen_type_activitystreams_link.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link/gen_type_activitystreams_link.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_link/gen_type_activitystreams_link.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link/gen_type_activitystreams_link.go index ffb6912b2..a0b794f2d 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_link/gen_type_activitystreams_link.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link/gen_type_activitystreams_link.go @@ -4,7 +4,7 @@ package typelink import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_listen/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_listen/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_listen/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_listen/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen/gen_pkg.go index 567b1cc81..5b4c0c591 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_listen/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen/gen_pkg.go @@ -2,7 +2,7 @@ package typelisten -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_listen/gen_type_activitystreams_listen.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen/gen_type_activitystreams_listen.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_listen/gen_type_activitystreams_listen.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen/gen_type_activitystreams_listen.go index ed69b2162..bc5deaea0 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_listen/gen_type_activitystreams_listen.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen/gen_type_activitystreams_listen.go @@ -4,7 +4,7 @@ package typelisten import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -49,6 +49,7 @@ type ActivityStreamsListen struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -255,6 +256,11 @@ func DeserializeListen(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -385,6 +391,8 @@ func DeserializeListen(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -623,6 +631,12 @@ func (this ActivityStreamsListen) GetActivityStreamsResult() vocab.ActivityStrea return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsListen) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsListen) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -756,6 +770,7 @@ func (this ActivityStreamsListen) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1169,6 +1184,20 @@ func (this ActivityStreamsListen) LessThan(o vocab.ActivityStreamsListen) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1598,6 +1627,14 @@ func (this ActivityStreamsListen) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1851,6 +1888,11 @@ func (this *ActivityStreamsListen) SetActivityStreamsResult(i vocab.ActivityStre this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsListen) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsListen) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_mention/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_mention/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_mention/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention/gen_pkg.go similarity index 98% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_mention/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention/gen_pkg.go index 037dbe0b1..265f6048d 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_mention/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention/gen_pkg.go @@ -2,7 +2,7 @@ package typemention -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_mention/gen_type_activitystreams_mention.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention/gen_type_activitystreams_mention.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_mention/gen_type_activitystreams_mention.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention/gen_type_activitystreams_mention.go index 80ff63bed..f9c33ee55 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_mention/gen_type_activitystreams_mention.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention/gen_type_activitystreams_mention.go @@ -4,7 +4,7 @@ package typemention import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_move/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_move/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_move/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_move/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move/gen_pkg.go index 6873913bc..23e6af928 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_move/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move/gen_pkg.go @@ -2,7 +2,7 @@ package typemove -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_move/gen_type_activitystreams_move.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move/gen_type_activitystreams_move.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_move/gen_type_activitystreams_move.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move/gen_type_activitystreams_move.go index 8072b87ae..b4eabcd61 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_move/gen_type_activitystreams_move.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move/gen_type_activitystreams_move.go @@ -4,7 +4,7 @@ package typemove import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -58,6 +58,7 @@ type ActivityStreamsMove struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -264,6 +265,11 @@ func DeserializeMove(m map[string]interface{}, aliasMap map[string]string) (*Act } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -394,6 +400,8 @@ func DeserializeMove(m map[string]interface{}, aliasMap map[string]string) (*Act continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -632,6 +640,12 @@ func (this ActivityStreamsMove) GetActivityStreamsResult() vocab.ActivityStreams return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsMove) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsMove) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -765,6 +779,7 @@ func (this ActivityStreamsMove) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1178,6 +1193,20 @@ func (this ActivityStreamsMove) LessThan(o vocab.ActivityStreamsMove) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1607,6 +1636,14 @@ func (this ActivityStreamsMove) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1860,6 +1897,11 @@ func (this *ActivityStreamsMove) SetActivityStreamsResult(i vocab.ActivityStream this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsMove) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsMove) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_note/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_note/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_profile/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_profile/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note/gen_pkg.go index 10d39ecdf..111302ed4 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_profile/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note/gen_pkg.go @@ -1,8 +1,8 @@ // Code generated by astool. DO NOT EDIT. -package typeprofile +package typenote -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -48,10 +48,6 @@ type privateManager interface { // method for the "ActivityStreamsContextProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeContextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContextProperty, error) - // DeserializeDescribesPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsDescribesProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeDescribesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDescribesProperty, error) // DeserializeDurationPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsDurationProperty" non-functional // property in the vocabulary "ActivityStreams" @@ -112,6 +108,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_note/gen_type_activitystreams_note.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note/gen_type_activitystreams_note.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_note/gen_type_activitystreams_note.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note/gen_type_activitystreams_note.go index 075960d5d..36a0807b9 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_note/gen_type_activitystreams_note.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note/gen_type_activitystreams_note.go @@ -4,7 +4,7 @@ package typenote import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -42,6 +42,7 @@ type ActivityStreamsNote struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -227,6 +228,11 @@ func DeserializeNote(m map[string]interface{}, aliasMap map[string]string) (*Act } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -344,6 +350,8 @@ func DeserializeNote(m map[string]interface{}, aliasMap map[string]string) (*Act continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -556,6 +564,12 @@ func (this ActivityStreamsNote) GetActivityStreamsReplies() vocab.ActivityStream return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsNote) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsNote) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -679,6 +693,7 @@ func (this ActivityStreamsNote) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1035,6 +1050,20 @@ func (this ActivityStreamsNote) LessThan(o vocab.ActivityStreamsNote) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1418,6 +1447,14 @@ func (this ActivityStreamsNote) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1643,6 +1680,11 @@ func (this *ActivityStreamsNote) SetActivityStreamsReplies(i vocab.ActivityStrea this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsNote) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsNote) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_object/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_object/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_object/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_object/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object/gen_pkg.go index da2a6e43f..0f1aeccf1 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_object/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object/gen_pkg.go @@ -2,7 +2,7 @@ package typeobject -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -108,6 +108,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_object/gen_type_activitystreams_object.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object/gen_type_activitystreams_object.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_object/gen_type_activitystreams_object.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object/gen_type_activitystreams_object.go index ee0815694..ee48b651b 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_object/gen_type_activitystreams_object.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object/gen_type_activitystreams_object.go @@ -4,7 +4,7 @@ package typeobject import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -44,6 +44,7 @@ type ActivityStreamsObject struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -224,6 +225,11 @@ func DeserializeObject(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -341,6 +347,8 @@ func DeserializeObject(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -558,6 +566,12 @@ func (this ActivityStreamsObject) GetActivityStreamsReplies() vocab.ActivityStre return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsObject) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsObject) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -681,6 +695,7 @@ func (this ActivityStreamsObject) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1037,6 +1052,20 @@ func (this ActivityStreamsObject) LessThan(o vocab.ActivityStreamsObject) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1420,6 +1449,14 @@ func (this ActivityStreamsObject) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1645,6 +1682,11 @@ func (this *ActivityStreamsObject) SetActivityStreamsReplies(i vocab.ActivityStr this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsObject) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsObject) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_offer/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_offer/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_offer/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_offer/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer/gen_pkg.go index 79fda805c..7017c8fd9 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_offer/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer/gen_pkg.go @@ -2,7 +2,7 @@ package typeoffer -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_offer/gen_type_activitystreams_offer.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer/gen_type_activitystreams_offer.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_offer/gen_type_activitystreams_offer.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer/gen_type_activitystreams_offer.go index a04977bf2..d4b0d7934 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_offer/gen_type_activitystreams_offer.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer/gen_type_activitystreams_offer.go @@ -4,7 +4,7 @@ package typeoffer import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -57,6 +57,7 @@ type ActivityStreamsOffer struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -263,6 +264,11 @@ func DeserializeOffer(m map[string]interface{}, aliasMap map[string]string) (*Ac } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -393,6 +399,8 @@ func DeserializeOffer(m map[string]interface{}, aliasMap map[string]string) (*Ac continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -636,6 +644,12 @@ func (this ActivityStreamsOffer) GetActivityStreamsResult() vocab.ActivityStream return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsOffer) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsOffer) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -769,6 +783,7 @@ func (this ActivityStreamsOffer) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1182,6 +1197,20 @@ func (this ActivityStreamsOffer) LessThan(o vocab.ActivityStreamsOffer) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1611,6 +1640,14 @@ func (this ActivityStreamsOffer) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1864,6 +1901,11 @@ func (this *ActivityStreamsOffer) SetActivityStreamsResult(i vocab.ActivityStrea this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsOffer) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsOffer) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection/gen_pkg.go index 3c51afcc3..4bee15b78 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection/gen_pkg.go @@ -2,7 +2,7 @@ package typeorderedcollection -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -129,6 +129,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection/gen_type_activitystreams_orderedcollection.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection/gen_type_activitystreams_orderedcollection.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection/gen_type_activitystreams_orderedcollection.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection/gen_type_activitystreams_orderedcollection.go index ecc738e16..5faa77f17 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection/gen_type_activitystreams_orderedcollection.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection/gen_type_activitystreams_orderedcollection.go @@ -4,7 +4,7 @@ package typeorderedcollection import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -57,6 +57,7 @@ type ActivityStreamsOrderedCollection struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -268,6 +269,11 @@ func DeserializeOrderedCollection(m map[string]interface{}, aliasMap map[string] } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -400,6 +406,8 @@ func DeserializeOrderedCollection(m map[string]interface{}, aliasMap map[string] continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -643,6 +651,12 @@ func (this ActivityStreamsOrderedCollection) GetActivityStreamsReplies() vocab.A return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsOrderedCollection) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsOrderedCollection) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -784,6 +798,7 @@ func (this ActivityStreamsOrderedCollection) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1211,6 +1226,20 @@ func (this ActivityStreamsOrderedCollection) LessThan(o vocab.ActivityStreamsOrd // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1648,6 +1677,14 @@ func (this ActivityStreamsOrderedCollection) Serialize() (map[string]interface{} m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1901,6 +1938,11 @@ func (this *ActivityStreamsOrderedCollection) SetActivityStreamsReplies(i vocab. this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsOrderedCollection) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsOrderedCollection) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_pkg.go index 1ad7d837f..1b8c7a88e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_pkg.go @@ -2,7 +2,7 @@ package typeorderedcollectionpage -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -141,6 +141,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_type_activitystreams_orderedcollectionpage.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_type_activitystreams_orderedcollectionpage.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_type_activitystreams_orderedcollectionpage.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_type_activitystreams_orderedcollectionpage.go index 97c589c48..284c0da94 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_type_activitystreams_orderedcollectionpage.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage/gen_type_activitystreams_orderedcollectionpage.go @@ -4,7 +4,7 @@ package typeorderedcollectionpage import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -62,6 +62,7 @@ type ActivityStreamsOrderedCollectionPage struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartIndex vocab.ActivityStreamsStartIndexProperty @@ -289,6 +290,11 @@ func DeserializeOrderedCollectionPage(m map[string]interface{}, aliasMap map[str } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -432,6 +438,8 @@ func DeserializeOrderedCollectionPage(m map[string]interface{}, aliasMap map[str continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -691,6 +699,12 @@ func (this ActivityStreamsOrderedCollectionPage) GetActivityStreamsReplies() voc return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsOrderedCollectionPage) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsOrderedCollectionPage) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -842,6 +856,7 @@ func (this ActivityStreamsOrderedCollectionPage) JSONLDContext() map[string]stri m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartIndex, m) @@ -1312,6 +1327,20 @@ func (this ActivityStreamsOrderedCollectionPage) LessThan(o vocab.ActivityStream // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1787,6 +1816,14 @@ func (this ActivityStreamsOrderedCollectionPage) Serialize() (map[string]interfa m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -2063,6 +2100,11 @@ func (this *ActivityStreamsOrderedCollectionPage) SetActivityStreamsReplies(i vo this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsOrderedCollectionPage) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsOrderedCollectionPage) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_organization/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_organization/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_organization/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_organization/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization/gen_pkg.go index c2d1aba01..66322a671 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_organization/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization/gen_pkg.go @@ -2,7 +2,7 @@ package typeorganization -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -150,6 +150,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_organization/gen_type_activitystreams_organization.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization/gen_type_activitystreams_organization.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_organization/gen_type_activitystreams_organization.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization/gen_type_activitystreams_organization.go index c0df553c1..0fd91feb6 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_organization/gen_type_activitystreams_organization.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization/gen_type_activitystreams_organization.go @@ -4,7 +4,7 @@ package typeorganization import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -50,6 +50,7 @@ type ActivityStreamsOrganization struct { W3IDSecurityV1PublicKey vocab.W3IDSecurityV1PublicKeyProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -286,6 +287,11 @@ func DeserializeOrganization(m map[string]interface{}, aliasMap map[string]strin } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -430,6 +436,8 @@ func DeserializeOrganization(m map[string]interface{}, aliasMap map[string]strin continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -686,6 +694,12 @@ func (this ActivityStreamsOrganization) GetActivityStreamsReplies() vocab.Activi return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsOrganization) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsOrganization) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -842,6 +856,7 @@ func (this ActivityStreamsOrganization) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.W3IDSecurityV1PublicKey, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1339,6 +1354,20 @@ func (this ActivityStreamsOrganization) LessThan(o vocab.ActivityStreamsOrganiza // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1816,6 +1845,14 @@ func (this ActivityStreamsOrganization) Serialize() (map[string]interface{}, err m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -2085,6 +2122,11 @@ func (this *ActivityStreamsOrganization) SetActivityStreamsReplies(i vocab.Activ this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsOrganization) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsOrganization) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_page/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_page/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_page/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_page/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page/gen_pkg.go index c0941bbcd..095c5a94a 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_page/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page/gen_pkg.go @@ -2,7 +2,7 @@ package typepage -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -112,6 +112,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_page/gen_type_activitystreams_page.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page/gen_type_activitystreams_page.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_page/gen_type_activitystreams_page.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page/gen_type_activitystreams_page.go index 55fdfd54a..51f124620 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_page/gen_type_activitystreams_page.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page/gen_type_activitystreams_page.go @@ -4,7 +4,7 @@ package typepage import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -42,6 +42,7 @@ type ActivityStreamsPage struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -232,6 +233,11 @@ func DeserializePage(m map[string]interface{}, aliasMap map[string]string) (*Act } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -351,6 +357,8 @@ func DeserializePage(m map[string]interface{}, aliasMap map[string]string) (*Act continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -563,6 +571,12 @@ func (this ActivityStreamsPage) GetActivityStreamsReplies() vocab.ActivityStream return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsPage) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsPage) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -692,6 +706,7 @@ func (this ActivityStreamsPage) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1062,6 +1077,20 @@ func (this ActivityStreamsPage) LessThan(o vocab.ActivityStreamsPage) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1453,6 +1482,14 @@ func (this ActivityStreamsPage) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1678,6 +1715,11 @@ func (this *ActivityStreamsPage) SetActivityStreamsReplies(i vocab.ActivityStrea this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsPage) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsPage) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_person/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_person/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_person/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_person/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person/gen_pkg.go index 44295e2b4..59583cc24 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_person/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person/gen_pkg.go @@ -2,7 +2,7 @@ package typeperson -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -150,6 +150,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_person/gen_type_activitystreams_person.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person/gen_type_activitystreams_person.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_person/gen_type_activitystreams_person.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person/gen_type_activitystreams_person.go index bf51f554e..c0f97c37d 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_person/gen_type_activitystreams_person.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person/gen_type_activitystreams_person.go @@ -4,7 +4,7 @@ package typeperson import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -50,6 +50,7 @@ type ActivityStreamsPerson struct { W3IDSecurityV1PublicKey vocab.W3IDSecurityV1PublicKeyProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -286,6 +287,11 @@ func DeserializePerson(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -430,6 +436,8 @@ func DeserializePerson(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -686,6 +694,12 @@ func (this ActivityStreamsPerson) GetActivityStreamsReplies() vocab.ActivityStre return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsPerson) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsPerson) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -842,6 +856,7 @@ func (this ActivityStreamsPerson) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.W3IDSecurityV1PublicKey, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1339,6 +1354,20 @@ func (this ActivityStreamsPerson) LessThan(o vocab.ActivityStreamsPerson) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1816,6 +1845,14 @@ func (this ActivityStreamsPerson) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -2085,6 +2122,11 @@ func (this *ActivityStreamsPerson) SetActivityStreamsReplies(i vocab.ActivityStr this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsPerson) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsPerson) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_place/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_place/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_place/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_place/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place/gen_pkg.go index d8a52e2cc..2947138fe 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_place/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place/gen_pkg.go @@ -2,7 +2,7 @@ package typeplace -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_place/gen_type_activitystreams_place.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place/gen_type_activitystreams_place.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_place/gen_type_activitystreams_place.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place/gen_type_activitystreams_place.go index 6097eefc0..2d20c163d 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_place/gen_type_activitystreams_place.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place/gen_type_activitystreams_place.go @@ -4,7 +4,7 @@ package typeplace import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -55,6 +55,7 @@ type ActivityStreamsPlace struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsRadius vocab.ActivityStreamsRadiusProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -261,6 +262,11 @@ func DeserializePlace(m map[string]interface{}, aliasMap map[string]string) (*Ac } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -391,6 +397,8 @@ func DeserializePlace(m map[string]interface{}, aliasMap map[string]string) (*Ac continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -629,6 +637,12 @@ func (this ActivityStreamsPlace) GetActivityStreamsReplies() vocab.ActivityStrea return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsPlace) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsPlace) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -762,6 +776,7 @@ func (this ActivityStreamsPlace) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsRadius, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1175,6 +1190,20 @@ func (this ActivityStreamsPlace) LessThan(o vocab.ActivityStreamsPlace) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1604,6 +1633,14 @@ func (this ActivityStreamsPlace) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1857,6 +1894,11 @@ func (this *ActivityStreamsPlace) SetActivityStreamsReplies(i vocab.ActivityStre this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsPlace) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsPlace) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_profile/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_profile/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile/gen_doc.go diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile/gen_pkg.go new file mode 100644 index 000000000..d7c33f19f --- /dev/null +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile/gen_pkg.go @@ -0,0 +1,195 @@ +// Code generated by astool. DO NOT EDIT. + +package typeprofile + +import vocab "github.com/superseriousbusiness/activity/streams/vocab" + +var mgr privateManager + +var typePropertyConstructor func() vocab.JSONLDTypeProperty + +// privateManager abstracts the code-generated manager that provides access to +// concrete implementations. +type privateManager interface { + // DeserializeAltitudePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsAltitudeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeAltitudePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAltitudeProperty, error) + // DeserializeAttachmentPropertyActivityStreams returns the + // deserialization method for the "ActivityStreamsAttachmentProperty" + // non-functional property in the vocabulary "ActivityStreams" + DeserializeAttachmentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttachmentProperty, error) + // DeserializeAttributedToPropertyActivityStreams returns the + // deserialization method for the + // "ActivityStreamsAttributedToProperty" non-functional property in + // the vocabulary "ActivityStreams" + DeserializeAttributedToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAttributedToProperty, error) + // DeserializeAudiencePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsAudienceProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeAudiencePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsAudienceProperty, error) + // DeserializeBccPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsBccProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeBccPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBccProperty, error) + // DeserializeBtoPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsBtoProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeBtoPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsBtoProperty, error) + // DeserializeCcPropertyActivityStreams returns the deserialization method + // for the "ActivityStreamsCcProperty" non-functional property in the + // vocabulary "ActivityStreams" + DeserializeCcPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCcProperty, error) + // DeserializeContentPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsContentProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeContentPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContentProperty, error) + // DeserializeContextPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsContextProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeContextPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsContextProperty, error) + // DeserializeDescribesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsDescribesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeDescribesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDescribesProperty, error) + // DeserializeDurationPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsDurationProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeDurationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsDurationProperty, error) + // DeserializeEndTimePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsEndTimeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error) + // DeserializeGeneratorPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsGeneratorProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeGeneratorPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsGeneratorProperty, error) + // DeserializeIconPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsIconProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeIconPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsIconProperty, error) + // DeserializeIdPropertyJSONLD returns the deserialization method for the + // "JSONLDIdProperty" non-functional property in the vocabulary + // "JSONLD" + DeserializeIdPropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDIdProperty, error) + // DeserializeImagePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsImageProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeImagePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsImageProperty, error) + // DeserializeInReplyToPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsInReplyToProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeInReplyToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsInReplyToProperty, error) + // DeserializeLikesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsLikesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeLikesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLikesProperty, error) + // DeserializeLocationPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsLocationProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeLocationPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLocationProperty, error) + // DeserializeMediaTypePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsMediaTypeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeMediaTypePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMediaTypeProperty, error) + // DeserializeNamePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsNameProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error) + // DeserializeObjectPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsObjectProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeObjectPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsObjectProperty, error) + // DeserializePreviewPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsPreviewProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializePreviewPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPreviewProperty, error) + // DeserializePublishedPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsPublishedProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializePublishedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsPublishedProperty, error) + // DeserializeRepliesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsRepliesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) + // DeserializeSharesPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSharesProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSharesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSharesProperty, error) + // DeserializeSourcePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSourceProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSourcePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSourceProperty, error) + // DeserializeStartTimePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsStartTimeProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeStartTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsStartTimeProperty, error) + // DeserializeSummaryPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSummaryProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSummaryPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSummaryProperty, error) + // DeserializeTagPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsTagProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeTagPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsTagProperty, error) + // DeserializeTeamPropertyForgeFed returns the deserialization method for + // the "ForgeFedTeamProperty" non-functional property in the + // vocabulary "ForgeFed" + DeserializeTeamPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTeamProperty, error) + // DeserializeTicketsTrackedByPropertyForgeFed returns the deserialization + // method for the "ForgeFedTicketsTrackedByProperty" non-functional + // property in the vocabulary "ForgeFed" + DeserializeTicketsTrackedByPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTicketsTrackedByProperty, error) + // DeserializeToPropertyActivityStreams returns the deserialization method + // for the "ActivityStreamsToProperty" non-functional property in the + // vocabulary "ActivityStreams" + DeserializeToPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsToProperty, error) + // DeserializeTracksTicketsForPropertyForgeFed returns the deserialization + // method for the "ForgeFedTracksTicketsForProperty" non-functional + // property in the vocabulary "ForgeFed" + DeserializeTracksTicketsForPropertyForgeFed() func(map[string]interface{}, map[string]string) (vocab.ForgeFedTracksTicketsForProperty, error) + // DeserializeTypePropertyJSONLD returns the deserialization method for + // the "JSONLDTypeProperty" non-functional property in the vocabulary + // "JSONLD" + DeserializeTypePropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDTypeProperty, error) + // DeserializeUpdatedPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsUpdatedProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeUpdatedPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUpdatedProperty, error) + // DeserializeUrlPropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsUrlProperty" non-functional property + // in the vocabulary "ActivityStreams" + DeserializeUrlPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsUrlProperty, error) +} + +// jsonldContexter is a private interface to determine the JSON-LD contexts and +// aliases needed for functional and non-functional properties. It is a helper +// interface for this implementation. +type jsonldContexter interface { + // JSONLDContext returns the JSONLD URIs required in the context string + // for this property and the specific values that are set. The value + // in the map is the alias used to import the property's value or + // values. + JSONLDContext() map[string]string +} + +// SetManager sets the manager package-global variable. For internal use only, do +// not use as part of Application behavior. Must be called at golang init time. +func SetManager(m privateManager) { + mgr = m +} + +// SetTypePropertyConstructor sets the "type" property's constructor in the +// package-global variable. For internal use only, do not use as part of +// Application behavior. Must be called at golang init time. Permits +// ActivityStreams types to correctly set their "type" property at +// construction time, so users don't have to remember to do so each time. It +// is dependency injected so other go-fed compatible implementations could +// inject their own type. +func SetTypePropertyConstructor(f func() vocab.JSONLDTypeProperty) { + typePropertyConstructor = f +} diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_profile/gen_type_activitystreams_profile.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile/gen_type_activitystreams_profile.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_profile/gen_type_activitystreams_profile.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile/gen_type_activitystreams_profile.go index e97304bc0..81b32d9e2 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_profile/gen_type_activitystreams_profile.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile/gen_type_activitystreams_profile.go @@ -4,7 +4,7 @@ package typeprofile import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -47,6 +47,7 @@ type ActivityStreamsProfile struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -237,6 +238,11 @@ func DeserializeProfile(m map[string]interface{}, aliasMap map[string]string) (* } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -356,6 +362,8 @@ func DeserializeProfile(m map[string]interface{}, aliasMap map[string]string) (* continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -574,6 +582,12 @@ func (this ActivityStreamsProfile) GetActivityStreamsReplies() vocab.ActivityStr return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsProfile) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsProfile) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -698,6 +712,7 @@ func (this ActivityStreamsProfile) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1068,6 +1083,20 @@ func (this ActivityStreamsProfile) LessThan(o vocab.ActivityStreamsProfile) bool // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1459,6 +1488,14 @@ func (this ActivityStreamsProfile) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1689,6 +1726,11 @@ func (this *ActivityStreamsProfile) SetActivityStreamsReplies(i vocab.ActivitySt this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsProfile) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsProfile) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_question/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_question/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_question/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_question/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question/gen_pkg.go index ba6d5c845..d72ee715e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_question/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question/gen_pkg.go @@ -2,7 +2,7 @@ package typequestion -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -132,6 +132,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_question/gen_type_activitystreams_question.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question/gen_type_activitystreams_question.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_question/gen_type_activitystreams_question.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question/gen_type_activitystreams_question.go index ce697f023..f956c69a4 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_question/gen_type_activitystreams_question.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question/gen_type_activitystreams_question.go @@ -4,7 +4,7 @@ package typequestion import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -68,6 +68,7 @@ type ActivityStreamsQuestion struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -285,6 +286,11 @@ func DeserializeQuestion(m map[string]interface{}, aliasMap map[string]string) ( } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -424,6 +430,8 @@ func DeserializeQuestion(m map[string]interface{}, aliasMap map[string]string) ( continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -676,6 +684,12 @@ func (this ActivityStreamsQuestion) GetActivityStreamsResult() vocab.ActivityStr return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsQuestion) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsQuestion) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -817,6 +831,7 @@ func (this ActivityStreamsQuestion) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1259,6 +1274,20 @@ func (this ActivityStreamsQuestion) LessThan(o vocab.ActivityStreamsQuestion) bo // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1718,6 +1747,14 @@ func (this ActivityStreamsQuestion) Serialize() (map[string]interface{}, error) m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1989,6 +2026,11 @@ func (this *ActivityStreamsQuestion) SetActivityStreamsResult(i vocab.ActivitySt this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsQuestion) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsQuestion) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_read/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_read/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_read/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_read/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read/gen_pkg.go index d40fceeb1..69454ec01 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_read/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read/gen_pkg.go @@ -2,7 +2,7 @@ package typeread -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_read/gen_type_activitystreams_read.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read/gen_type_activitystreams_read.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_read/gen_type_activitystreams_read.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read/gen_type_activitystreams_read.go index 1798c11b0..bbe17b6de 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_read/gen_type_activitystreams_read.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read/gen_type_activitystreams_read.go @@ -4,7 +4,7 @@ package typeread import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -49,6 +49,7 @@ type ActivityStreamsRead struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -255,6 +256,11 @@ func DeserializeRead(m map[string]interface{}, aliasMap map[string]string) (*Act } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -385,6 +391,8 @@ func DeserializeRead(m map[string]interface{}, aliasMap map[string]string) (*Act continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -623,6 +631,12 @@ func (this ActivityStreamsRead) GetActivityStreamsResult() vocab.ActivityStreams return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsRead) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsRead) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -756,6 +770,7 @@ func (this ActivityStreamsRead) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1169,6 +1184,20 @@ func (this ActivityStreamsRead) LessThan(o vocab.ActivityStreamsRead) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1598,6 +1627,14 @@ func (this ActivityStreamsRead) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1851,6 +1888,11 @@ func (this *ActivityStreamsRead) SetActivityStreamsResult(i vocab.ActivityStream this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsRead) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsRead) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_reject/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_reject/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_reject/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_reject/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject/gen_pkg.go index ac028f01b..5b84ebac8 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_reject/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject/gen_pkg.go @@ -2,7 +2,7 @@ package typereject -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_reject/gen_type_activitystreams_reject.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject/gen_type_activitystreams_reject.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_reject/gen_type_activitystreams_reject.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject/gen_type_activitystreams_reject.go index 6e91d0a81..7f7d0d287 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_reject/gen_type_activitystreams_reject.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject/gen_type_activitystreams_reject.go @@ -4,7 +4,7 @@ package typereject import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -57,6 +57,7 @@ type ActivityStreamsReject struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -263,6 +264,11 @@ func DeserializeReject(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -393,6 +399,8 @@ func DeserializeReject(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -636,6 +644,12 @@ func (this ActivityStreamsReject) GetActivityStreamsResult() vocab.ActivityStrea return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsReject) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsReject) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -769,6 +783,7 @@ func (this ActivityStreamsReject) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1182,6 +1197,20 @@ func (this ActivityStreamsReject) LessThan(o vocab.ActivityStreamsReject) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1611,6 +1640,14 @@ func (this ActivityStreamsReject) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1864,6 +1901,11 @@ func (this *ActivityStreamsReject) SetActivityStreamsResult(i vocab.ActivityStre this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsReject) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsReject) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_relationship/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_relationship/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_relationship/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_relationship/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship/gen_pkg.go index de79ecc92..8fe76c6b4 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_relationship/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship/gen_pkg.go @@ -2,7 +2,7 @@ package typerelationship -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -113,6 +113,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_relationship/gen_type_activitystreams_relationship.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship/gen_type_activitystreams_relationship.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_relationship/gen_type_activitystreams_relationship.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship/gen_type_activitystreams_relationship.go index b70696799..f1675f19e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_relationship/gen_type_activitystreams_relationship.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship/gen_type_activitystreams_relationship.go @@ -4,7 +4,7 @@ package typerelationship import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -52,6 +52,7 @@ type ActivityStreamsRelationship struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsRelationship vocab.ActivityStreamsRelationshipProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -243,6 +244,11 @@ func DeserializeRelationship(m map[string]interface{}, aliasMap map[string]strin } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -367,6 +373,8 @@ func DeserializeRelationship(m map[string]interface{}, aliasMap map[string]strin continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -592,6 +600,12 @@ func (this ActivityStreamsRelationship) GetActivityStreamsReplies() vocab.Activi return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsRelationship) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsRelationship) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -722,6 +736,7 @@ func (this ActivityStreamsRelationship) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsRelationship, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1093,6 +1108,20 @@ func (this ActivityStreamsRelationship) LessThan(o vocab.ActivityStreamsRelation // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1498,6 +1527,14 @@ func (this ActivityStreamsRelationship) Serialize() (map[string]interface{}, err m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1736,6 +1773,11 @@ func (this *ActivityStreamsRelationship) SetActivityStreamsReplies(i vocab.Activ this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsRelationship) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsRelationship) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_remove/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_remove/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_remove/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_remove/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove/gen_pkg.go index db9bfc61a..25bf641a6 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_remove/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove/gen_pkg.go @@ -2,7 +2,7 @@ package typeremove -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_remove/gen_type_activitystreams_remove.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove/gen_type_activitystreams_remove.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_remove/gen_type_activitystreams_remove.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove/gen_type_activitystreams_remove.go index cb9733345..33d194ff4 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_remove/gen_type_activitystreams_remove.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove/gen_type_activitystreams_remove.go @@ -4,7 +4,7 @@ package typeremove import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -72,6 +72,7 @@ type ActivityStreamsRemove struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -278,6 +279,11 @@ func DeserializeRemove(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -408,6 +414,8 @@ func DeserializeRemove(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -646,6 +654,12 @@ func (this ActivityStreamsRemove) GetActivityStreamsResult() vocab.ActivityStrea return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsRemove) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsRemove) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -779,6 +793,7 @@ func (this ActivityStreamsRemove) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1192,6 +1207,20 @@ func (this ActivityStreamsRemove) LessThan(o vocab.ActivityStreamsRemove) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1621,6 +1650,14 @@ func (this ActivityStreamsRemove) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1874,6 +1911,11 @@ func (this *ActivityStreamsRemove) SetActivityStreamsResult(i vocab.ActivityStre this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsRemove) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsRemove) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_service/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_service/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_service/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_service/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service/gen_pkg.go index 1e9d564e2..a1b195a97 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_service/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service/gen_pkg.go @@ -2,7 +2,7 @@ package typeservice -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -150,6 +150,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_service/gen_type_activitystreams_service.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service/gen_type_activitystreams_service.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_service/gen_type_activitystreams_service.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service/gen_type_activitystreams_service.go index cc9382eb4..0b3aed651 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_service/gen_type_activitystreams_service.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service/gen_type_activitystreams_service.go @@ -4,7 +4,7 @@ package typeservice import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -50,6 +50,7 @@ type ActivityStreamsService struct { W3IDSecurityV1PublicKey vocab.W3IDSecurityV1PublicKeyProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -286,6 +287,11 @@ func DeserializeService(m map[string]interface{}, aliasMap map[string]string) (* } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -430,6 +436,8 @@ func DeserializeService(m map[string]interface{}, aliasMap map[string]string) (* continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -686,6 +694,12 @@ func (this ActivityStreamsService) GetActivityStreamsReplies() vocab.ActivityStr return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsService) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsService) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -842,6 +856,7 @@ func (this ActivityStreamsService) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.W3IDSecurityV1PublicKey, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1339,6 +1354,20 @@ func (this ActivityStreamsService) LessThan(o vocab.ActivityStreamsService) bool // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1816,6 +1845,14 @@ func (this ActivityStreamsService) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -2085,6 +2122,11 @@ func (this *ActivityStreamsService) SetActivityStreamsReplies(i vocab.ActivitySt this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsService) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsService) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept/gen_pkg.go index 546e28c3a..6dde30a04 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept/gen_pkg.go @@ -2,7 +2,7 @@ package typetentativeaccept -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept/gen_type_activitystreams_tentativeaccept.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept/gen_type_activitystreams_tentativeaccept.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept/gen_type_activitystreams_tentativeaccept.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept/gen_type_activitystreams_tentativeaccept.go index 8836a4079..b216f383e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept/gen_type_activitystreams_tentativeaccept.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept/gen_type_activitystreams_tentativeaccept.go @@ -4,7 +4,7 @@ package typetentativeaccept import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -56,6 +56,7 @@ type ActivityStreamsTentativeAccept struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -262,6 +263,11 @@ func DeserializeTentativeAccept(m map[string]interface{}, aliasMap map[string]st } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -392,6 +398,8 @@ func DeserializeTentativeAccept(m map[string]interface{}, aliasMap map[string]st continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -630,6 +638,12 @@ func (this ActivityStreamsTentativeAccept) GetActivityStreamsResult() vocab.Acti return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsTentativeAccept) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsTentativeAccept) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -764,6 +778,7 @@ func (this ActivityStreamsTentativeAccept) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1177,6 +1192,20 @@ func (this ActivityStreamsTentativeAccept) LessThan(o vocab.ActivityStreamsTenta // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1606,6 +1635,14 @@ func (this ActivityStreamsTentativeAccept) Serialize() (map[string]interface{}, m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1859,6 +1896,11 @@ func (this *ActivityStreamsTentativeAccept) SetActivityStreamsResult(i vocab.Act this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsTentativeAccept) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsTentativeAccept) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject/gen_pkg.go index 4a194a780..4839007bd 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject/gen_pkg.go @@ -2,7 +2,7 @@ package typetentativereject -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject/gen_type_activitystreams_tentativereject.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject/gen_type_activitystreams_tentativereject.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject/gen_type_activitystreams_tentativereject.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject/gen_type_activitystreams_tentativereject.go index a1abc0b8b..cb3d1646b 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject/gen_type_activitystreams_tentativereject.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject/gen_type_activitystreams_tentativereject.go @@ -4,7 +4,7 @@ package typetentativereject import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -56,6 +56,7 @@ type ActivityStreamsTentativeReject struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -262,6 +263,11 @@ func DeserializeTentativeReject(m map[string]interface{}, aliasMap map[string]st } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -392,6 +398,8 @@ func DeserializeTentativeReject(m map[string]interface{}, aliasMap map[string]st continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -630,6 +638,12 @@ func (this ActivityStreamsTentativeReject) GetActivityStreamsResult() vocab.Acti return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsTentativeReject) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsTentativeReject) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -764,6 +778,7 @@ func (this ActivityStreamsTentativeReject) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1177,6 +1192,20 @@ func (this ActivityStreamsTentativeReject) LessThan(o vocab.ActivityStreamsTenta // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1606,6 +1635,14 @@ func (this ActivityStreamsTentativeReject) Serialize() (map[string]interface{}, m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1859,6 +1896,11 @@ func (this *ActivityStreamsTentativeReject) SetActivityStreamsResult(i vocab.Act this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsTentativeReject) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsTentativeReject) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone/gen_pkg.go index 1b0eb533e..21d9da6f3 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone/gen_pkg.go @@ -2,7 +2,7 @@ package typetombstone -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -116,6 +116,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone/gen_type_activitystreams_tombstone.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone/gen_type_activitystreams_tombstone.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone/gen_type_activitystreams_tombstone.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone/gen_type_activitystreams_tombstone.go index c561b4bd9..8354d5470 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone/gen_type_activitystreams_tombstone.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone/gen_type_activitystreams_tombstone.go @@ -4,7 +4,7 @@ package typetombstone import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -61,6 +61,7 @@ type ActivityStreamsTombstone struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -256,6 +257,11 @@ func DeserializeTombstone(m map[string]interface{}, aliasMap map[string]string) } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -377,6 +383,8 @@ func DeserializeTombstone(m map[string]interface{}, aliasMap map[string]string) continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -601,6 +609,12 @@ func (this ActivityStreamsTombstone) GetActivityStreamsReplies() vocab.ActivityS return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsTombstone) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsTombstone) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -726,6 +740,7 @@ func (this ActivityStreamsTombstone) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1110,6 +1125,20 @@ func (this ActivityStreamsTombstone) LessThan(o vocab.ActivityStreamsTombstone) // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1509,6 +1538,14 @@ func (this ActivityStreamsTombstone) Serialize() (map[string]interface{}, error) m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1744,6 +1781,11 @@ func (this *ActivityStreamsTombstone) SetActivityStreamsReplies(i vocab.Activity this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsTombstone) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsTombstone) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_travel/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_travel/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_activity/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_activity/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel/gen_pkg.go index 77291a6dd..12ad27a8f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_activity/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel/gen_pkg.go @@ -1,8 +1,8 @@ // Code generated by astool. DO NOT EDIT. -package typeactivity +package typetravel -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -100,10 +100,6 @@ type privateManager interface { // method for the "ActivityStreamsNameProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeNamePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsNameProperty, error) - // DeserializeObjectPropertyActivityStreams returns the deserialization - // method for the "ActivityStreamsObjectProperty" non-functional - // property in the vocabulary "ActivityStreams" - DeserializeObjectPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsObjectProperty, error) // DeserializeOriginPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsOriginProperty" non-functional // property in the vocabulary "ActivityStreams" @@ -124,6 +120,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_travel/gen_type_activitystreams_travel.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel/gen_type_activitystreams_travel.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_travel/gen_type_activitystreams_travel.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel/gen_type_activitystreams_travel.go index 691cb3e0d..c6adf3b09 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_travel/gen_type_activitystreams_travel.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel/gen_type_activitystreams_travel.go @@ -4,7 +4,7 @@ package typetravel import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -57,6 +57,7 @@ type ActivityStreamsTravel struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -258,6 +259,11 @@ func DeserializeTravel(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -386,6 +392,8 @@ func DeserializeTravel(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -618,6 +626,12 @@ func (this ActivityStreamsTravel) GetActivityStreamsResult() vocab.ActivityStrea return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsTravel) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsTravel) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -750,6 +764,7 @@ func (this ActivityStreamsTravel) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1149,6 +1164,20 @@ func (this ActivityStreamsTravel) LessThan(o vocab.ActivityStreamsTravel) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1570,6 +1599,14 @@ func (this ActivityStreamsTravel) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1818,6 +1855,11 @@ func (this *ActivityStreamsTravel) SetActivityStreamsResult(i vocab.ActivityStre this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsTravel) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsTravel) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_undo/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_undo/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_undo/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_undo/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo/gen_pkg.go index 8b57d9d5d..710e3eaf6 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_undo/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo/gen_pkg.go @@ -2,7 +2,7 @@ package typeundo -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_undo/gen_type_activitystreams_undo.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo/gen_type_activitystreams_undo.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_undo/gen_type_activitystreams_undo.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo/gen_type_activitystreams_undo.go index 72d6423ec..323470148 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_undo/gen_type_activitystreams_undo.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo/gen_type_activitystreams_undo.go @@ -4,7 +4,7 @@ package typeundo import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -55,6 +55,7 @@ type ActivityStreamsUndo struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -261,6 +262,11 @@ func DeserializeUndo(m map[string]interface{}, aliasMap map[string]string) (*Act } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -391,6 +397,8 @@ func DeserializeUndo(m map[string]interface{}, aliasMap map[string]string) (*Act continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -629,6 +637,12 @@ func (this ActivityStreamsUndo) GetActivityStreamsResult() vocab.ActivityStreams return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsUndo) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsUndo) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -762,6 +776,7 @@ func (this ActivityStreamsUndo) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1175,6 +1190,20 @@ func (this ActivityStreamsUndo) LessThan(o vocab.ActivityStreamsUndo) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1604,6 +1633,14 @@ func (this ActivityStreamsUndo) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1857,6 +1894,11 @@ func (this *ActivityStreamsUndo) SetActivityStreamsResult(i vocab.ActivityStream this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsUndo) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsUndo) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_update/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_update/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_update/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_update/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update/gen_pkg.go index 1860bdaab..799036769 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_update/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update/gen_pkg.go @@ -2,7 +2,7 @@ package typeupdate -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_update/gen_type_activitystreams_update.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update/gen_type_activitystreams_update.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_update/gen_type_activitystreams_update.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update/gen_type_activitystreams_update.go index 18548261a..1b0e3d715 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_update/gen_type_activitystreams_update.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update/gen_type_activitystreams_update.go @@ -4,7 +4,7 @@ package typeupdate import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -52,6 +52,7 @@ type ActivityStreamsUpdate struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -258,6 +259,11 @@ func DeserializeUpdate(m map[string]interface{}, aliasMap map[string]string) (*A } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -388,6 +394,8 @@ func DeserializeUpdate(m map[string]interface{}, aliasMap map[string]string) (*A continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -626,6 +634,12 @@ func (this ActivityStreamsUpdate) GetActivityStreamsResult() vocab.ActivityStrea return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsUpdate) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsUpdate) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -759,6 +773,7 @@ func (this ActivityStreamsUpdate) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1172,6 +1187,20 @@ func (this ActivityStreamsUpdate) LessThan(o vocab.ActivityStreamsUpdate) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1601,6 +1630,14 @@ func (this ActivityStreamsUpdate) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1854,6 +1891,11 @@ func (this *ActivityStreamsUpdate) SetActivityStreamsResult(i vocab.ActivityStre this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsUpdate) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsUpdate) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_video/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_video/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_video/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_video/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video/gen_pkg.go index ad26144b2..8bd9d0539 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_video/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video/gen_pkg.go @@ -2,7 +2,7 @@ package typevideo -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -112,6 +112,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_video/gen_type_activitystreams_video.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video/gen_type_activitystreams_video.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_video/gen_type_activitystreams_video.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video/gen_type_activitystreams_video.go index b77dbd9f3..346a8ef8b 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_video/gen_type_activitystreams_video.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video/gen_type_activitystreams_video.go @@ -4,7 +4,7 @@ package typevideo import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -43,6 +43,7 @@ type ActivityStreamsVideo struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -233,6 +234,11 @@ func DeserializeVideo(m map[string]interface{}, aliasMap map[string]string) (*Ac } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -352,6 +358,8 @@ func DeserializeVideo(m map[string]interface{}, aliasMap map[string]string) (*Ac continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -564,6 +572,12 @@ func (this ActivityStreamsVideo) GetActivityStreamsReplies() vocab.ActivityStrea return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsVideo) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsVideo) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -693,6 +707,7 @@ func (this ActivityStreamsVideo) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1063,6 +1078,20 @@ func (this ActivityStreamsVideo) LessThan(o vocab.ActivityStreamsVideo) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1454,6 +1483,14 @@ func (this ActivityStreamsVideo) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1679,6 +1716,11 @@ func (this *ActivityStreamsVideo) SetActivityStreamsReplies(i vocab.ActivityStre this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsVideo) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsVideo) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_view/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_view/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_view/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_view/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view/gen_pkg.go index 8bc275b7d..4164fb615 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_view/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view/gen_pkg.go @@ -2,7 +2,7 @@ package typeview -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_view/gen_type_activitystreams_view.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view/gen_type_activitystreams_view.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_view/gen_type_activitystreams_view.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view/gen_type_activitystreams_view.go index dd80dcc84..835c4eaac 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/activitystreams/type_view/gen_type_activitystreams_view.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view/gen_type_activitystreams_view.go @@ -4,7 +4,7 @@ package typeview import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -52,6 +52,7 @@ type ActivityStreamsView struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -258,6 +259,11 @@ func DeserializeView(m map[string]interface{}, aliasMap map[string]string) (*Act } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -388,6 +394,8 @@ func DeserializeView(m map[string]interface{}, aliasMap map[string]string) (*Act continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -626,6 +634,12 @@ func (this ActivityStreamsView) GetActivityStreamsResult() vocab.ActivityStreams return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ActivityStreamsView) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ActivityStreamsView) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -759,6 +773,7 @@ func (this ActivityStreamsView) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1172,6 +1187,20 @@ func (this ActivityStreamsView) LessThan(o vocab.ActivityStreamsView) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1601,6 +1630,14 @@ func (this ActivityStreamsView) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1854,6 +1891,11 @@ func (this *ActivityStreamsView) SetActivityStreamsResult(i vocab.ActivityStream this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ActivityStreamsView) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ActivityStreamsView) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_assignedto/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_assignedto/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_assignedto/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_assignedto/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_assignedto/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_assignedto/gen_pkg.go similarity index 91% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_assignedto/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_assignedto/gen_pkg.go index 554417f7a..2ef332afd 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_assignedto/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_assignedto/gen_pkg.go @@ -2,7 +2,7 @@ package propertyassignedto -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_assignedto/gen_property_forgefed_assignedTo.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_assignedto/gen_property_forgefed_assignedTo.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_assignedto/gen_property_forgefed_assignedTo.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_assignedto/gen_property_forgefed_assignedTo.go index 0c8a86133..e92595947 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_assignedto/gen_property_forgefed_assignedTo.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_assignedto/gen_property_forgefed_assignedTo.go @@ -4,7 +4,7 @@ package propertyassignedto import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committed/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committed/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committed/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committed/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committed/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committed/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committed/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committed/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committed/gen_property_forgefed_committed.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committed/gen_property_forgefed_committed.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committed/gen_property_forgefed_committed.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committed/gen_property_forgefed_committed.go index c84eddf2f..c0400f409 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committed/gen_property_forgefed_committed.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committed/gen_property_forgefed_committed.go @@ -4,8 +4,8 @@ package propertycommitted import ( "fmt" - datetime "github.com/go-fed/activity/streams/values/dateTime" - vocab "github.com/go-fed/activity/streams/vocab" + datetime "github.com/superseriousbusiness/activity/streams/values/dateTime" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" "time" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committedby/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committedby/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committedby/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committedby/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committedby/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committedby/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committedby/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committedby/gen_pkg.go index 5a978c51a..81098ac2c 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committedby/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committedby/gen_pkg.go @@ -2,7 +2,7 @@ package propertycommittedby -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committedby/gen_property_forgefed_committedBy.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committedby/gen_property_forgefed_committedBy.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committedby/gen_property_forgefed_committedBy.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committedby/gen_property_forgefed_committedBy.go index bb5c1ee9d..f54cf6254 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_committedby/gen_property_forgefed_committedBy.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committedby/gen_property_forgefed_committedBy.go @@ -4,7 +4,7 @@ package propertycommittedby import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependants/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependants/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependants/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependants/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependants/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependants/gen_pkg.go similarity index 94% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependants/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependants/gen_pkg.go index 689ca890d..60b8b3888 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependants/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependants/gen_pkg.go @@ -2,7 +2,7 @@ package propertydependants -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependants/gen_property_forgefed_dependants.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependants/gen_property_forgefed_dependants.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependants/gen_property_forgefed_dependants.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependants/gen_property_forgefed_dependants.go index ba35229c5..8b50f3403 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependants/gen_property_forgefed_dependants.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependants/gen_property_forgefed_dependants.go @@ -4,7 +4,7 @@ package propertydependants import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependedby/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependedby/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependedby/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependedby/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependedby/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependedby/gen_pkg.go similarity index 90% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependedby/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependedby/gen_pkg.go index bcdf09afe..f40e25624 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependedby/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependedby/gen_pkg.go @@ -2,7 +2,7 @@ package propertydependedby -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependedby/gen_property_forgefed_dependedBy.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependedby/gen_property_forgefed_dependedBy.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependedby/gen_property_forgefed_dependedBy.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependedby/gen_property_forgefed_dependedBy.go index e96386d5b..645e63e34 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependedby/gen_property_forgefed_dependedBy.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependedby/gen_property_forgefed_dependedBy.go @@ -4,7 +4,7 @@ package propertydependedby import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependencies/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependencies/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependencies/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependencies/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependencies/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependencies/gen_pkg.go similarity index 94% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependencies/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependencies/gen_pkg.go index a1b4bdac3..212647439 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependencies/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependencies/gen_pkg.go @@ -2,7 +2,7 @@ package propertydependencies -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependencies/gen_property_forgefed_dependencies.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependencies/gen_property_forgefed_dependencies.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependencies/gen_property_forgefed_dependencies.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependencies/gen_property_forgefed_dependencies.go index ac8bfb228..e77efc92a 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependencies/gen_property_forgefed_dependencies.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependencies/gen_property_forgefed_dependencies.go @@ -4,7 +4,7 @@ package propertydependencies import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependson/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependson/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependson/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependson/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependson/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependson/gen_pkg.go similarity index 90% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependson/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependson/gen_pkg.go index 0998fc106..55ed17dac 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependson/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependson/gen_pkg.go @@ -2,7 +2,7 @@ package propertydependson -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependson/gen_property_forgefed_dependsOn.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependson/gen_property_forgefed_dependsOn.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependson/gen_property_forgefed_dependsOn.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependson/gen_property_forgefed_dependsOn.go index f87a2dca7..1c31fa276 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_dependson/gen_property_forgefed_dependsOn.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependson/gen_property_forgefed_dependsOn.go @@ -4,7 +4,7 @@ package propertydependson import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_description/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_description/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_description/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_description/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_description/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_description/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_description/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_description/gen_pkg.go index 1502759c2..4f29ca7bc 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_description/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_description/gen_pkg.go @@ -2,7 +2,7 @@ package propertydescription -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_description/gen_property_forgefed_description.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_description/gen_property_forgefed_description.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_description/gen_property_forgefed_description.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_description/gen_property_forgefed_description.go index 8e96d6832..5ffb3e3ec 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_description/gen_property_forgefed_description.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_description/gen_property_forgefed_description.go @@ -4,7 +4,7 @@ package propertydescription import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_earlyitems/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_earlyitems/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_earlyitems/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_earlyitems/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_earlyitems/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_earlyitems/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_earlyitems/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_earlyitems/gen_pkg.go index 7cf49dddf..0c9090a3d 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_earlyitems/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_earlyitems/gen_pkg.go @@ -2,7 +2,7 @@ package propertyearlyitems -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_earlyitems/gen_property_forgefed_earlyItems.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_earlyitems/gen_property_forgefed_earlyItems.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_earlyitems/gen_property_forgefed_earlyItems.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_earlyitems/gen_property_forgefed_earlyItems.go index 38e5b0df8..93c5501d5 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_earlyitems/gen_property_forgefed_earlyItems.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_earlyitems/gen_property_forgefed_earlyItems.go @@ -4,7 +4,7 @@ package propertyearlyitems import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesadded/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesadded/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesadded/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesadded/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesadded/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesadded/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesadded/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesadded/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesadded/gen_property_forgefed_filesAdded.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesadded/gen_property_forgefed_filesAdded.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesadded/gen_property_forgefed_filesAdded.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesadded/gen_property_forgefed_filesAdded.go index 9aa31f121..501090c3b 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesadded/gen_property_forgefed_filesAdded.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesadded/gen_property_forgefed_filesAdded.go @@ -4,8 +4,8 @@ package propertyfilesadded import ( "fmt" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesmodified/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesmodified/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesmodified/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesmodified/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesmodified/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesmodified/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesmodified/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesmodified/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesmodified/gen_property_forgefed_filesModified.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesmodified/gen_property_forgefed_filesModified.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesmodified/gen_property_forgefed_filesModified.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesmodified/gen_property_forgefed_filesModified.go index a0537d1a6..e2d98d74a 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesmodified/gen_property_forgefed_filesModified.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesmodified/gen_property_forgefed_filesModified.go @@ -4,8 +4,8 @@ package propertyfilesmodified import ( "fmt" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesremoved/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesremoved/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesremoved/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesremoved/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesremoved/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesremoved/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesremoved/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesremoved/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesremoved/gen_property_forgefed_filesRemoved.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesremoved/gen_property_forgefed_filesRemoved.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesremoved/gen_property_forgefed_filesRemoved.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesremoved/gen_property_forgefed_filesRemoved.go index 48478c13a..53c16163c 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_filesremoved/gen_property_forgefed_filesRemoved.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesremoved/gen_property_forgefed_filesRemoved.go @@ -4,8 +4,8 @@ package propertyfilesremoved import ( "fmt" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_forks/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_forks/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_forks/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_forks/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_forks/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_forks/gen_pkg.go similarity index 94% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_forks/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_forks/gen_pkg.go index dae869a36..673614a4d 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_forks/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_forks/gen_pkg.go @@ -2,7 +2,7 @@ package propertyforks -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_forks/gen_property_forgefed_forks.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_forks/gen_property_forgefed_forks.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_forks/gen_property_forgefed_forks.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_forks/gen_property_forgefed_forks.go index adc5bcbcc..3b29b71c6 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_forks/gen_property_forgefed_forks.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_forks/gen_property_forgefed_forks.go @@ -4,7 +4,7 @@ package propertyforks import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_hash/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_hash/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_hash/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_hash/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_hash/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_hash/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_hash/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_hash/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_hash/gen_property_forgefed_hash.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_hash/gen_property_forgefed_hash.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_hash/gen_property_forgefed_hash.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_hash/gen_property_forgefed_hash.go index cae2c472a..98a81366f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_hash/gen_property_forgefed_hash.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_hash/gen_property_forgefed_hash.go @@ -4,8 +4,8 @@ package propertyhash import ( "fmt" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_isresolved/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_isresolved/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_isresolved/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_isresolved/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_isresolved/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_isresolved/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_isresolved/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_isresolved/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_isresolved/gen_property_forgefed_isResolved.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_isresolved/gen_property_forgefed_isResolved.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_isresolved/gen_property_forgefed_isResolved.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_isresolved/gen_property_forgefed_isResolved.go index 625fcb9d0..17be1bd2f 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_isresolved/gen_property_forgefed_isResolved.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_isresolved/gen_property_forgefed_isResolved.go @@ -4,8 +4,8 @@ package propertyisresolved import ( "fmt" - boolean "github.com/go-fed/activity/streams/values/boolean" - vocab "github.com/go-fed/activity/streams/vocab" + boolean "github.com/superseriousbusiness/activity/streams/values/boolean" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ref/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ref/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ref/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ref/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ref/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ref/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ref/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ref/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ref/gen_property_forgefed_ref.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ref/gen_property_forgefed_ref.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ref/gen_property_forgefed_ref.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ref/gen_property_forgefed_ref.go index 3fe0e50a1..f242c8c97 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ref/gen_property_forgefed_ref.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ref/gen_property_forgefed_ref.go @@ -4,8 +4,8 @@ package propertyref import ( "fmt" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_team/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_team/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_team/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_team/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_team/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_team/gen_pkg.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_team/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_team/gen_pkg.go index 8e1684326..9f4a133d0 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_team/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_team/gen_pkg.go @@ -2,7 +2,7 @@ package propertyteam -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_team/gen_property_forgefed_team.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_team/gen_property_forgefed_team.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_team/gen_property_forgefed_team.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_team/gen_property_forgefed_team.go index 56670c34d..f2f6fa657 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_team/gen_property_forgefed_team.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_team/gen_property_forgefed_team.go @@ -4,7 +4,7 @@ package propertyteam import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ticketstrackedby/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ticketstrackedby/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ticketstrackedby/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ticketstrackedby/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ticketstrackedby/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ticketstrackedby/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ticketstrackedby/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ticketstrackedby/gen_pkg.go index b4215e80c..9f01a2f63 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ticketstrackedby/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ticketstrackedby/gen_pkg.go @@ -2,7 +2,7 @@ package propertyticketstrackedby -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ticketstrackedby/gen_property_forgefed_ticketsTrackedBy.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ticketstrackedby/gen_property_forgefed_ticketsTrackedBy.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ticketstrackedby/gen_property_forgefed_ticketsTrackedBy.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ticketstrackedby/gen_property_forgefed_ticketsTrackedBy.go index 9020342b8..a543a41cc 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_ticketstrackedby/gen_property_forgefed_ticketsTrackedBy.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ticketstrackedby/gen_property_forgefed_ticketsTrackedBy.go @@ -4,7 +4,7 @@ package propertyticketstrackedby import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_tracksticketsfor/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_tracksticketsfor/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_tracksticketsfor/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_tracksticketsfor/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_tracksticketsfor/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_tracksticketsfor/gen_pkg.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_tracksticketsfor/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_tracksticketsfor/gen_pkg.go index 7379b9e64..0d79a12dd 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_tracksticketsfor/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_tracksticketsfor/gen_pkg.go @@ -2,7 +2,7 @@ package propertytracksticketsfor -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_tracksticketsfor/gen_property_forgefed_tracksTicketsFor.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_tracksticketsfor/gen_property_forgefed_tracksTicketsFor.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/property_tracksticketsfor/gen_property_forgefed_tracksTicketsFor.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_tracksticketsfor/gen_property_forgefed_tracksTicketsFor.go index 577cdc17f..11481688d 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/property_tracksticketsfor/gen_property_forgefed_tracksTicketsFor.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/property_tracksticketsfor/gen_property_forgefed_tracksTicketsFor.go @@ -4,7 +4,7 @@ package propertytracksticketsfor import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_branch/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_branch/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_branch/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_branch/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch/gen_pkg.go index c96a877ad..c29677046 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_branch/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch/gen_pkg.go @@ -2,7 +2,7 @@ package typebranch -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -112,6 +112,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_branch/gen_type_forgefed_branch.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch/gen_type_forgefed_branch.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_branch/gen_type_forgefed_branch.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch/gen_type_forgefed_branch.go index 81a683c2a..ab815ba64 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_branch/gen_type_forgefed_branch.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch/gen_type_forgefed_branch.go @@ -4,7 +4,7 @@ package typebranch import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -49,6 +49,7 @@ type ForgeFedBranch struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ForgeFedRef vocab.ForgeFedRefProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -247,6 +248,11 @@ func DeserializeBranch(m map[string]interface{}, aliasMap map[string]string) (*F } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -366,6 +372,8 @@ func DeserializeBranch(m map[string]interface{}, aliasMap map[string]string) (*F continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -570,6 +578,12 @@ func (this ForgeFedBranch) GetActivityStreamsReplies() vocab.ActivityStreamsRepl return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ForgeFedBranch) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ForgeFedBranch) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -699,6 +713,7 @@ func (this ForgeFedBranch) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ForgeFedRef, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1069,6 +1084,20 @@ func (this ForgeFedBranch) LessThan(o vocab.ForgeFedBranch) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1460,6 +1489,14 @@ func (this ForgeFedBranch) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1685,6 +1722,11 @@ func (this *ForgeFedBranch) SetActivityStreamsReplies(i vocab.ActivityStreamsRep this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ForgeFedBranch) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ForgeFedBranch) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_commit/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_commit/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_commit/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_commit/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit/gen_pkg.go index 59844de7b..a2d2fe25b 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_commit/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit/gen_pkg.go @@ -2,7 +2,7 @@ package typecommit -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -136,6 +136,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_commit/gen_type_forgefed_commit.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit/gen_type_forgefed_commit.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_commit/gen_type_forgefed_commit.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit/gen_type_forgefed_commit.go index 5144ee50e..593217f69 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_commit/gen_type_forgefed_commit.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit/gen_type_forgefed_commit.go @@ -4,7 +4,7 @@ package typecommit import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -65,6 +65,7 @@ type ForgeFedCommit struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -293,6 +294,11 @@ func DeserializeCommit(m map[string]interface{}, aliasMap map[string]string) (*F } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -424,6 +430,8 @@ func DeserializeCommit(m map[string]interface{}, aliasMap map[string]string) (*F continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -628,6 +636,12 @@ func (this ForgeFedCommit) GetActivityStreamsReplies() vocab.ActivityStreamsRepl return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ForgeFedCommit) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ForgeFedCommit) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -799,6 +813,7 @@ func (this ForgeFedCommit) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1253,6 +1268,20 @@ func (this ForgeFedCommit) LessThan(o vocab.ForgeFedCommit) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1692,6 +1721,14 @@ func (this ForgeFedCommit) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1917,6 +1954,11 @@ func (this *ForgeFedCommit) SetActivityStreamsReplies(i vocab.ActivityStreamsRep this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ForgeFedCommit) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ForgeFedCommit) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_push/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_push/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_push/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_push/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push/gen_pkg.go index f81e3ac8a..06d308314 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_push/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push/gen_pkg.go @@ -2,7 +2,7 @@ package typepush -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -124,6 +124,10 @@ type privateManager interface { // method for the "ActivityStreamsResultProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeResultPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsResultProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_push/gen_type_forgefed_push.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push/gen_type_forgefed_push.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_push/gen_type_forgefed_push.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push/gen_type_forgefed_push.go index 5159e0f28..1a9ac0e09 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_push/gen_type_forgefed_push.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push/gen_type_forgefed_push.go @@ -4,7 +4,7 @@ package typepush import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -73,6 +73,7 @@ type ForgeFedPush struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty ActivityStreamsResult vocab.ActivityStreamsResultProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -267,6 +268,11 @@ func DeserializePush(m map[string]interface{}, aliasMap map[string]string) (*For } else if p != nil { this.ActivityStreamsResult = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -397,6 +403,8 @@ func DeserializePush(m map[string]interface{}, aliasMap map[string]string) (*For continue } else if k == "result" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -646,6 +654,12 @@ func (this ForgeFedPush) GetActivityStreamsResult() vocab.ActivityStreamsResultP return this.ActivityStreamsResult } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ForgeFedPush) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ForgeFedPush) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -779,6 +793,7 @@ func (this ForgeFedPush) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) m = this.helperJSONLDContext(this.ActivityStreamsResult, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1192,6 +1207,20 @@ func (this ForgeFedPush) LessThan(o vocab.ForgeFedPush) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1621,6 +1650,14 @@ func (this ForgeFedPush) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsResult.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1874,6 +1911,11 @@ func (this *ForgeFedPush) SetActivityStreamsResult(i vocab.ActivityStreamsResult this.ActivityStreamsResult = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ForgeFedPush) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ForgeFedPush) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_repository/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_repository/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_repository/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_repository/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository/gen_pkg.go index 95985e754..07268e604 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_repository/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository/gen_pkg.go @@ -2,7 +2,7 @@ package typerepository -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -112,6 +112,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_repository/gen_type_forgefed_repository.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository/gen_type_forgefed_repository.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_repository/gen_type_forgefed_repository.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository/gen_type_forgefed_repository.go index 819e5a2c4..40d12bf45 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_repository/gen_type_forgefed_repository.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository/gen_type_forgefed_repository.go @@ -4,7 +4,7 @@ package typerepository import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -57,6 +57,7 @@ type ForgeFedRepository struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -235,6 +236,11 @@ func DeserializeRepository(m map[string]interface{}, aliasMap map[string]string) } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -354,6 +360,8 @@ func DeserializeRepository(m map[string]interface{}, aliasMap map[string]string) continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -578,6 +586,12 @@ func (this ForgeFedRepository) GetActivityStreamsReplies() vocab.ActivityStreams return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ForgeFedRepository) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ForgeFedRepository) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -707,6 +721,7 @@ func (this ForgeFedRepository) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1077,6 +1092,20 @@ func (this ForgeFedRepository) LessThan(o vocab.ForgeFedRepository) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1468,6 +1497,14 @@ func (this ForgeFedRepository) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1693,6 +1730,11 @@ func (this *ForgeFedRepository) SetActivityStreamsReplies(i vocab.ActivityStream this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ForgeFedRepository) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ForgeFedRepository) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticket/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticket/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticket/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticket/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket/gen_pkg.go index 1c57f8bde..43f226b01 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticket/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket/gen_pkg.go @@ -2,7 +2,7 @@ package typeticket -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -132,6 +132,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticket/gen_type_forgefed_ticket.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket/gen_type_forgefed_ticket.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticket/gen_type_forgefed_ticket.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket/gen_type_forgefed_ticket.go index 2ccceda38..4e1d274f5 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticket/gen_type_forgefed_ticket.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket/gen_type_forgefed_ticket.go @@ -4,7 +4,7 @@ package typeticket import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -63,6 +63,7 @@ type ForgeFedTicket struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -266,6 +267,11 @@ func DeserializeTicket(m map[string]interface{}, aliasMap map[string]string) (*F } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -395,6 +401,8 @@ func DeserializeTicket(m map[string]interface{}, aliasMap map[string]string) (*F continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -619,6 +627,12 @@ func (this ForgeFedTicket) GetActivityStreamsReplies() vocab.ActivityStreamsRepl return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ForgeFedTicket) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ForgeFedTicket) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -784,6 +798,7 @@ func (this ForgeFedTicket) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1224,6 +1239,20 @@ func (this ForgeFedTicket) LessThan(o vocab.ForgeFedTicket) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1655,6 +1684,14 @@ func (this ForgeFedTicket) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1880,6 +1917,11 @@ func (this *ForgeFedTicket) SetActivityStreamsReplies(i vocab.ActivityStreamsRep this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ForgeFedTicket) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ForgeFedTicket) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency/gen_pkg.go index f3f8ba68c..d06bc4bd2 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency/gen_pkg.go @@ -2,7 +2,7 @@ package typeticketdependency -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -113,6 +113,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency/gen_type_forgefed_ticketdependency.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency/gen_type_forgefed_ticketdependency.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency/gen_type_forgefed_ticketdependency.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency/gen_type_forgefed_ticketdependency.go index c6d77c9ed..ce3003ca4 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency/gen_type_forgefed_ticketdependency.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency/gen_type_forgefed_ticketdependency.go @@ -4,7 +4,7 @@ package typeticketdependency import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -56,6 +56,7 @@ type ForgeFedTicketDependency struct { ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsRelationship vocab.ActivityStreamsRelationshipProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -235,6 +236,11 @@ func DeserializeTicketDependency(m map[string]interface{}, aliasMap map[string]s } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -359,6 +365,8 @@ func DeserializeTicketDependency(m map[string]interface{}, aliasMap map[string]s continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -591,6 +599,12 @@ func (this ForgeFedTicketDependency) GetActivityStreamsReplies() vocab.ActivityS return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this ForgeFedTicketDependency) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this ForgeFedTicketDependency) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -722,6 +736,7 @@ func (this ForgeFedTicketDependency) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsRelationship, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1093,6 +1108,20 @@ func (this ForgeFedTicketDependency) LessThan(o vocab.ForgeFedTicketDependency) // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1498,6 +1527,14 @@ func (this ForgeFedTicketDependency) Serialize() (map[string]interface{}, error) m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1736,6 +1773,11 @@ func (this *ForgeFedTicketDependency) SetActivityStreamsReplies(i vocab.Activity this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *ForgeFedTicketDependency) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *ForgeFedTicketDependency) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/jsonld/property_id/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_id/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/jsonld/property_id/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_id/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/jsonld/property_id/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_id/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/jsonld/property_id/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_id/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/jsonld/property_id/gen_property_jsonld_id.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_id/gen_property_jsonld_id.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/jsonld/property_id/gen_property_jsonld_id.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_id/gen_property_jsonld_id.go index 067c42ae6..3f089e8c8 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/jsonld/property_id/gen_property_jsonld_id.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_id/gen_property_jsonld_id.go @@ -4,8 +4,8 @@ package propertyid import ( "fmt" - anyuri "github.com/go-fed/activity/streams/values/anyURI" - vocab "github.com/go-fed/activity/streams/vocab" + anyuri "github.com/superseriousbusiness/activity/streams/values/anyURI" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/jsonld/property_type/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_type/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/jsonld/property_type/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_type/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/jsonld/property_type/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_type/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/jsonld/property_type/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_type/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/jsonld/property_type/gen_property_jsonld_type.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_type/gen_property_jsonld_type.go similarity index 98% rename from vendor/github.com/go-fed/activity/streams/impl/jsonld/property_type/gen_property_jsonld_type.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_type/gen_property_jsonld_type.go index 480d26a88..fc47ee567 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/jsonld/property_type/gen_property_jsonld_type.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/jsonld/property_type/gen_property_jsonld_type.go @@ -4,9 +4,9 @@ package propertytype import ( "fmt" - anyuri "github.com/go-fed/activity/streams/values/anyURI" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + anyuri "github.com/superseriousbusiness/activity/streams/values/anyURI" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_blurhash/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_blurhash/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_blurhash/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_blurhash/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_blurhash/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_blurhash/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_blurhash/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_blurhash/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_blurhash/gen_property_toot_blurhash.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_blurhash/gen_property_toot_blurhash.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_blurhash/gen_property_toot_blurhash.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_blurhash/gen_property_toot_blurhash.go index 58293a889..8d31f9c52 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/toot/property_blurhash/gen_property_toot_blurhash.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_blurhash/gen_property_toot_blurhash.go @@ -4,8 +4,8 @@ package propertyblurhash import ( "fmt" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_discoverable/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_discoverable/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_discoverable/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_discoverable/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_discoverable/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_discoverable/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_discoverable/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_discoverable/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_discoverable/gen_property_toot_discoverable.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_discoverable/gen_property_toot_discoverable.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_discoverable/gen_property_toot_discoverable.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_discoverable/gen_property_toot_discoverable.go index da66e6e21..1e931acab 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/toot/property_discoverable/gen_property_toot_discoverable.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_discoverable/gen_property_toot_discoverable.go @@ -4,8 +4,8 @@ package propertydiscoverable import ( "fmt" - boolean "github.com/go-fed/activity/streams/values/boolean" - vocab "github.com/go-fed/activity/streams/vocab" + boolean "github.com/superseriousbusiness/activity/streams/values/boolean" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_featured/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_featured/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_featured/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_featured/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_featured/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_featured/gen_pkg.go similarity index 94% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_featured/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_featured/gen_pkg.go index 3cfcaa446..d229d74a3 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/toot/property_featured/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_featured/gen_pkg.go @@ -2,7 +2,7 @@ package propertyfeatured -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_featured/gen_property_toot_featured.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_featured/gen_property_toot_featured.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_featured/gen_property_toot_featured.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_featured/gen_property_toot_featured.go index dd1ea6011..04bf151d7 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/toot/property_featured/gen_property_toot_featured.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_featured/gen_property_toot_featured.go @@ -4,7 +4,7 @@ package propertyfeatured import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturealgorithm/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturealgorithm/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturealgorithm/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturealgorithm/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturealgorithm/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturealgorithm/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturealgorithm/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturealgorithm/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturealgorithm/gen_property_toot_signatureAlgorithm.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturealgorithm/gen_property_toot_signatureAlgorithm.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturealgorithm/gen_property_toot_signatureAlgorithm.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturealgorithm/gen_property_toot_signatureAlgorithm.go index cf01533f0..bf44b4bf7 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturealgorithm/gen_property_toot_signatureAlgorithm.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturealgorithm/gen_property_toot_signatureAlgorithm.go @@ -4,8 +4,8 @@ package propertysignaturealgorithm import ( "fmt" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturevalue/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturevalue/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturevalue/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturevalue/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturevalue/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturevalue/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturevalue/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturevalue/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturevalue/gen_property_toot_signatureValue.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturevalue/gen_property_toot_signatureValue.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturevalue/gen_property_toot_signatureValue.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturevalue/gen_property_toot_signatureValue.go index 5810d60d0..54887f416 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/toot/property_signaturevalue/gen_property_toot_signatureValue.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturevalue/gen_property_toot_signatureValue.go @@ -4,8 +4,8 @@ package propertysignaturevalue import ( "fmt" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_voterscount/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_voterscount/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_voterscount/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_voterscount/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_voterscount/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_voterscount/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_voterscount/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_voterscount/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/property_voterscount/gen_property_toot_votersCount.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_voterscount/gen_property_toot_votersCount.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/toot/property_voterscount/gen_property_toot_votersCount.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_voterscount/gen_property_toot_votersCount.go index 01d2ddfaa..0f9d4828e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/toot/property_voterscount/gen_property_toot_votersCount.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/property_voterscount/gen_property_toot_votersCount.go @@ -4,8 +4,8 @@ package propertyvoterscount import ( "fmt" - nonnegativeinteger "github.com/go-fed/activity/streams/values/nonNegativeInteger" - vocab "github.com/go-fed/activity/streams/vocab" + nonnegativeinteger "github.com/superseriousbusiness/activity/streams/values/nonNegativeInteger" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/type_emoji/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/type_emoji/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/type_emoji/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/toot/type_emoji/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji/gen_pkg.go index 560ec45e3..44cab9702 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/toot/type_emoji/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji/gen_pkg.go @@ -2,7 +2,7 @@ package typeemoji -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -108,6 +108,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/type_emoji/gen_type_toot_emoji.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji/gen_type_toot_emoji.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/toot/type_emoji/gen_type_toot_emoji.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji/gen_type_toot_emoji.go index c24b9fa5d..22f89939b 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/toot/type_emoji/gen_type_toot_emoji.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji/gen_type_toot_emoji.go @@ -4,7 +4,7 @@ package typeemoji import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -52,6 +52,7 @@ type TootEmoji struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty ActivityStreamsSource vocab.ActivityStreamsSourceProperty ActivityStreamsStartTime vocab.ActivityStreamsStartTimeProperty @@ -225,6 +226,11 @@ func DeserializeEmoji(m map[string]interface{}, aliasMap map[string]string) (*To } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -342,6 +348,8 @@ func DeserializeEmoji(m map[string]interface{}, aliasMap map[string]string) (*To continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "source" { @@ -565,6 +573,12 @@ func (this TootEmoji) GetActivityStreamsReplies() vocab.ActivityStreamsRepliesPr return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this TootEmoji) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this TootEmoji) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -688,6 +702,7 @@ func (this TootEmoji) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.ActivityStreamsSource, m) m = this.helperJSONLDContext(this.ActivityStreamsStartTime, m) @@ -1044,6 +1059,20 @@ func (this TootEmoji) LessThan(o vocab.TootEmoji) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1427,6 +1456,14 @@ func (this TootEmoji) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1652,6 +1689,11 @@ func (this *TootEmoji) SetActivityStreamsReplies(i vocab.ActivityStreamsRepliesP this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *TootEmoji) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *TootEmoji) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/type_identityproof/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/toot/type_identityproof/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/type_identityproof/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/toot/type_identityproof/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof/gen_pkg.go index 5e72ca466..1dca15931 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/toot/type_identityproof/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof/gen_pkg.go @@ -2,7 +2,7 @@ package typeidentityproof -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager @@ -108,6 +108,10 @@ type privateManager interface { // method for the "ActivityStreamsRepliesProperty" non-functional // property in the vocabulary "ActivityStreams" DeserializeRepliesPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsRepliesProperty, error) + // DeserializeSensitivePropertyActivityStreams returns the deserialization + // method for the "ActivityStreamsSensitiveProperty" non-functional + // property in the vocabulary "ActivityStreams" + DeserializeSensitivePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSensitiveProperty, error) // DeserializeSharesPropertyActivityStreams returns the deserialization // method for the "ActivityStreamsSharesProperty" non-functional // property in the vocabulary "ActivityStreams" diff --git a/vendor/github.com/go-fed/activity/streams/impl/toot/type_identityproof/gen_type_toot_identityproof.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof/gen_type_toot_identityproof.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/toot/type_identityproof/gen_type_toot_identityproof.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof/gen_type_toot_identityproof.go index 01e9d95ab..98702374c 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/toot/type_identityproof/gen_type_toot_identityproof.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof/gen_type_toot_identityproof.go @@ -4,7 +4,7 @@ package typeidentityproof import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "strings" ) @@ -36,6 +36,7 @@ type TootIdentityProof struct { ActivityStreamsPreview vocab.ActivityStreamsPreviewProperty ActivityStreamsPublished vocab.ActivityStreamsPublishedProperty ActivityStreamsReplies vocab.ActivityStreamsRepliesProperty + ActivityStreamsSensitive vocab.ActivityStreamsSensitiveProperty ActivityStreamsShares vocab.ActivityStreamsSharesProperty TootSignatureAlgorithm vocab.TootSignatureAlgorithmProperty TootSignatureValue vocab.TootSignatureValueProperty @@ -211,6 +212,11 @@ func DeserializeIdentityProof(m map[string]interface{}, aliasMap map[string]stri } else if p != nil { this.ActivityStreamsReplies = p } + if p, err := mgr.DeserializeSensitivePropertyActivityStreams()(m, aliasMap); err != nil { + return nil, err + } else if p != nil { + this.ActivityStreamsSensitive = p + } if p, err := mgr.DeserializeSharesPropertyActivityStreams()(m, aliasMap); err != nil { return nil, err } else if p != nil { @@ -338,6 +344,8 @@ func DeserializeIdentityProof(m map[string]interface{}, aliasMap map[string]stri continue } else if k == "replies" { continue + } else if k == "sensitive" { + continue } else if k == "shares" { continue } else if k == "signatureAlgorithm" { @@ -566,6 +574,12 @@ func (this TootIdentityProof) GetActivityStreamsReplies() vocab.ActivityStreamsR return this.ActivityStreamsReplies } +// GetActivityStreamsSensitive returns the "sensitive" property if it exists, and +// nil otherwise. +func (this TootIdentityProof) GetActivityStreamsSensitive() vocab.ActivityStreamsSensitiveProperty { + return this.ActivityStreamsSensitive +} + // GetActivityStreamsShares returns the "shares" property if it exists, and nil // otherwise. func (this TootIdentityProof) GetActivityStreamsShares() vocab.ActivityStreamsSharesProperty { @@ -701,6 +715,7 @@ func (this TootIdentityProof) JSONLDContext() map[string]string { m = this.helperJSONLDContext(this.ActivityStreamsPreview, m) m = this.helperJSONLDContext(this.ActivityStreamsPublished, m) m = this.helperJSONLDContext(this.ActivityStreamsReplies, m) + m = this.helperJSONLDContext(this.ActivityStreamsSensitive, m) m = this.helperJSONLDContext(this.ActivityStreamsShares, m) m = this.helperJSONLDContext(this.TootSignatureAlgorithm, m) m = this.helperJSONLDContext(this.TootSignatureValue, m) @@ -1059,6 +1074,20 @@ func (this TootIdentityProof) LessThan(o vocab.TootIdentityProof) bool { // Anything else is greater than nil return false } // Else: Both are nil + // Compare property "sensitive" + if lhs, rhs := this.ActivityStreamsSensitive, o.GetActivityStreamsSensitive(); lhs != nil && rhs != nil { + if lhs.LessThan(rhs) { + return true + } else if rhs.LessThan(lhs) { + return false + } + } else if lhs == nil && rhs != nil { + // Nil is less than anything else + return true + } else if rhs != nil && rhs == nil { + // Anything else is greater than nil + return false + } // Else: Both are nil // Compare property "shares" if lhs, rhs := this.ActivityStreamsShares, o.GetActivityStreamsShares(); lhs != nil && rhs != nil { if lhs.LessThan(rhs) { @@ -1470,6 +1499,14 @@ func (this TootIdentityProof) Serialize() (map[string]interface{}, error) { m[this.ActivityStreamsReplies.Name()] = i } } + // Maybe serialize property "sensitive" + if this.ActivityStreamsSensitive != nil { + if i, err := this.ActivityStreamsSensitive.Serialize(); err != nil { + return nil, err + } else if i != nil { + m[this.ActivityStreamsSensitive.Name()] = i + } + } // Maybe serialize property "shares" if this.ActivityStreamsShares != nil { if i, err := this.ActivityStreamsShares.Serialize(); err != nil { @@ -1711,6 +1748,11 @@ func (this *TootIdentityProof) SetActivityStreamsReplies(i vocab.ActivityStreams this.ActivityStreamsReplies = i } +// SetActivityStreamsSensitive sets the "sensitive" property. +func (this *TootIdentityProof) SetActivityStreamsSensitive(i vocab.ActivityStreamsSensitiveProperty) { + this.ActivityStreamsSensitive = i +} + // SetActivityStreamsShares sets the "shares" property. func (this *TootIdentityProof) SetActivityStreamsShares(i vocab.ActivityStreamsSharesProperty) { this.ActivityStreamsShares = i diff --git a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_owner/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_owner/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_owner/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_owner/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_owner/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_owner/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_owner/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_owner/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_owner/gen_property_w3idsecurityv1_owner.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_owner/gen_property_w3idsecurityv1_owner.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_owner/gen_property_w3idsecurityv1_owner.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_owner/gen_property_w3idsecurityv1_owner.go index c4a2bafb4..6836e2701 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_owner/gen_property_w3idsecurityv1_owner.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_owner/gen_property_w3idsecurityv1_owner.go @@ -4,8 +4,8 @@ package propertyowner import ( "fmt" - anyuri "github.com/go-fed/activity/streams/values/anyURI" - vocab "github.com/go-fed/activity/streams/vocab" + anyuri "github.com/superseriousbusiness/activity/streams/values/anyURI" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickey/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickey/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickey/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickey/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickey/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickey/gen_pkg.go similarity index 91% rename from vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickey/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickey/gen_pkg.go index 3ebfa0897..30b2a52a2 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickey/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickey/gen_pkg.go @@ -2,7 +2,7 @@ package propertypublickey -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickey/gen_property_w3idsecurityv1_publicKey.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickey/gen_property_w3idsecurityv1_publicKey.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickey/gen_property_w3idsecurityv1_publicKey.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickey/gen_property_w3idsecurityv1_publicKey.go index d88d7ac38..abe892a42 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickey/gen_property_w3idsecurityv1_publicKey.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickey/gen_property_w3idsecurityv1_publicKey.go @@ -4,7 +4,7 @@ package propertypublickey import ( "fmt" - vocab "github.com/go-fed/activity/streams/vocab" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_property_w3idsecurityv1_publicKeyPem.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_property_w3idsecurityv1_publicKeyPem.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_property_w3idsecurityv1_publicKeyPem.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_property_w3idsecurityv1_publicKeyPem.go index fd3826d26..f5934db42 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_property_w3idsecurityv1_publicKeyPem.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickeypem/gen_property_w3idsecurityv1_publicKeyPem.go @@ -4,8 +4,8 @@ package propertypublickeypem import ( "fmt" - string1 "github.com/go-fed/activity/streams/values/string" - vocab "github.com/go-fed/activity/streams/vocab" + string1 "github.com/superseriousbusiness/activity/streams/values/string" + vocab "github.com/superseriousbusiness/activity/streams/vocab" "net/url" ) diff --git a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey/gen_pkg.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey/gen_pkg.go index 4204375d5..3197ffd8e 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey/gen_pkg.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey/gen_pkg.go @@ -2,7 +2,7 @@ package typepublickey -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" var mgr privateManager diff --git a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey/gen_type_w3idsecurityv1_publickey.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey/gen_type_w3idsecurityv1_publickey.go similarity index 99% rename from vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey/gen_type_w3idsecurityv1_publickey.go rename to vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey/gen_type_w3idsecurityv1_publickey.go index 92c90b20d..8c4356ec6 100644 --- a/vendor/github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey/gen_type_w3idsecurityv1_publickey.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey/gen_type_w3idsecurityv1_publickey.go @@ -2,7 +2,7 @@ package typepublickey -import vocab "github.com/go-fed/activity/streams/vocab" +import vocab "github.com/superseriousbusiness/activity/streams/vocab" // A public key represents a public cryptographical key for a user type W3IDSecurityV1PublicKey struct { diff --git a/vendor/github.com/go-fed/activity/streams/util.go b/vendor/github.com/superseriousbusiness/activity/streams/util.go similarity index 96% rename from vendor/github.com/go-fed/activity/streams/util.go rename to vendor/github.com/superseriousbusiness/activity/streams/util.go index ea27f2f96..501a3b66a 100644 --- a/vendor/github.com/go-fed/activity/streams/util.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/util.go @@ -1,7 +1,7 @@ package streams import ( - "github.com/go-fed/activity/streams/vocab" + "github.com/superseriousbusiness/activity/streams/vocab" ) const ( diff --git a/vendor/github.com/go-fed/activity/streams/values/anyURI/gen_anyURI.go b/vendor/github.com/superseriousbusiness/activity/streams/values/anyURI/gen_anyURI.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/values/anyURI/gen_anyURI.go rename to vendor/github.com/superseriousbusiness/activity/streams/values/anyURI/gen_anyURI.go diff --git a/vendor/github.com/go-fed/activity/streams/values/bcp47/gen_bcp47.go b/vendor/github.com/superseriousbusiness/activity/streams/values/bcp47/gen_bcp47.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/values/bcp47/gen_bcp47.go rename to vendor/github.com/superseriousbusiness/activity/streams/values/bcp47/gen_bcp47.go diff --git a/vendor/github.com/go-fed/activity/streams/values/boolean/gen_boolean.go b/vendor/github.com/superseriousbusiness/activity/streams/values/boolean/gen_boolean.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/values/boolean/gen_boolean.go rename to vendor/github.com/superseriousbusiness/activity/streams/values/boolean/gen_boolean.go diff --git a/vendor/github.com/go-fed/activity/streams/values/dateTime/gen_dateTime.go b/vendor/github.com/superseriousbusiness/activity/streams/values/dateTime/gen_dateTime.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/values/dateTime/gen_dateTime.go rename to vendor/github.com/superseriousbusiness/activity/streams/values/dateTime/gen_dateTime.go diff --git a/vendor/github.com/go-fed/activity/streams/values/duration/gen_duration.go b/vendor/github.com/superseriousbusiness/activity/streams/values/duration/gen_duration.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/values/duration/gen_duration.go rename to vendor/github.com/superseriousbusiness/activity/streams/values/duration/gen_duration.go diff --git a/vendor/github.com/go-fed/activity/streams/values/float/gen_float.go b/vendor/github.com/superseriousbusiness/activity/streams/values/float/gen_float.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/values/float/gen_float.go rename to vendor/github.com/superseriousbusiness/activity/streams/values/float/gen_float.go diff --git a/vendor/github.com/go-fed/activity/streams/values/langString/gen_langString.go b/vendor/github.com/superseriousbusiness/activity/streams/values/langString/gen_langString.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/values/langString/gen_langString.go rename to vendor/github.com/superseriousbusiness/activity/streams/values/langString/gen_langString.go diff --git a/vendor/github.com/go-fed/activity/streams/values/nonNegativeInteger/gen_nonNegativeInteger.go b/vendor/github.com/superseriousbusiness/activity/streams/values/nonNegativeInteger/gen_nonNegativeInteger.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/values/nonNegativeInteger/gen_nonNegativeInteger.go rename to vendor/github.com/superseriousbusiness/activity/streams/values/nonNegativeInteger/gen_nonNegativeInteger.go diff --git a/vendor/github.com/go-fed/activity/streams/values/rfc2045/gen_rfc2045.go b/vendor/github.com/superseriousbusiness/activity/streams/values/rfc2045/gen_rfc2045.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/values/rfc2045/gen_rfc2045.go rename to vendor/github.com/superseriousbusiness/activity/streams/values/rfc2045/gen_rfc2045.go diff --git a/vendor/github.com/go-fed/activity/streams/values/rfc5988/gen_rfc5988.go b/vendor/github.com/superseriousbusiness/activity/streams/values/rfc5988/gen_rfc5988.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/values/rfc5988/gen_rfc5988.go rename to vendor/github.com/superseriousbusiness/activity/streams/values/rfc5988/gen_rfc5988.go diff --git a/vendor/github.com/go-fed/activity/streams/values/string/gen_string.go b/vendor/github.com/superseriousbusiness/activity/streams/values/string/gen_string.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/values/string/gen_string.go rename to vendor/github.com/superseriousbusiness/activity/streams/values/string/gen_string.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_doc.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_doc.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_doc.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_pkg.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_pkg.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_pkg.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_accuracy_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_accuracy_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_accuracy_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_accuracy_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_actor_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_actor_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_actor_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_actor_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_altitude_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_altitude_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_altitude_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_altitude_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_anyOf_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_anyOf_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_anyOf_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_anyOf_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_attachment_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_attachment_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_attachment_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_attachment_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_attributedTo_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_attributedTo_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_attributedTo_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_attributedTo_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_audience_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_audience_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_audience_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_audience_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_bcc_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_bcc_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_bcc_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_bcc_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_bto_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_bto_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_bto_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_bto_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_cc_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_cc_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_cc_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_cc_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_closed_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_closed_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_closed_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_closed_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_content_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_content_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_content_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_content_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_context_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_context_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_context_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_context_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_current_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_current_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_current_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_current_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_deleted_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_deleted_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_deleted_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_deleted_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_describes_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_describes_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_describes_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_describes_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_duration_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_duration_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_duration_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_duration_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_endTime_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_endTime_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_endTime_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_endTime_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_first_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_first_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_first_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_first_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_followers_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_followers_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_followers_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_followers_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_following_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_following_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_following_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_following_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_formerType_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_formerType_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_formerType_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_formerType_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_generator_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_generator_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_generator_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_generator_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_height_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_height_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_height_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_height_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_href_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_href_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_href_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_href_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_hreflang_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_hreflang_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_hreflang_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_hreflang_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_icon_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_icon_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_icon_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_icon_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_image_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_image_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_image_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_image_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_inReplyTo_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_inReplyTo_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_inReplyTo_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_inReplyTo_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_inbox_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_inbox_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_inbox_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_inbox_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_instrument_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_instrument_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_instrument_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_instrument_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_items_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_items_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_items_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_items_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_last_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_last_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_last_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_last_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_latitude_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_latitude_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_latitude_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_latitude_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_liked_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_liked_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_liked_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_liked_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_likes_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_likes_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_likes_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_likes_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_location_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_location_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_location_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_location_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_longitude_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_longitude_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_longitude_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_longitude_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_manuallyApprovesFollowers_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_manuallyApprovesFollowers_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_manuallyApprovesFollowers_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_manuallyApprovesFollowers_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_mediaType_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_mediaType_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_mediaType_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_mediaType_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_name_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_name_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_name_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_name_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_next_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_next_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_next_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_next_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_object_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_object_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_object_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_object_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_oneOf_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_oneOf_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_oneOf_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_oneOf_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_orderedItems_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_orderedItems_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_orderedItems_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_orderedItems_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_origin_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_origin_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_origin_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_origin_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_outbox_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_outbox_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_outbox_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_outbox_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_partOf_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_partOf_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_partOf_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_partOf_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_preferredUsername_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_preferredUsername_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_preferredUsername_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_preferredUsername_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_prev_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_prev_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_prev_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_prev_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_preview_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_preview_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_preview_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_preview_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_published_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_published_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_published_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_published_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_radius_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_radius_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_radius_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_radius_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_rel_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_rel_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_rel_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_rel_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_relationship_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_relationship_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_relationship_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_relationship_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_replies_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_replies_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_replies_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_replies_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_result_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_result_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_result_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_result_interface.go diff --git a/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_sensitive_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_sensitive_interface.go new file mode 100644 index 000000000..30a6563b6 --- /dev/null +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_sensitive_interface.go @@ -0,0 +1,132 @@ +// Code generated by astool. DO NOT EDIT. + +package vocab + +import "net/url" + +// ActivityStreamsSensitivePropertyIterator represents a single value for the +// "sensitive" property. +type ActivityStreamsSensitivePropertyIterator interface { + // Get returns the value of this property. When IsXMLSchemaBoolean returns + // false, Get will return any arbitrary value. + Get() bool + // GetIRI returns the IRI of this property. When IsIRI returns false, + // GetIRI will return any arbitrary value. + GetIRI() *url.URL + // HasAny returns true if the value or IRI is set. + HasAny() bool + // IsIRI returns true if this property is an IRI. + IsIRI() bool + // IsXMLSchemaBoolean returns true if this property is set and not an IRI. + IsXMLSchemaBoolean() bool + // JSONLDContext returns the JSONLD URIs required in the context string + // for this property and the specific values that are set. The value + // in the map is the alias used to import the property's value or + // values. + JSONLDContext() map[string]string + // KindIndex computes an arbitrary value for indexing this kind of value. + // This is a leaky API detail only for folks looking to replace the + // go-fed implementation. Applications should not use this method. + KindIndex() int + // LessThan compares two instances of this property with an arbitrary but + // stable comparison. Applications should not use this because it is + // only meant to help alternative implementations to go-fed to be able + // to normalize nonfunctional properties. + LessThan(o ActivityStreamsSensitivePropertyIterator) bool + // Name returns the name of this property: "ActivityStreamsSensitive". + Name() string + // Next returns the next iterator, or nil if there is no next iterator. + Next() ActivityStreamsSensitivePropertyIterator + // Prev returns the previous iterator, or nil if there is no previous + // iterator. + Prev() ActivityStreamsSensitivePropertyIterator + // Set sets the value of this property. Calling IsXMLSchemaBoolean + // afterwards will return true. + Set(v bool) + // SetIRI sets the value of this property. Calling IsIRI afterwards will + // return true. + SetIRI(v *url.URL) +} + +// Indicates that some users may wish to apply discretion about viewing this +// object's content, whether due to nudity, violence, or any other likely +// aspects that viewers may be sensitive to. +type ActivityStreamsSensitiveProperty interface { + // AppendIRI appends an IRI value to the back of a list of the property + // "sensitive" + AppendIRI(v *url.URL) + // AppendXMLSchemaBoolean appends a boolean value to the back of a list of + // the property "sensitive". Invalidates iterators that are traversing + // using Prev. + AppendXMLSchemaBoolean(v bool) + // At returns the property value for the specified index. Panics if the + // index is out of bounds. + At(index int) ActivityStreamsSensitivePropertyIterator + // Begin returns the first iterator, or nil if empty. Can be used with the + // iterator's Next method and this property's End method to iterate + // from front to back through all values. + Begin() ActivityStreamsSensitivePropertyIterator + // Empty returns returns true if there are no elements. + Empty() bool + // End returns beyond-the-last iterator, which is nil. Can be used with + // the iterator's Next method and this property's Begin method to + // iterate from front to back through all values. + End() ActivityStreamsSensitivePropertyIterator + // Insert inserts an IRI value at the specified index for a property + // "sensitive". Existing elements at that index and higher are shifted + // back once. Invalidates all iterators. + InsertIRI(idx int, v *url.URL) + // InsertXMLSchemaBoolean inserts a boolean value at the specified index + // for a property "sensitive". Existing elements at that index and + // higher are shifted back once. Invalidates all iterators. + InsertXMLSchemaBoolean(idx int, v bool) + // JSONLDContext returns the JSONLD URIs required in the context string + // for this property and the specific values that are set. The value + // in the map is the alias used to import the property's value or + // values. + JSONLDContext() map[string]string + // KindIndex computes an arbitrary value for indexing this kind of value. + // This is a leaky API method specifically needed only for alternate + // implementations for go-fed. Applications should not use this + // method. Panics if the index is out of bounds. + KindIndex(idx int) int + // Len returns the number of values that exist for the "sensitive" + // property. + Len() (length int) + // Less computes whether another property is less than this one. Mixing + // types results in a consistent but arbitrary ordering + Less(i, j int) bool + // LessThan compares two instances of this property with an arbitrary but + // stable comparison. Applications should not use this because it is + // only meant to help alternative implementations to go-fed to be able + // to normalize nonfunctional properties. + LessThan(o ActivityStreamsSensitiveProperty) bool + // Name returns the name of this property ("sensitive") with any alias. + Name() string + // PrependIRI prepends an IRI value to the front of a list of the property + // "sensitive". + PrependIRI(v *url.URL) + // PrependXMLSchemaBoolean prepends a boolean value to the front of a list + // of the property "sensitive". Invalidates all iterators. + PrependXMLSchemaBoolean(v bool) + // Remove deletes an element at the specified index from a list of the + // property "sensitive", regardless of its type. Panics if the index + // is out of bounds. Invalidates all iterators. + Remove(idx int) + // Serialize converts this into an interface representation suitable for + // marshalling into a text or binary format. Applications should not + // need this function as most typical use cases serialize types + // instead of individual properties. It is exposed for alternatives to + // go-fed implementations to use. + Serialize() (interface{}, error) + // Set sets a boolean value to be at the specified index for the property + // "sensitive". Panics if the index is out of bounds. Invalidates all + // iterators. + Set(idx int, v bool) + // SetIRI sets an IRI value to be at the specified index for the property + // "sensitive". Panics if the index is out of bounds. + SetIRI(idx int, v *url.URL) + // Swap swaps the location of values at two indices for the "sensitive" + // property. + Swap(i, j int) +} diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_shares_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_shares_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_shares_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_shares_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_source_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_source_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_source_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_source_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_startIndex_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_startIndex_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_startIndex_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_startIndex_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_startTime_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_startTime_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_startTime_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_startTime_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_streams_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_streams_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_streams_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_streams_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_subject_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_subject_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_subject_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_subject_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_summary_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_summary_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_summary_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_summary_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_tag_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_tag_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_tag_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_tag_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_target_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_target_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_target_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_target_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_to_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_to_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_to_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_to_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_totalItems_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_totalItems_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_totalItems_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_totalItems_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_units_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_units_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_units_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_units_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_updated_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_updated_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_updated_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_updated_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_url_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_url_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_url_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_url_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_width_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_width_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_activitystreams_width_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_width_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_assignedTo_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_assignedTo_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_assignedTo_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_assignedTo_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_committedBy_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_committedBy_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_committedBy_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_committedBy_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_committed_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_committed_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_committed_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_committed_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_dependants_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_dependants_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_dependants_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_dependants_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_dependedBy_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_dependedBy_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_dependedBy_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_dependedBy_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_dependencies_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_dependencies_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_dependencies_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_dependencies_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_dependsOn_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_dependsOn_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_dependsOn_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_dependsOn_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_description_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_description_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_description_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_description_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_earlyItems_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_earlyItems_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_earlyItems_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_earlyItems_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_filesAdded_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_filesAdded_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_filesAdded_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_filesAdded_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_filesModified_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_filesModified_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_filesModified_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_filesModified_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_filesRemoved_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_filesRemoved_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_filesRemoved_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_filesRemoved_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_forks_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_forks_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_forks_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_forks_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_hash_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_hash_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_hash_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_hash_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_isResolved_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_isResolved_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_isResolved_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_isResolved_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_ref_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_ref_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_ref_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_ref_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_team_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_team_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_team_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_team_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_ticketsTrackedBy_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_ticketsTrackedBy_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_ticketsTrackedBy_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_ticketsTrackedBy_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_tracksTicketsFor_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_tracksTicketsFor_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_forgefed_tracksTicketsFor_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_forgefed_tracksTicketsFor_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_jsonld_id_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_jsonld_id_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_jsonld_id_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_jsonld_id_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_jsonld_type_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_jsonld_type_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_jsonld_type_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_jsonld_type_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_toot_blurhash_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_toot_blurhash_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_toot_blurhash_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_toot_blurhash_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_toot_discoverable_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_toot_discoverable_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_toot_discoverable_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_toot_discoverable_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_toot_featured_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_toot_featured_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_toot_featured_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_toot_featured_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_toot_signatureAlgorithm_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_toot_signatureAlgorithm_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_toot_signatureAlgorithm_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_toot_signatureAlgorithm_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_toot_signatureValue_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_toot_signatureValue_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_toot_signatureValue_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_toot_signatureValue_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_toot_votersCount_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_toot_votersCount_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_toot_votersCount_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_toot_votersCount_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_w3idsecurityv1_owner_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_w3idsecurityv1_owner_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_w3idsecurityv1_owner_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_w3idsecurityv1_owner_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_w3idsecurityv1_publicKeyPem_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_w3idsecurityv1_publicKeyPem_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_w3idsecurityv1_publicKeyPem_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_w3idsecurityv1_publicKeyPem_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_property_w3idsecurityv1_publicKey_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_w3idsecurityv1_publicKey_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_property_w3idsecurityv1_publicKey_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_w3idsecurityv1_publicKey_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_accept_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_accept_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_accept_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_accept_interface.go index bac356dab..405db9a46 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_accept_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_accept_interface.go @@ -123,6 +123,9 @@ type ActivityStreamsAccept interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -240,6 +243,8 @@ type ActivityStreamsAccept interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_activity_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_activity_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_activity_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_activity_interface.go index f148dbab3..8197fc44d 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_activity_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_activity_interface.go @@ -103,6 +103,9 @@ type ActivityStreamsActivity interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -221,6 +224,8 @@ type ActivityStreamsActivity interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_add_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_add_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_add_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_add_interface.go index 2f62d18ad..5715911e0 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_add_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_add_interface.go @@ -123,6 +123,9 @@ type ActivityStreamsAdd interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -240,6 +243,8 @@ type ActivityStreamsAdd interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_announce_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_announce_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_announce_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_announce_interface.go index 48d43123c..91076bc26 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_announce_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_announce_interface.go @@ -105,6 +105,9 @@ type ActivityStreamsAnnounce interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -223,6 +226,8 @@ type ActivityStreamsAnnounce interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_application_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_application_interface.go similarity index 98% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_application_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_application_interface.go index f1ff7e577..bcf2e023f 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_application_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_application_interface.go @@ -101,6 +101,9 @@ type ActivityStreamsApplication interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -236,6 +239,8 @@ type ActivityStreamsApplication interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_arrive_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_arrive_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_arrive_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_arrive_interface.go index 5eaeacb68..68a083379 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_arrive_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_arrive_interface.go @@ -102,6 +102,9 @@ type ActivityStreamsArrive interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -217,6 +220,8 @@ type ActivityStreamsArrive interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_article_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_article_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_article_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_article_interface.go index 984114d8d..f9ba9d4a7 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_article_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_article_interface.go @@ -82,6 +82,9 @@ type ActivityStreamsArticle interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -189,6 +192,8 @@ type ActivityStreamsArticle interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_audio_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_audio_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_audio_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_audio_interface.go index c840de2ba..52f7c7659 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_audio_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_audio_interface.go @@ -84,6 +84,9 @@ type ActivityStreamsAudio interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -193,6 +196,8 @@ type ActivityStreamsAudio interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_block_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_block_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_block_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_block_interface.go index a813f1e3c..6bcb92565 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_block_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_block_interface.go @@ -96,6 +96,9 @@ type ActivityStreamsBlock interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -213,6 +216,8 @@ type ActivityStreamsBlock interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_collection_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_collection_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_collection_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_collection_interface.go index 43526fc1e..103ae2d4a 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_collection_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_collection_interface.go @@ -104,6 +104,9 @@ type ActivityStreamsCollection interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -222,6 +225,8 @@ type ActivityStreamsCollection interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_collectionpage_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_collectionpage_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_collectionpage_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_collectionpage_interface.go index ab0ed38f0..4086327c0 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_collectionpage_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_collectionpage_interface.go @@ -114,6 +114,9 @@ type ActivityStreamsCollectionPage interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -238,6 +241,8 @@ type ActivityStreamsCollectionPage interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_create_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_create_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_create_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_create_interface.go index 2d2e67d60..fa8884795 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_create_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_create_interface.go @@ -100,6 +100,9 @@ type ActivityStreamsCreate interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -217,6 +220,8 @@ type ActivityStreamsCreate interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_delete_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_delete_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_delete_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_delete_interface.go index d987998b5..a69db57d5 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_delete_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_delete_interface.go @@ -101,6 +101,9 @@ type ActivityStreamsDelete interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -218,6 +221,8 @@ type ActivityStreamsDelete interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_dislike_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_dislike_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_dislike_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_dislike_interface.go index b7fb54ed8..3b3841668 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_dislike_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_dislike_interface.go @@ -93,6 +93,9 @@ type ActivityStreamsDislike interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -211,6 +214,8 @@ type ActivityStreamsDislike interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_document_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_document_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_document_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_document_interface.go index 46312ca80..5df1cb34c 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_document_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_document_interface.go @@ -80,6 +80,9 @@ type ActivityStreamsDocument interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -190,6 +193,8 @@ type ActivityStreamsDocument interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_event_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_event_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_event_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_event_interface.go index bc25aeee6..11a2e3649 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_event_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_event_interface.go @@ -81,6 +81,9 @@ type ActivityStreamsEvent interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -187,6 +190,8 @@ type ActivityStreamsEvent interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_flag_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_flag_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_flag_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_flag_interface.go index 0aa5d1a2c..bcb34036a 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_flag_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_flag_interface.go @@ -98,6 +98,9 @@ type ActivityStreamsFlag interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -215,6 +218,8 @@ type ActivityStreamsFlag interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_follow_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_follow_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_follow_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_follow_interface.go index fe7c5fd35..43c86d9ba 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_follow_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_follow_interface.go @@ -102,6 +102,9 @@ type ActivityStreamsFollow interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -219,6 +222,8 @@ type ActivityStreamsFollow interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_group_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_group_interface.go similarity index 98% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_group_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_group_interface.go index 570d62072..1d85c163e 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_group_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_group_interface.go @@ -101,6 +101,9 @@ type ActivityStreamsGroup interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -235,6 +238,8 @@ type ActivityStreamsGroup interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_ignore_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_ignore_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_ignore_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_ignore_interface.go index 33d93ef33..6631dc412 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_ignore_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_ignore_interface.go @@ -97,6 +97,9 @@ type ActivityStreamsIgnore interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -214,6 +217,8 @@ type ActivityStreamsIgnore interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_image_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_image_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_image_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_image_interface.go index b9151b8e6..935da88a7 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_image_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_image_interface.go @@ -94,6 +94,9 @@ type ActivityStreamsImage interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -208,6 +211,8 @@ type ActivityStreamsImage interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_intransitiveactivity_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_intransitiveactivity_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_intransitiveactivity_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_intransitiveactivity_interface.go index 8f42bb6bd..a1fd2faf9 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_intransitiveactivity_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_intransitiveactivity_interface.go @@ -98,6 +98,9 @@ type ActivityStreamsIntransitiveActivity interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -214,6 +217,8 @@ type ActivityStreamsIntransitiveActivity interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_invite_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_invite_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_invite_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_invite_interface.go index fd20885ea..06df99a6f 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_invite_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_invite_interface.go @@ -110,6 +110,9 @@ type ActivityStreamsInvite interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -227,6 +230,8 @@ type ActivityStreamsInvite interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_join_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_join_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_join_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_join_interface.go index d7135b935..db7cb5720 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_join_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_join_interface.go @@ -100,6 +100,9 @@ type ActivityStreamsJoin interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -217,6 +220,8 @@ type ActivityStreamsJoin interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_leave_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_leave_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_leave_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_leave_interface.go index 2226a3fdb..c2ff62819 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_leave_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_leave_interface.go @@ -114,6 +114,9 @@ type ActivityStreamsLeave interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -231,6 +234,8 @@ type ActivityStreamsLeave interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_like_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_like_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_like_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_like_interface.go index 87887a67b..3f2d6524e 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_like_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_like_interface.go @@ -97,6 +97,9 @@ type ActivityStreamsLike interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -214,6 +217,8 @@ type ActivityStreamsLike interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_link_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_link_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_link_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_link_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_listen_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_listen_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_listen_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_listen_interface.go index 1bdd0d9a2..e8764fa61 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_listen_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_listen_interface.go @@ -96,6 +96,9 @@ type ActivityStreamsListen interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -213,6 +216,8 @@ type ActivityStreamsListen interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_mention_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_mention_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_mention_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_mention_interface.go diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_move_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_move_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_move_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_move_interface.go index 43359f6fe..e483990c7 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_move_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_move_interface.go @@ -105,6 +105,9 @@ type ActivityStreamsMove interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -222,6 +225,8 @@ type ActivityStreamsMove interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_note_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_note_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_note_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_note_interface.go index 0cde2118f..03e67264f 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_note_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_note_interface.go @@ -81,6 +81,9 @@ type ActivityStreamsNote interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -187,6 +190,8 @@ type ActivityStreamsNote interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_object_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_object_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_object_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_object_interface.go index b6f3fef59..f413282af 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_object_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_object_interface.go @@ -83,6 +83,9 @@ type ActivityStreamsObject interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -189,6 +192,8 @@ type ActivityStreamsObject interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_offer_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_offer_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_offer_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_offer_interface.go index 6f4cc98eb..1b931b644 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_offer_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_offer_interface.go @@ -104,6 +104,9 @@ type ActivityStreamsOffer interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -221,6 +224,8 @@ type ActivityStreamsOffer interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_orderedcollection_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_orderedcollection_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_orderedcollection_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_orderedcollection_interface.go index 9bb278eca..8186b982c 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_orderedcollection_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_orderedcollection_interface.go @@ -103,6 +103,9 @@ type ActivityStreamsOrderedCollection interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -224,6 +227,8 @@ type ActivityStreamsOrderedCollection interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_orderedcollectionpage_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_orderedcollectionpage_interface.go similarity index 98% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_orderedcollectionpage_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_orderedcollectionpage_interface.go index 58f0cb361..b934f1fd6 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_orderedcollectionpage_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_orderedcollectionpage_interface.go @@ -114,6 +114,9 @@ type ActivityStreamsOrderedCollectionPage interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -244,6 +247,8 @@ type ActivityStreamsOrderedCollectionPage interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_organization_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_organization_interface.go similarity index 98% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_organization_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_organization_interface.go index 5bf86fcf5..808957874 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_organization_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_organization_interface.go @@ -101,6 +101,9 @@ type ActivityStreamsOrganization interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -236,6 +239,8 @@ type ActivityStreamsOrganization interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_page_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_page_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_page_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_page_interface.go index f449c0a87..2fde4ebe7 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_page_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_page_interface.go @@ -80,6 +80,9 @@ type ActivityStreamsPage interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -189,6 +192,8 @@ type ActivityStreamsPage interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_person_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_person_interface.go similarity index 98% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_person_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_person_interface.go index ca027e506..4661e93a3 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_person_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_person_interface.go @@ -101,6 +101,9 @@ type ActivityStreamsPerson interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -235,6 +238,8 @@ type ActivityStreamsPerson interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_place_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_place_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_place_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_place_interface.go index ac38a66e8..2706d9beb 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_place_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_place_interface.go @@ -102,6 +102,9 @@ type ActivityStreamsPlace interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -219,6 +222,8 @@ type ActivityStreamsPlace interface { SetActivityStreamsRadius(i ActivityStreamsRadiusProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_profile_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_profile_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_profile_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_profile_interface.go index 27e84dbff..b7a2271b8 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_profile_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_profile_interface.go @@ -88,6 +88,9 @@ type ActivityStreamsProfile interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -197,6 +200,8 @@ type ActivityStreamsProfile interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_question_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_question_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_question_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_question_interface.go index a551b2ae0..68d5f1eae 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_question_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_question_interface.go @@ -119,6 +119,9 @@ type ActivityStreamsQuestion interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -244,6 +247,8 @@ type ActivityStreamsQuestion interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_read_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_read_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_read_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_read_interface.go index 2a6806b60..e4e0a8d46 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_read_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_read_interface.go @@ -96,6 +96,9 @@ type ActivityStreamsRead interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -213,6 +216,8 @@ type ActivityStreamsRead interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_reject_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_reject_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_reject_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_reject_interface.go index aa15967cf..44c67c72c 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_reject_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_reject_interface.go @@ -104,6 +104,9 @@ type ActivityStreamsReject interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -221,6 +224,8 @@ type ActivityStreamsReject interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_relationship_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_relationship_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_relationship_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_relationship_interface.go index b0c161f1f..8948734ac 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_relationship_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_relationship_interface.go @@ -93,6 +93,9 @@ type ActivityStreamsRelationship interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -205,6 +208,8 @@ type ActivityStreamsRelationship interface { SetActivityStreamsRelationship(i ActivityStreamsRelationshipProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_remove_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_remove_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_remove_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_remove_interface.go index 5ef981adb..643fee97b 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_remove_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_remove_interface.go @@ -119,6 +119,9 @@ type ActivityStreamsRemove interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -236,6 +239,8 @@ type ActivityStreamsRemove interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_service_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_service_interface.go similarity index 98% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_service_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_service_interface.go index d62e421ad..e1b0a616b 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_service_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_service_interface.go @@ -101,6 +101,9 @@ type ActivityStreamsService interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -236,6 +239,8 @@ type ActivityStreamsService interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_tentativeaccept_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_tentativeaccept_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_tentativeaccept_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_tentativeaccept_interface.go index 6a2feb28e..5caeca9eb 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_tentativeaccept_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_tentativeaccept_interface.go @@ -103,6 +103,9 @@ type ActivityStreamsTentativeAccept interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -221,6 +224,8 @@ type ActivityStreamsTentativeAccept interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_tentativereject_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_tentativereject_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_tentativereject_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_tentativereject_interface.go index 4f845c9d0..31e13bd5f 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_tentativereject_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_tentativereject_interface.go @@ -103,6 +103,9 @@ type ActivityStreamsTentativeReject interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -221,6 +224,8 @@ type ActivityStreamsTentativeReject interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_tombstone_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_tombstone_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_tombstone_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_tombstone_interface.go index 60ef273e7..244f51fd2 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_tombstone_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_tombstone_interface.go @@ -104,6 +104,9 @@ type ActivityStreamsTombstone interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -215,6 +218,8 @@ type ActivityStreamsTombstone interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_travel_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_travel_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_travel_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_travel_interface.go index c0913a886..13e2b3148 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_travel_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_travel_interface.go @@ -102,6 +102,9 @@ type ActivityStreamsTravel interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -217,6 +220,8 @@ type ActivityStreamsTravel interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_undo_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_undo_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_undo_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_undo_interface.go index adc779522..8a18b68a8 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_undo_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_undo_interface.go @@ -102,6 +102,9 @@ type ActivityStreamsUndo interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -219,6 +222,8 @@ type ActivityStreamsUndo interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_update_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_update_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_update_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_update_interface.go index 1e8039587..606604fa9 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_update_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_update_interface.go @@ -99,6 +99,9 @@ type ActivityStreamsUpdate interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -216,6 +219,8 @@ type ActivityStreamsUpdate interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_video_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_video_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_video_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_video_interface.go index f34bc2bbe..227985670 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_video_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_video_interface.go @@ -81,6 +81,9 @@ type ActivityStreamsVideo interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -190,6 +193,8 @@ type ActivityStreamsVideo interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_view_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_view_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_view_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_view_interface.go index 01921858c..497829f4d 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_activitystreams_view_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_view_interface.go @@ -99,6 +99,9 @@ type ActivityStreamsView interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -216,6 +219,8 @@ type ActivityStreamsView interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_branch_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_branch_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_branch_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_branch_interface.go index b18151ebf..c75b0508c 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_branch_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_branch_interface.go @@ -87,6 +87,9 @@ type ForgeFedBranch interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -196,6 +199,8 @@ type ForgeFedBranch interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_commit_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_commit_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_commit_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_commit_interface.go index acfae3d07..95508e3a4 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_commit_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_commit_interface.go @@ -97,6 +97,9 @@ type ForgeFedCommit interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -224,6 +227,8 @@ type ForgeFedCommit interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_push_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_push_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_push_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_push_interface.go index 6f025aa71..e4e92002e 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_push_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_push_interface.go @@ -120,6 +120,9 @@ type ForgeFedPush interface { // GetActivityStreamsResult returns the "result" property if it exists, // and nil otherwise. GetActivityStreamsResult() ActivityStreamsResultProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -237,6 +240,8 @@ type ForgeFedPush interface { SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) // SetActivityStreamsResult sets the "result" property. SetActivityStreamsResult(i ActivityStreamsResultProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_repository_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_repository_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_repository_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_repository_interface.go index 00fc92ca5..f1f255efe 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_repository_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_repository_interface.go @@ -95,6 +95,9 @@ type ForgeFedRepository interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -205,6 +208,8 @@ type ForgeFedRepository interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_ticket_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_ticket_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_ticket_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_ticket_interface.go index 899f95f24..9b6a5406d 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_ticket_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_ticket_interface.go @@ -96,6 +96,9 @@ type ForgeFedTicket interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -220,6 +223,8 @@ type ForgeFedTicket interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_ticketdependency_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_ticketdependency_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_ticketdependency_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_ticketdependency_interface.go index 6d8621f47..eb6b16e00 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_forgefed_ticketdependency_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_forgefed_ticketdependency_interface.go @@ -97,6 +97,9 @@ type ForgeFedTicketDependency interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -209,6 +212,8 @@ type ForgeFedTicketDependency interface { SetActivityStreamsRelationship(i ActivityStreamsRelationshipProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_toot_emoji_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_toot_emoji_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_toot_emoji_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_toot_emoji_interface.go index 0bd6694dc..286e57a35 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_toot_emoji_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_toot_emoji_interface.go @@ -91,6 +91,9 @@ type TootEmoji interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -197,6 +200,8 @@ type TootEmoji interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_toot_identityproof_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_toot_identityproof_interface.go similarity index 97% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_toot_identityproof_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_toot_identityproof_interface.go index 32a925e3a..1c31cf5fe 100644 --- a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_toot_identityproof_interface.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_toot_identityproof_interface.go @@ -75,6 +75,9 @@ type TootIdentityProof interface { // GetActivityStreamsReplies returns the "replies" property if it exists, // and nil otherwise. GetActivityStreamsReplies() ActivityStreamsRepliesProperty + // GetActivityStreamsSensitive returns the "sensitive" property if it + // exists, and nil otherwise. + GetActivityStreamsSensitive() ActivityStreamsSensitiveProperty // GetActivityStreamsShares returns the "shares" property if it exists, // and nil otherwise. GetActivityStreamsShares() ActivityStreamsSharesProperty @@ -188,6 +191,8 @@ type TootIdentityProof interface { SetActivityStreamsPublished(i ActivityStreamsPublishedProperty) // SetActivityStreamsReplies sets the "replies" property. SetActivityStreamsReplies(i ActivityStreamsRepliesProperty) + // SetActivityStreamsSensitive sets the "sensitive" property. + SetActivityStreamsSensitive(i ActivityStreamsSensitiveProperty) // SetActivityStreamsShares sets the "shares" property. SetActivityStreamsShares(i ActivityStreamsSharesProperty) // SetActivityStreamsSource sets the "source" property. diff --git a/vendor/github.com/go-fed/activity/streams/vocab/gen_type_w3idsecurityv1_publickey_interface.go b/vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_w3idsecurityv1_publickey_interface.go similarity index 100% rename from vendor/github.com/go-fed/activity/streams/vocab/gen_type_w3idsecurityv1_publickey_interface.go rename to vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_w3idsecurityv1_publickey_interface.go diff --git a/vendor/modules.txt b/vendor/modules.txt index b80b97253..aa866cebb 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -93,187 +93,6 @@ github.com/gin-gonic/gin/render # github.com/go-errors/errors v1.4.0 ## explicit; go 1.14 github.com/go-errors/errors -# github.com/go-fed/activity v1.0.1-0.20210803212804-d866ba75dd0f -## explicit; go 1.12 -github.com/go-fed/activity/pub -github.com/go-fed/activity/streams -github.com/go-fed/activity/streams/impl/activitystreams/property_accuracy -github.com/go-fed/activity/streams/impl/activitystreams/property_actor -github.com/go-fed/activity/streams/impl/activitystreams/property_altitude -github.com/go-fed/activity/streams/impl/activitystreams/property_anyof -github.com/go-fed/activity/streams/impl/activitystreams/property_attachment -github.com/go-fed/activity/streams/impl/activitystreams/property_attributedto -github.com/go-fed/activity/streams/impl/activitystreams/property_audience -github.com/go-fed/activity/streams/impl/activitystreams/property_bcc -github.com/go-fed/activity/streams/impl/activitystreams/property_bto -github.com/go-fed/activity/streams/impl/activitystreams/property_cc -github.com/go-fed/activity/streams/impl/activitystreams/property_closed -github.com/go-fed/activity/streams/impl/activitystreams/property_content -github.com/go-fed/activity/streams/impl/activitystreams/property_context -github.com/go-fed/activity/streams/impl/activitystreams/property_current -github.com/go-fed/activity/streams/impl/activitystreams/property_deleted -github.com/go-fed/activity/streams/impl/activitystreams/property_describes -github.com/go-fed/activity/streams/impl/activitystreams/property_duration -github.com/go-fed/activity/streams/impl/activitystreams/property_endtime -github.com/go-fed/activity/streams/impl/activitystreams/property_first -github.com/go-fed/activity/streams/impl/activitystreams/property_followers -github.com/go-fed/activity/streams/impl/activitystreams/property_following -github.com/go-fed/activity/streams/impl/activitystreams/property_formertype -github.com/go-fed/activity/streams/impl/activitystreams/property_generator -github.com/go-fed/activity/streams/impl/activitystreams/property_height -github.com/go-fed/activity/streams/impl/activitystreams/property_href -github.com/go-fed/activity/streams/impl/activitystreams/property_hreflang -github.com/go-fed/activity/streams/impl/activitystreams/property_icon -github.com/go-fed/activity/streams/impl/activitystreams/property_image -github.com/go-fed/activity/streams/impl/activitystreams/property_inbox -github.com/go-fed/activity/streams/impl/activitystreams/property_inreplyto -github.com/go-fed/activity/streams/impl/activitystreams/property_instrument -github.com/go-fed/activity/streams/impl/activitystreams/property_items -github.com/go-fed/activity/streams/impl/activitystreams/property_last -github.com/go-fed/activity/streams/impl/activitystreams/property_latitude -github.com/go-fed/activity/streams/impl/activitystreams/property_liked -github.com/go-fed/activity/streams/impl/activitystreams/property_likes -github.com/go-fed/activity/streams/impl/activitystreams/property_location -github.com/go-fed/activity/streams/impl/activitystreams/property_longitude -github.com/go-fed/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers -github.com/go-fed/activity/streams/impl/activitystreams/property_mediatype -github.com/go-fed/activity/streams/impl/activitystreams/property_name -github.com/go-fed/activity/streams/impl/activitystreams/property_next -github.com/go-fed/activity/streams/impl/activitystreams/property_object -github.com/go-fed/activity/streams/impl/activitystreams/property_oneof -github.com/go-fed/activity/streams/impl/activitystreams/property_ordereditems -github.com/go-fed/activity/streams/impl/activitystreams/property_origin -github.com/go-fed/activity/streams/impl/activitystreams/property_outbox -github.com/go-fed/activity/streams/impl/activitystreams/property_partof -github.com/go-fed/activity/streams/impl/activitystreams/property_preferredusername -github.com/go-fed/activity/streams/impl/activitystreams/property_prev -github.com/go-fed/activity/streams/impl/activitystreams/property_preview -github.com/go-fed/activity/streams/impl/activitystreams/property_published -github.com/go-fed/activity/streams/impl/activitystreams/property_radius -github.com/go-fed/activity/streams/impl/activitystreams/property_rel -github.com/go-fed/activity/streams/impl/activitystreams/property_relationship -github.com/go-fed/activity/streams/impl/activitystreams/property_replies -github.com/go-fed/activity/streams/impl/activitystreams/property_result -github.com/go-fed/activity/streams/impl/activitystreams/property_shares -github.com/go-fed/activity/streams/impl/activitystreams/property_source -github.com/go-fed/activity/streams/impl/activitystreams/property_startindex -github.com/go-fed/activity/streams/impl/activitystreams/property_starttime -github.com/go-fed/activity/streams/impl/activitystreams/property_streams -github.com/go-fed/activity/streams/impl/activitystreams/property_subject -github.com/go-fed/activity/streams/impl/activitystreams/property_summary -github.com/go-fed/activity/streams/impl/activitystreams/property_tag -github.com/go-fed/activity/streams/impl/activitystreams/property_target -github.com/go-fed/activity/streams/impl/activitystreams/property_to -github.com/go-fed/activity/streams/impl/activitystreams/property_totalitems -github.com/go-fed/activity/streams/impl/activitystreams/property_units -github.com/go-fed/activity/streams/impl/activitystreams/property_updated -github.com/go-fed/activity/streams/impl/activitystreams/property_url -github.com/go-fed/activity/streams/impl/activitystreams/property_width -github.com/go-fed/activity/streams/impl/activitystreams/type_accept -github.com/go-fed/activity/streams/impl/activitystreams/type_activity -github.com/go-fed/activity/streams/impl/activitystreams/type_add -github.com/go-fed/activity/streams/impl/activitystreams/type_announce -github.com/go-fed/activity/streams/impl/activitystreams/type_application -github.com/go-fed/activity/streams/impl/activitystreams/type_arrive -github.com/go-fed/activity/streams/impl/activitystreams/type_article -github.com/go-fed/activity/streams/impl/activitystreams/type_audio -github.com/go-fed/activity/streams/impl/activitystreams/type_block -github.com/go-fed/activity/streams/impl/activitystreams/type_collection -github.com/go-fed/activity/streams/impl/activitystreams/type_collectionpage -github.com/go-fed/activity/streams/impl/activitystreams/type_create -github.com/go-fed/activity/streams/impl/activitystreams/type_delete -github.com/go-fed/activity/streams/impl/activitystreams/type_dislike -github.com/go-fed/activity/streams/impl/activitystreams/type_document -github.com/go-fed/activity/streams/impl/activitystreams/type_event -github.com/go-fed/activity/streams/impl/activitystreams/type_flag -github.com/go-fed/activity/streams/impl/activitystreams/type_follow -github.com/go-fed/activity/streams/impl/activitystreams/type_group -github.com/go-fed/activity/streams/impl/activitystreams/type_ignore -github.com/go-fed/activity/streams/impl/activitystreams/type_image -github.com/go-fed/activity/streams/impl/activitystreams/type_intransitiveactivity -github.com/go-fed/activity/streams/impl/activitystreams/type_invite -github.com/go-fed/activity/streams/impl/activitystreams/type_join -github.com/go-fed/activity/streams/impl/activitystreams/type_leave -github.com/go-fed/activity/streams/impl/activitystreams/type_like -github.com/go-fed/activity/streams/impl/activitystreams/type_link -github.com/go-fed/activity/streams/impl/activitystreams/type_listen -github.com/go-fed/activity/streams/impl/activitystreams/type_mention -github.com/go-fed/activity/streams/impl/activitystreams/type_move -github.com/go-fed/activity/streams/impl/activitystreams/type_note -github.com/go-fed/activity/streams/impl/activitystreams/type_object -github.com/go-fed/activity/streams/impl/activitystreams/type_offer -github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollection -github.com/go-fed/activity/streams/impl/activitystreams/type_orderedcollectionpage -github.com/go-fed/activity/streams/impl/activitystreams/type_organization -github.com/go-fed/activity/streams/impl/activitystreams/type_page -github.com/go-fed/activity/streams/impl/activitystreams/type_person -github.com/go-fed/activity/streams/impl/activitystreams/type_place -github.com/go-fed/activity/streams/impl/activitystreams/type_profile -github.com/go-fed/activity/streams/impl/activitystreams/type_question -github.com/go-fed/activity/streams/impl/activitystreams/type_read -github.com/go-fed/activity/streams/impl/activitystreams/type_reject -github.com/go-fed/activity/streams/impl/activitystreams/type_relationship -github.com/go-fed/activity/streams/impl/activitystreams/type_remove -github.com/go-fed/activity/streams/impl/activitystreams/type_service -github.com/go-fed/activity/streams/impl/activitystreams/type_tentativeaccept -github.com/go-fed/activity/streams/impl/activitystreams/type_tentativereject -github.com/go-fed/activity/streams/impl/activitystreams/type_tombstone -github.com/go-fed/activity/streams/impl/activitystreams/type_travel -github.com/go-fed/activity/streams/impl/activitystreams/type_undo -github.com/go-fed/activity/streams/impl/activitystreams/type_update -github.com/go-fed/activity/streams/impl/activitystreams/type_video -github.com/go-fed/activity/streams/impl/activitystreams/type_view -github.com/go-fed/activity/streams/impl/forgefed/property_assignedto -github.com/go-fed/activity/streams/impl/forgefed/property_committed -github.com/go-fed/activity/streams/impl/forgefed/property_committedby -github.com/go-fed/activity/streams/impl/forgefed/property_dependants -github.com/go-fed/activity/streams/impl/forgefed/property_dependedby -github.com/go-fed/activity/streams/impl/forgefed/property_dependencies -github.com/go-fed/activity/streams/impl/forgefed/property_dependson -github.com/go-fed/activity/streams/impl/forgefed/property_description -github.com/go-fed/activity/streams/impl/forgefed/property_earlyitems -github.com/go-fed/activity/streams/impl/forgefed/property_filesadded -github.com/go-fed/activity/streams/impl/forgefed/property_filesmodified -github.com/go-fed/activity/streams/impl/forgefed/property_filesremoved -github.com/go-fed/activity/streams/impl/forgefed/property_forks -github.com/go-fed/activity/streams/impl/forgefed/property_hash -github.com/go-fed/activity/streams/impl/forgefed/property_isresolved -github.com/go-fed/activity/streams/impl/forgefed/property_ref -github.com/go-fed/activity/streams/impl/forgefed/property_team -github.com/go-fed/activity/streams/impl/forgefed/property_ticketstrackedby -github.com/go-fed/activity/streams/impl/forgefed/property_tracksticketsfor -github.com/go-fed/activity/streams/impl/forgefed/type_branch -github.com/go-fed/activity/streams/impl/forgefed/type_commit -github.com/go-fed/activity/streams/impl/forgefed/type_push -github.com/go-fed/activity/streams/impl/forgefed/type_repository -github.com/go-fed/activity/streams/impl/forgefed/type_ticket -github.com/go-fed/activity/streams/impl/forgefed/type_ticketdependency -github.com/go-fed/activity/streams/impl/jsonld/property_id -github.com/go-fed/activity/streams/impl/jsonld/property_type -github.com/go-fed/activity/streams/impl/toot/property_blurhash -github.com/go-fed/activity/streams/impl/toot/property_discoverable -github.com/go-fed/activity/streams/impl/toot/property_featured -github.com/go-fed/activity/streams/impl/toot/property_signaturealgorithm -github.com/go-fed/activity/streams/impl/toot/property_signaturevalue -github.com/go-fed/activity/streams/impl/toot/property_voterscount -github.com/go-fed/activity/streams/impl/toot/type_emoji -github.com/go-fed/activity/streams/impl/toot/type_identityproof -github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_owner -github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickey -github.com/go-fed/activity/streams/impl/w3idsecurityv1/property_publickeypem -github.com/go-fed/activity/streams/impl/w3idsecurityv1/type_publickey -github.com/go-fed/activity/streams/values/anyURI -github.com/go-fed/activity/streams/values/bcp47 -github.com/go-fed/activity/streams/values/boolean -github.com/go-fed/activity/streams/values/dateTime -github.com/go-fed/activity/streams/values/duration -github.com/go-fed/activity/streams/values/float -github.com/go-fed/activity/streams/values/langString -github.com/go-fed/activity/streams/values/nonNegativeInteger -github.com/go-fed/activity/streams/values/rfc2045 -github.com/go-fed/activity/streams/values/rfc5988 -github.com/go-fed/activity/streams/values/string -github.com/go-fed/activity/streams/vocab # github.com/go-fed/httpsig v1.1.0 ## explicit; go 1.13 github.com/go-fed/httpsig @@ -423,6 +242,188 @@ github.com/sirupsen/logrus github.com/stretchr/testify/assert github.com/stretchr/testify/require github.com/stretchr/testify/suite +# github.com/superseriousbusiness/activity v1.0.1-0.20211113133524-56560b73ace8 +## explicit; go 1.12 +github.com/superseriousbusiness/activity/pub +github.com/superseriousbusiness/activity/streams +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_accuracy +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_altitude +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attributedto +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_audience +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bcc +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_bto +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_cc +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_closed +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_content +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_context +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_current +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_following +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_formertype +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_generator +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_height +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_href +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_hreflang +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_icon +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_image +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inbox +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_inreplyto +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_instrument +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_items +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_last +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_latitude +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_liked +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_likes +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_location +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_longitude +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_mediatype +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_name +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_oneof +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_ordereditems +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_origin +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_outbox +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_partof +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preferredusername +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_prev +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_preview +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_published +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_radius +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_rel +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_relationship +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_starttime +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_streams +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_subject +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_summary +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_tag +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_target +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_to +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_totalitems +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_units +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_updated +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_url +github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_width +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_accept +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_activity +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_add +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_announce +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_application +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_arrive +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_article +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_audio +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_block +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collection +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_collectionpage +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_create +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_group +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_ignore +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_image +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_intransitiveactivity +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_invite +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_join +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_leave +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_like +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_link +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_listen +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_mention +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_move +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_note +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_object +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_offer +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollection +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_orderedcollectionpage +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_organization +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_page +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_person +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_place +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_profile +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_question +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_read +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_reject +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_relationship +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_remove +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_service +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativeaccept +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tentativereject +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_tombstone +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_travel +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_undo +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_update +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_video +github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_view +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_assignedto +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committed +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_committedby +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependants +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependedby +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependencies +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_dependson +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_description +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_earlyitems +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesadded +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesmodified +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_filesremoved +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_forks +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_hash +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_isresolved +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ref +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_team +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_ticketstrackedby +github.com/superseriousbusiness/activity/streams/impl/forgefed/property_tracksticketsfor +github.com/superseriousbusiness/activity/streams/impl/forgefed/type_branch +github.com/superseriousbusiness/activity/streams/impl/forgefed/type_commit +github.com/superseriousbusiness/activity/streams/impl/forgefed/type_push +github.com/superseriousbusiness/activity/streams/impl/forgefed/type_repository +github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticket +github.com/superseriousbusiness/activity/streams/impl/forgefed/type_ticketdependency +github.com/superseriousbusiness/activity/streams/impl/jsonld/property_id +github.com/superseriousbusiness/activity/streams/impl/jsonld/property_type +github.com/superseriousbusiness/activity/streams/impl/toot/property_blurhash +github.com/superseriousbusiness/activity/streams/impl/toot/property_discoverable +github.com/superseriousbusiness/activity/streams/impl/toot/property_featured +github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturealgorithm +github.com/superseriousbusiness/activity/streams/impl/toot/property_signaturevalue +github.com/superseriousbusiness/activity/streams/impl/toot/property_voterscount +github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji +github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof +github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_owner +github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickey +github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/property_publickeypem +github.com/superseriousbusiness/activity/streams/impl/w3idsecurityv1/type_publickey +github.com/superseriousbusiness/activity/streams/values/anyURI +github.com/superseriousbusiness/activity/streams/values/bcp47 +github.com/superseriousbusiness/activity/streams/values/boolean +github.com/superseriousbusiness/activity/streams/values/dateTime +github.com/superseriousbusiness/activity/streams/values/duration +github.com/superseriousbusiness/activity/streams/values/float +github.com/superseriousbusiness/activity/streams/values/langString +github.com/superseriousbusiness/activity/streams/values/nonNegativeInteger +github.com/superseriousbusiness/activity/streams/values/rfc2045 +github.com/superseriousbusiness/activity/streams/values/rfc5988 +github.com/superseriousbusiness/activity/streams/values/string +github.com/superseriousbusiness/activity/streams/vocab # github.com/superseriousbusiness/exifremove v0.0.0-20210330092427-6acd27eac203 ## explicit; go 1.16 github.com/superseriousbusiness/exifremove/pkg/exifremove