Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
marcus-lodspeakr
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
uib-ub
Spesialsamlingene
marcus-lodspeakr
Commits
12a7b4b2
Commit
12a7b4b2
authored
12 years ago
by
alvaro
Browse files
Options
Downloads
Patches
Plain Diff
New feature: add 404 (or other status) custom page.
Page will be processed by Haanga
parent
1e0a2a93
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
classes/HTTPStatus.php
+26
-40
26 additions, 40 deletions
classes/HTTPStatus.php
classes/Utils.php
+9
-9
9 additions, 9 deletions
classes/Utils.php
with
35 additions
and
49 deletions
classes/HTTPStatus.php
+
26
−
40
View file @
12a7b4b2
...
...
@@ -3,71 +3,57 @@
class
HTTPStatus
{
public
static
function
send303
(
$uri
,
$ext
){
global
$conf
;
$file
=
$conf
[
'home'
]
.
$conf
[
'httpStatus'
][
'directory'
]
.
"/303.template"
;
if
(
file_exists
(
$file
)){
$content
=
file_get_contents
(
$file
);
}
else
{
$content
=
$uri
.
"
\n\n
"
;
}
header
(
"HTTP/1.0 303 See Other"
);
header
(
"Location: "
.
$uri
);
header
(
"Content-type: "
.
$ext
);
echo
$content
;
echo
HTTPStatus
::
_getContent
(
"303"
,
$uri
)
;
exit
(
0
);
}
public
static
function
send401
(
$uri
){
global
$conf
;
$file
=
$conf
[
'home'
]
.
$conf
[
'httpStatus'
][
'directory'
]
.
"/401.template"
;
if
(
file_exists
(
$file
)){
$content
=
file_get_contents
(
$file
);
}
else
{
$content
=
$uri
.
"
\n\n
"
;
}
header
(
"HTTP/1.0 401 Forbidden"
);
echo
$content
;
echo
HTTPStatus
::
_getContent
(
"401"
,
$uri
)
;
exit
(
0
);
}
public
static
function
send404
(
$uri
){
global
$conf
;
$file
=
$conf
[
'home'
]
.
$conf
[
'httpStatus'
][
'directory'
]
.
"/404.template"
;
if
(
file_exists
(
$file
)){
$content
=
file_get_contents
(
$file
);
}
else
{
$content
=
"LODSPeaKr could not find "
.
$uri
.
" or information about it.
\n
No URIs in the triple store, or services configured with that URI
\n
"
;
}
header
(
"HTTP/1.0 404 Not Found"
);
echo
$content
;
$alt
=
"LODSPeaKr couldn't find the resource "
.
$uri
;
echo
HTTPStatus
::
_getContent
(
"404"
,
$alt
);
exit
(
0
);
}
public
static
function
send406
(
$uri
){
global
$conf
;
$file
=
$conf
[
'home'
]
.
$conf
[
'httpStatus'
][
'directory'
]
.
"/406.template"
;
if
(
file_exists
(
$file
)){
$content
=
file_get_contents
(
$file
);
}
else
{
$content
=
"LODSPeaKr can't find a representation suitable for the content type you accept for
$uri
\n\n
"
;
}
header
(
"HTTP/1.0 406 Not Acceptable"
);
echo
$content
;
$alt
=
"LODSPeaKr can't return content acceptable according to the Accept headers sent in the request for "
.
$uri
;
echo
HTTPStatus
::
_getContent
(
"406"
,
$alt
);
exit
(
0
);
}
public
static
function
send500
(
$uri
){
global
$conf
;
$file
=
$conf
[
'home'
]
.
$conf
[
'httpStatus'
][
'directory'
]
.
"/406.template"
;
if
(
file_exists
(
$file
)){
$content
=
file_get_contents
(
$file
);
}
else
{
$content
=
"An internal error ocurred. Please try later
\n\n
"
;
}
header
(
"HTTP/1.0 500 Internal Server Error"
);
echo
$content
;
$alt
=
"There was an internal error when processing "
.
$uri
;
echo
HTTPStatus
::
_getContent
(
"500"
,
$alt
);
exit
(
0
);
}
private
static
function
_getContent
(
$n
,
$alt
){
global
$conf
;
global
$lodspk
;
$lodspk
[
'root'
]
=
$conf
[
'root'
];
$lodspk
[
'this'
][
'value'
]
=
$uri
;
$lodspk
[
'this'
][
'curie'
]
=
Utils
::
uri2curie
(
$uri
);
$lodspk
[
'this'
][
'local'
]
=
$localUri
;
$file
=
$conf
[
'httpStatus'
][
'directory'
]
.
"/"
.
$n
.
".template"
;
if
(
file_exists
(
$conf
[
'home'
]
.
$file
)){
require_once
(
"Utils.php"
);
Utils
::
showView
(
$lodspk
,
new
stdClass
(),
$file
);
}
else
{
return
$alt
.
"
\n\n
"
;
}
}
}
?>
This diff is collapsed.
Click to expand it.
classes/Utils.php
+
9
−
9
View file @
12a7b4b2
...
...
@@ -544,15 +544,15 @@ class Utils{
if
(
is_string
(
$data
)){
echo
(
$data
);
}
elseif
(
is_file
(
$conf
[
'home'
]
.
$view
)){
try
{
Haanga
::
Load
(
$viewFile
,
$vars
);
}
catch
(
Exception
$e
){
echo
'<pre>'
;
echo
$e
->
getMessage
();
var_dump
(
$vars
);
echo
(
$e
->
getMessage
()
.
"' in "
.
$e
->
getFile
()
.
":"
.
$e
->
getLine
()
.
"
\n
Stack trace:
\n
"
.
$e
->
getTraceAsString
());
echo
'</pre>'
;
}
try
{
Haanga
::
Load
(
$viewFile
,
$vars
);
}
catch
(
Exception
$e
){
echo
'<pre>'
;
echo
$e
->
getMessage
();
var_dump
(
$vars
);
echo
(
$e
->
getMessage
()
.
"' in "
.
$e
->
getFile
()
.
":"
.
$e
->
getLine
()
.
"
\n
Stack trace:
\n
"
.
$e
->
getTraceAsString
());
echo
'</pre>'
;
}
}
elseif
(
$view
==
null
){
$fnc
=
Haanga
::
compile
(
'{{models|safe}}'
);
$fnc
(
$vars
,
TRUE
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment