Reorganize Protocol constants
- Add ActivityPub protocol constant - Add Protocol::NATIVE_SUPPORT - Sort/group constant names
This commit is contained in:
parent
55c676d8b0
commit
804cfa0320
1 changed files with 24 additions and 18 deletions
|
@ -13,27 +13,33 @@ use Friendica\Util\Network;
|
||||||
*/
|
*/
|
||||||
class Protocol
|
class Protocol
|
||||||
{
|
{
|
||||||
const DFRN = 'dfrn'; // Friendica, Mistpark, other DFRN implementations
|
// Native support
|
||||||
const DIASPORA = 'dspr'; // Diaspora
|
const ACTIVITYPUB = 'apub'; // ActivityPub
|
||||||
const DIASPORA2 = 'dspc'; // Diaspora connector
|
const DFRN = 'dfrn'; // Friendica, Mistpark, other DFRN implementations
|
||||||
const STATUSNET = 'stac'; // Statusnet connector
|
const DIASPORA = 'dspr'; // Diaspora
|
||||||
const OSTATUS = 'stat'; // GNU-social, Pleroma, Mastodon, other OStatus implementations
|
const FEED = 'feed'; // RSS/Atom feeds with no known "post/notify" protocol
|
||||||
const FEED = 'feed'; // RSS/Atom feeds with no known "post/notify" protocol
|
const MAIL = 'mail'; // IMAP/POP
|
||||||
const MAIL = 'mail'; // IMAP/POP
|
const OSTATUS = 'stat'; // GNU-social, Pleroma, Mastodon, other OStatus implementations
|
||||||
const XMPP = 'xmpp'; // XMPP - Currently unsupported
|
|
||||||
|
|
||||||
const FACEBOOK = 'face'; // Facebook API
|
const NATIVE_SUPPORT = [self::DFRN, self::DIASPORA, self::OSTATUS, self::FEED, self::MAIL, self::ACTIVITYPUB];
|
||||||
const LINKEDIN = 'lnkd'; // LinkedIn
|
|
||||||
const MYSPACE = 'mysp'; // MySpace - Currently unsupported
|
// Supported through a connector
|
||||||
const GPLUS = 'goog'; // Google+
|
|
||||||
const PUMPIO = 'pump'; // pump.io
|
|
||||||
const TWITTER = 'twit'; // Twitter
|
|
||||||
const APPNET = 'apdn'; // app.net - Dead protocol
|
const APPNET = 'apdn'; // app.net - Dead protocol
|
||||||
|
const DIASPORA2 = 'dspc'; // Diaspora connector
|
||||||
|
const FACEBOOK = 'face'; // Facebook API
|
||||||
|
const GPLUS = 'goog'; // Google+
|
||||||
|
const LINKEDIN = 'lnkd'; // LinkedIn
|
||||||
|
const PUMPIO = 'pump'; // pump.io
|
||||||
|
const STATUSNET = 'stac'; // Statusnet connector
|
||||||
|
const TWITTER = 'twit'; // Twitter
|
||||||
|
|
||||||
const NEWS = 'nntp'; // Network News Transfer Protocol - Currently unsupported
|
// Currently unsupported
|
||||||
const ICALENDAR = 'ical'; // iCalendar - Currently unsupported
|
const ICALENDAR = 'ical'; // iCalendar
|
||||||
const PNUT = 'pnut'; // pnut.io - Currently unsupported
|
const MYSPACE = 'mysp'; // MySpace
|
||||||
const ZOT = 'zot!'; // Zot! - Currently unsupported
|
const NEWS = 'nntp'; // Network News Transfer Protocol
|
||||||
|
const PNUT = 'pnut'; // pnut.io
|
||||||
|
const XMPP = 'xmpp'; // XMPP
|
||||||
|
const ZOT = 'zot!'; // Zot!
|
||||||
|
|
||||||
const PHANTOM = 'unkn'; // Place holder
|
const PHANTOM = 'unkn'; // Place holder
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue