com.liferay.portal.action.RobotsAction Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.portal.action;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import com.liferay.portal.kernel.model.Company;
import com.liferay.portal.kernel.model.Group;
import com.liferay.portal.kernel.model.LayoutSet;
import com.liferay.portal.kernel.model.VirtualHost;
import com.liferay.portal.kernel.service.GroupLocalServiceUtil;
import com.liferay.portal.kernel.service.LayoutSetLocalServiceUtil;
import com.liferay.portal.kernel.service.VirtualHostLocalServiceUtil;
import com.liferay.portal.kernel.servlet.ServletResponseUtil;
import com.liferay.portal.kernel.util.ContentTypes;
import com.liferay.portal.kernel.util.GetterUtil;
import com.liferay.portal.kernel.util.PortalUtil;
import com.liferay.portal.kernel.util.Validator;
import com.liferay.portal.struts.Action;
import com.liferay.portal.struts.model.ActionForward;
import com.liferay.portal.struts.model.ActionMapping;
import com.liferay.portal.util.PropsValues;
import com.liferay.portal.util.RobotsUtil;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* @author David Truong
*/
public class RobotsAction implements Action {
@Override
public ActionForward execute(
ActionMapping actionMapping, HttpServletRequest httpServletRequest,
HttpServletResponse httpServletResponse)
throws Exception {
try {
String host = GetterUtil.getString(
PortalUtil.getForwardedHost(httpServletRequest));
LayoutSet layoutSet = null;
VirtualHost virtualHost =
VirtualHostLocalServiceUtil.fetchVirtualHost(host);
if ((virtualHost != null) && (virtualHost.getLayoutSetId() > 0)) {
layoutSet = LayoutSetLocalServiceUtil.fetchLayoutSet(host);
}
else {
Company company = PortalUtil.getCompany(httpServletRequest);
if (host.equals(company.getVirtualHostname()) &&
Validator.isNotNull(
PropsValues.VIRTUAL_HOSTS_DEFAULT_SITE_NAME)) {
Group defaultGroup = GroupLocalServiceUtil.getGroup(
company.getCompanyId(),
PropsValues.VIRTUAL_HOSTS_DEFAULT_SITE_NAME);
layoutSet = defaultGroup.getPublicLayoutSet();
}
}
String robots = RobotsUtil.getRobots(
layoutSet, httpServletRequest.isSecure());
ServletResponseUtil.sendFile(
httpServletRequest, httpServletResponse, null,
robots.getBytes(StringPool.UTF8), ContentTypes.TEXT_PLAIN_UTF8);
}
catch (Exception exception) {
if (_log.isWarnEnabled()) {
_log.warn(exception);
}
PortalUtil.sendError(
HttpServletResponse.SC_INTERNAL_SERVER_ERROR, exception,
httpServletRequest, httpServletResponse);
}
return null;
}
private static final Log _log = LogFactoryUtil.getLog(RobotsAction.class);
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy