Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F10813554
JenkinsGateController.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
JenkinsGateController.php
View Options
<?php
namespace
Nasqueron\Notifications\Http\Controllers\Gate
;
use
Event
;
use
Request
;
use
Nasqueron\Notifications\Events\JenkinsPayloadEvent
;
class
JenkinsGateController
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
=
'Jenkins'
;
///
/// Request processing
///
/**
* Handles POST requests
*
* @param Request $request the HTTP request
* @return Illuminate\Http\Response
*/
public
function
onPost
(
$door
)
{
// 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
()
{
$request
=
Request
::
instance
();
$this
->
rawRequestContent
=
$request
->
getContent
();
$this
->
payload
=
json_decode
(
$this
->
rawRequestContent
);
}
///
/// Payload processing
///
protected
function
onPayload
()
{
$this
->
initializeReport
();
Event
::
fire
(
new
JenkinsPayloadEvent
(
$this
->
door
,
$this
->
payload
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jul 29, 13:55 (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2840298
Default Alt Text
JenkinsGateController.php (1 KB)
Attached To
Mode
rNOTIF Notifications center
Attached
Detach File
Event Timeline
Log In to Comment