Default to raw response for curl

This commit is contained in:
Les De Ridder 2017-02-10 14:53:58 +01:00
parent 7e49b37fb8
commit 06a85be7da
No known key found for this signature in database
GPG Key ID: 5EC132DFA85DB372
1 changed files with 11 additions and 2 deletions

View File

@ -50,7 +50,16 @@ class PasteController extends Controller
public function view(Request $request, Paste $paste)
{
$format = $request->input('format', 'html'); //TODO: Use HTTP content negotiation for the default format
//TODO: Use HTTP content negotiation for the default format
$userAgent = $request->header('User-Agent');
if(substr($userAgent, 0, 4) == 'curl')
{
$format = $request->input('format', 'raw'); //default to raw format for curl
}
else
{
$format = $request->input('format', 'html'); //default to html format for other user agents
}
switch($format)
{
@ -59,7 +68,7 @@ class PasteController extends Controller
case 'raw':
return $this->view_raw($paste);
case 'json':
return $this->view_json($paste);
return $this->view_json($paste);
case 'latex':
return $this->view_latex($paste);
case 'png':