Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Genesys Backend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
45
Issues
45
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Genesys PGR
Genesys Backend
Commits
1e592c59
Commit
1e592c59
authored
Mar 05, 2014
by
Matija Obreza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added /robots.txt controller
parent
54cd8a2f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
3 deletions
+61
-3
src/main/java/org/genesys2/server/servlet/controller/RobotsTxtController.java
...nesys2/server/servlet/controller/RobotsTxtController.java
+58
-0
src/main/resources/spring/spring.properties
src/main/resources/spring/spring.properties
+3
-1
src/main/webapp/robots.txt
src/main/webapp/robots.txt
+0
-2
No files found.
src/main/java/org/genesys2/server/servlet/controller/RobotsTxtController.java
0 → 100644
View file @
1e592c59
/**
* Copyright 2014 Global Crop Diversity Trust
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
package
org.genesys2.server.servlet.controller
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
org.apache.commons.lang.StringUtils
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMethod
;
import
org.springframework.web.bind.annotation.ResponseBody
;
/**
*
* @author Matija Obreza, matija.obreza@croptrust.org
*/
@Controller
@RequestMapping
(
"/robots.txt"
)
public
class
RobotsTxtController
{
@Value
(
"${base.host}"
)
private
String
host
=
"localhost"
;
private
static
final
String
ROBOTS_ALLOW_ALL
=
"User-Agent: *\nAllow: /"
;
private
static
final
String
ROBOTS_DENY_ALL
=
"User-Agent: *\nDisallow: /"
;
@RequestMapping
(
method
=
RequestMethod
.
GET
)
public
@ResponseBody
String
robotsTxt
(
HttpServletResponse
response
,
HttpServletRequest
request
)
{
response
.
setContentType
(
"text/plain"
);
String
reqHost
=
request
.
getHeader
(
"Host"
);
if
(
StringUtils
.
isNotBlank
(
reqHost
)
&&
StringUtils
.
contains
(
reqHost
,
":"
))
{
reqHost
=
reqHost
.
substring
(
0
,
reqHost
.
indexOf
(
":"
));
}
if
(
StringUtils
.
equalsIgnoreCase
(
this
.
host
,
reqHost
))
{
return
ROBOTS_ALLOW_ALL
;
}
else
{
return
ROBOTS_DENY_ALL
;
}
}
}
src/main/resources/spring/spring.properties
View file @
1e592c59
...
...
@@ -14,7 +14,9 @@
# limitations under the License.
#-------------------------------------------------------------------------------
base.url
=
http://localhost:8080
base.host
=
localhost
base.hostname
=
${base.host}:8080
base.url
=
http://${base.hostname}
base.cookie-domain
=
base.cookie-secure
=
false
base.cookie-http-only
=
false
...
...
src/main/webapp/robots.txt
deleted
100644 → 0
View file @
54cd8a2f
User-Agent: *
Allow: /
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment