마이페이지 다른문화원 자료 상세조회시 호스트네임바뀌게 수정
This commit is contained in:
parent
4121bef620
commit
11c4231f7f
@ -106,4 +106,11 @@ public interface CollectionService {
|
||||
*/
|
||||
public List<CollectionVO> selectSimilarList(CollectionVO vo) throws Exception;
|
||||
|
||||
/**
|
||||
* 문화원 코드 조회
|
||||
*
|
||||
* @param vo
|
||||
* @return
|
||||
*/
|
||||
public CollectionVO selectMngOrgInfo(String masterId) throws Exception;
|
||||
}
|
||||
|
||||
@ -310,4 +310,14 @@ public class CollectionServiceImpl implements CollectionService {
|
||||
return collectionDAO.selectSimilarList(vo);
|
||||
}
|
||||
|
||||
/**
|
||||
* 문화원 코드 조회
|
||||
*
|
||||
* @param vo
|
||||
* @return
|
||||
*/
|
||||
public CollectionVO selectMngOrgInfo(String masterId) throws Exception {
|
||||
return collectionDAO.selectMngOrgInfo(masterId);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -102,6 +102,7 @@ public class NlibSearchController extends NlibCommonController {
|
||||
HttpSession session = request.getSession();
|
||||
String councilCd = (String)session.getAttribute("councilCd");
|
||||
|
||||
|
||||
//검색엔진파라미터로 문화원코드
|
||||
searchVO.setMngOrgCd(councilCd);
|
||||
|
||||
@ -275,8 +276,24 @@ public class NlibSearchController extends NlibCommonController {
|
||||
, HttpServletRequest request
|
||||
, HttpServletResponse res
|
||||
) throws Exception {
|
||||
HttpSession session = request.getSession();
|
||||
String new_addr = "";
|
||||
String m_url = request.getRequestURL().toString();
|
||||
String domainUrl = StringUtil.getHostName(m_url);
|
||||
|
||||
String masterId = request.getParameter("masterId");
|
||||
CollectionVO collectionVO = collectionService.selectMngOrgInfo(masterId);
|
||||
|
||||
new_addr = "https://" + domainUrl + ".nculture.org/search/searchItemDetail.do?masterId=" + masterId;
|
||||
|
||||
|
||||
if(collectionVO != null && StringUtil.isNotEmpty(collectionVO.getDomainHostNm()) && !collectionVO.getDomainHostNm().equals(domainUrl))
|
||||
{
|
||||
new_addr = "https://" + collectionVO.getDomainHostNm() + ".nculture.org/search/searchItemDetail.do?masterId=" + masterId;
|
||||
res.sendRedirect(new_addr);
|
||||
return null;
|
||||
}
|
||||
|
||||
HttpSession session = request.getSession();
|
||||
List<String> mngOrgList = new ArrayList<>();
|
||||
List<String> keywordList = new ArrayList<>();
|
||||
|
||||
@ -370,6 +387,40 @@ public class NlibSearchController extends NlibCommonController {
|
||||
}
|
||||
|
||||
/**
|
||||
* 소장자료 상세조회
|
||||
*
|
||||
* @param req
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/search/searchItemGate.do")
|
||||
public void searchItemGate(
|
||||
Authentication authentication
|
||||
, @RequestParam Map<String, String> paramMap
|
||||
, ModelMap model
|
||||
, @ModelAttribute("searchVO") NlibSearchVO searchVO
|
||||
, HttpServletRequest request
|
||||
, HttpServletResponse res
|
||||
) throws Exception {
|
||||
String new_addr = "";
|
||||
String m_url = request.getRequestURL().toString();
|
||||
String domainUrl = m_url.substring(m_url.indexOf("//") + 2 , m_url.indexOf("."));
|
||||
|
||||
String masterId = request.getParameter("masterId");
|
||||
CollectionVO collectionVO = collectionService.selectMngOrgInfo(masterId);
|
||||
|
||||
new_addr = "https://" + domainUrl + ".nculture.org/search/searchItemDetail.do?masterId=" + masterId;
|
||||
if(collectionVO == null)
|
||||
{
|
||||
res.sendRedirect(new_addr);
|
||||
}else {
|
||||
if(StringUtil.isNotEmpty(collectionVO.getDomainHostNm()) && !collectionVO.getDomainHostNm().equals(domainUrl))
|
||||
{
|
||||
new_addr = "https://" + collectionVO.getDomainHostNm() + ".nculture.org/search/searchItemDetail.do?masterId=" + masterId;
|
||||
}
|
||||
res.sendRedirect(new_addr);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* YOURLS의 API를 통해서 단축URL 가져오기
|
||||
* @param cmmVO
|
||||
* @param model
|
||||
|
||||
@ -6,10 +6,12 @@
|
||||
<select id="selectMngOrgInfo" parameterType="String" resultType="CollectionVO">
|
||||
SELECT
|
||||
A.MNG_ORG_CD
|
||||
, B.DOMAIN_HOST_NM
|
||||
, B.DEPT_NM AS MNG_ORG_NM
|
||||
FROM RG_MASTER A
|
||||
LEFT OUTER JOIN SM_DEPT B ON A.MNG_ORG_CD = B.ORG_CD
|
||||
WHERE A.MASTER_ID = #{masterId}
|
||||
LIMIT 1
|
||||
</select>
|
||||
|
||||
<insert id="insertDataInquiryLog" parameterType="CollectionVO">
|
||||
|
||||
@ -263,6 +263,7 @@ function gfn_changeInterestBtn(masterId,onOff){
|
||||
if(result != "notLogin")
|
||||
{
|
||||
$(".favorit").removeAttr("onclick");
|
||||
$(".favorit").addClass("on");
|
||||
$(".favorit").attr("onclick","gfn_changeInterestBtn('" + masterId + "','off')");
|
||||
}
|
||||
|
||||
@ -290,6 +291,7 @@ function gfn_changeInterestBtn(masterId,onOff){
|
||||
if( result != "notLogin")
|
||||
{
|
||||
$(".favorit").removeAttr("onclick");
|
||||
$(".favorit").removeClass("on");
|
||||
$(".favorit").attr("onclick","gfn_changeInterestBtn('" + masterId + "','on')");
|
||||
}
|
||||
|
||||
@ -310,20 +312,22 @@ function gfn_changeInterest(masterId,onOff){
|
||||
async: false,
|
||||
data: {"masterId" : masterId}
|
||||
}).done(function(result){
|
||||
alert(result);
|
||||
if(result == "로그인 후 이용하실 수 있습니다.")
|
||||
if(result == "notLogin")
|
||||
{
|
||||
alert("로그인 후, 이용하실 수 있습니다.");
|
||||
return false;
|
||||
}
|
||||
if(result == "관심자료에 추가되었습니다.")
|
||||
{
|
||||
if(result == "success")
|
||||
{
|
||||
$("#favorites_"+masterId).removeAttr("onclick");
|
||||
$("#favorites_"+masterId).attr("onclick","gfn_changeInterest('" + masterId + "','off')");
|
||||
$("#favorites_"+masterId).attr("title","관심자료에서 삭제합니다.");
|
||||
html += "<img src=\"/images/icon/icon-cart-Favorites-on.png\" class=\"off\" alt=\"즐겨찾기 아이콘\">"
|
||||
html += "<img src=\"/images/icon/icon-cart-Favorites.png\" class=\"on\" alt=\"즐겨찾기 아이콘\">";
|
||||
$("#favorites_"+masterId).html(html);
|
||||
}
|
||||
alert("관심자료에 추가되었습니다.");
|
||||
}
|
||||
|
||||
});
|
||||
}
|
||||
if(onOff == "off")
|
||||
@ -335,14 +339,19 @@ function gfn_changeInterest(masterId,onOff){
|
||||
type : "POST",
|
||||
async: false,
|
||||
data : {"masterIdList" : masterIdArray},
|
||||
success : function(){
|
||||
alert("선택하신 관심자료가 삭제되었습니다.");
|
||||
$("#favorites_"+masterId).removeAttr("onclick");
|
||||
$("#favorites_"+masterId).attr("onclick","gfn_changeInterest('" + masterId + "','on')");
|
||||
$("#favorites_"+masterId).attr("title","관심자료로 등록합니다.");
|
||||
html += "<img src=\"/images/icon/icon-cart-Favorites.png\" class=\"off\" alt=\"즐겨찾기 아이콘\">"
|
||||
html += "<img src=\"/images/icon/icon-cart-Favorites-on.png\" class=\"on\" alt=\"즐겨찾기 아이콘\">";
|
||||
$("#favorites_"+masterId).html(html);
|
||||
success : function(result){
|
||||
if(result == "success")
|
||||
{
|
||||
alert("관심자료가 삭제되었습니다.");
|
||||
$("#favorites_"+masterId).removeAttr("onclick");
|
||||
$("#favorites_"+masterId).attr("onclick","gfn_changeInterest('" + masterId + "','on')");
|
||||
$("#favorites_"+masterId).attr("title","관심자료로 등록합니다.");
|
||||
html += "<img src=\"/images/icon/icon-cart-Favorites.png\" class=\"off\" alt=\"즐겨찾기 아이콘\">"
|
||||
html += "<img src=\"/images/icon/icon-cart-Favorites-on.png\" class=\"on\" alt=\"즐겨찾기 아이콘\">";
|
||||
$("#favorites_"+masterId).html(html);
|
||||
}else{
|
||||
alert("관심자료 삭제에 실패하였습니다.");
|
||||
}
|
||||
},error : function(){
|
||||
}
|
||||
});
|
||||
@ -532,15 +541,10 @@ function gfn_gotoUrl(url) {
|
||||
location.href = url;
|
||||
}
|
||||
|
||||
function gfn_getDetail(masterId, host) {
|
||||
|
||||
if(gfn_isEmpty(host)) host = "";
|
||||
else host = "https://" + host + ".nculture.org";
|
||||
|
||||
var url = host + "/search/searchItemDetail.do?masterId=" + masterId;
|
||||
function gfn_getDetail(masterId) {
|
||||
var url = "/search/searchItemDetail.do?masterId=" + masterId;
|
||||
|
||||
gfn_openNewWindow(url);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user