Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F12742471
DockerHubGateController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
DockerHubGateController.php
View Options
<?php
namespace
Nasqueron\Notifications\Http\Controllers\Gate
;
use
Nasqueron\Notifications\Events\DockerHubPayloadEvent
;
use
Symfony\Component\HttpFoundation\Response
;
use
Event
;
use
Request
;
class
DockerHubGateController
extends
GateController
{
///
/// Private members
///
/**
* The request content, as a structured data
*
* @var \stdClass
*/
private
$payload
;
/**
* The request content
*
* @var string
*/
private
$rawRequestContent
;
///
/// Constants
///
/**
* The name of the service this gate accepts payload from.
*/
const
SERVICE_NAME
=
'DockerHub'
;
///
/// Request processing
///
/**
* Handles POST requests
*
* @param string $door The door, matching the project for this payload
* @return \Symfony\Component\HttpFoundation\Response
*/
public
function
onPost
(
string
$door
)
:
Response
{
// Parses the request and check if it's legit
$this
->
door
=
$door
;
$this
->
extractPayload
();
// Process the request
$this
->
logRequest
();
$this
->
onPayload
();
// Output
return
parent
::
renderReport
();
}
/**
* Extracts payload from the request
*/
protected
function
extractPayload
()
:
void
{
$request
=
Request
::
instance
();
$this
->
rawRequestContent
=
$request
->
getContent
();
$this
->
payload
=
json_decode
(
$this
->
rawRequestContent
);
}
///
/// Payload processing
///
protected
function
onPayload
()
:
void
{
$this
->
initializeReport
();
Event
::
fire
(
new
DockerHubPayloadEvent
(
$this
->
door
,
$this
->
payload
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Nov 16, 13:46 (14 h, 1 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3144661
Default Alt Text
DockerHubGateController.php (1 KB)
Attached To
Mode
rNOTIF Notifications center
Attached
Detach File
Event Timeline
Log In to Comment