Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100761022
PhabricatorContentSource.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Feb 2, 13:00
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Feb 4, 13:00 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24026318
Attached To
rPH Phabricator
PhabricatorContentSource.php
View Options
<?php
final
class
PhabricatorContentSource
{
const
SOURCE_UNKNOWN
=
'unknown'
;
const
SOURCE_WEB
=
'web'
;
const
SOURCE_EMAIL
=
'email'
;
const
SOURCE_CONDUIT
=
'conduit'
;
const
SOURCE_MOBILE
=
'mobile'
;
const
SOURCE_TABLET
=
'tablet'
;
const
SOURCE_FAX
=
'fax'
;
const
SOURCE_CONSOLE
=
'console'
;
const
SOURCE_HERALD
=
'herald'
;
const
SOURCE_LEGACY
=
'legacy'
;
const
SOURCE_DAEMON
=
'daemon'
;
const
SOURCE_LIPSUM
=
'lipsum'
;
const
SOURCE_PHORTUNE
=
'phortune'
;
private
$source
;
private
$params
=
array
();
private
function
__construct
()
{
// <empty>
}
public
static
function
newForSource
(
$source
,
array
$params
)
{
$obj
=
new
PhabricatorContentSource
();
$obj
->
source
=
$source
;
$obj
->
params
=
$params
;
return
$obj
;
}
public
static
function
newFromSerialized
(
$serialized
)
{
$dict
=
json_decode
(
$serialized
,
true
);
if
(!
is_array
(
$dict
))
{
$dict
=
array
();
}
$obj
=
new
PhabricatorContentSource
();
$obj
->
source
=
idx
(
$dict
,
'source'
,
self
::
SOURCE_UNKNOWN
);
$obj
->
params
=
idx
(
$dict
,
'params'
,
array
());
return
$obj
;
}
public
static
function
newConsoleSource
()
{
return
self
::
newForSource
(
self
::
SOURCE_CONSOLE
,
array
());
}
public
static
function
newFromRequest
(
AphrontRequest
$request
)
{
return
self
::
newForSource
(
self
::
SOURCE_WEB
,
array
(
'ip'
=>
$request
->
getRemoteAddr
(),
));
}
public
static
function
newFromConduitRequest
(
ConduitAPIRequest
$request
)
{
return
self
::
newForSource
(
self
::
SOURCE_CONDUIT
,
array
());
}
public
static
function
getSourceNameMap
()
{
return
array
(
self
::
SOURCE_WEB
=>
pht
(
'Web'
),
self
::
SOURCE_EMAIL
=>
pht
(
'Email'
),
self
::
SOURCE_CONDUIT
=>
pht
(
'Conduit'
),
self
::
SOURCE_MOBILE
=>
pht
(
'Mobile'
),
self
::
SOURCE_TABLET
=>
pht
(
'Tablet'
),
self
::
SOURCE_FAX
=>
pht
(
'Fax'
),
self
::
SOURCE_CONSOLE
=>
pht
(
'Console'
),
self
::
SOURCE_LEGACY
=>
pht
(
'Legacy'
),
self
::
SOURCE_HERALD
=>
pht
(
'Herald'
),
self
::
SOURCE_DAEMON
=>
pht
(
'Daemons'
),
self
::
SOURCE_LIPSUM
=>
pht
(
'Lipsum'
),
self
::
SOURCE_UNKNOWN
=>
pht
(
'Old World'
),
self
::
SOURCE_PHORTUNE
=>
pht
(
'Phortune'
),
);
}
public
function
serialize
()
{
return
json_encode
(
array
(
'source'
=>
$this
->
getSource
(),
'params'
=>
$this
->
getParams
(),
));
}
public
function
getSource
()
{
return
$this
->
source
;
}
public
function
getParams
()
{
return
$this
->
params
;
}
public
function
getParam
(
$key
,
$default
=
null
)
{
return
idx
(
$this
->
params
,
$key
,
$default
);
}
}
Event Timeline
Log In to Comment