사용자 지정 클라우드 서비스 만들기 creating-a-custom-cloud-service
기본 Cloud Services 세트는 사용자 지정 Cloud Service 유형으로 확장할 수 있습니다. 이렇게 하면 구조화된 방식으로 페이지에 사용자 지정 마크업을 삽입할 수 있습니다. 주로 타사 분석 공급자(예: Google Analytics, Chartbeat 등)에 사용됩니다. Cloud Services은 상위 페이지에서 하위 페이지로 상속되며, 특정 수준에서 상속을 분류할 수 있습니다.
-
CRXDE Lite에서
/apps
:- 이름:
acs
- 유형:
nt:folder
- 이름:
-
아래에 새 노드 만들기
/apps/acs
:- 이름:
analytics
- 유형:
sling:Folder
- 이름:
-
아래에 2개의 새 노드 만들기
/apps/acs/analytics
:- 이름: 구성 요소
- 유형:
sling:Folder
및
- 이름: 템플릿
- 유형:
sling:Folder
-
마우스 오른쪽 단추 클릭
/apps/acs/analytics/components
. 선택 만들기… 후 구성 요소 만들기… 대화 상자가 열리면 다음을 지정할 수 있습니다.- 레이블:
googleanalyticspage
- 제목:
Google Analytics Page
- Super Type:
cq/cloudserviceconfigs/components/configpage
- 그룹:
.hidden
- 레이블:
-
클릭 다음 두 번 후 다음을 지정합니다.
- 허용된 상위:
acs/analytics/templates/googleanalytics
클릭 다음 두 번 클릭하여 확인.
- 허용된 상위:
-
에 속성 추가
googleanalyticspage
:- 이름:
cq:defaultView
- 값:
html
- 이름:
-
이름이 인 새 파일 만들기
content.jsp
아래에/apps/acs/analytics/components/googleanalyticspage
, 다음 컨텐츠 포함:code language-xml <%@page contentType="text/html" pageEncoding="utf-8"%><% %><%@include file="/libs/foundation/global.jsp"%><div> <div> <h3>Google Analytics Settings</h3> <ul> <li><div class="li-bullet"><strong>accountID: </strong><br><%= xssAPI.encodeForHTML(properties.get("accountID", "")) %></div></li> </ul> </div>
-
아래에 새 노드 만들기
/apps/acs/analytics/components/googleanalyticspage/
:-
이름:
dialog
-
유형:
cq:Dialog
-
속성:
- 이름:
title
- 유형:
String
- 값:
Google Analytics Config
- 이름:
xtype
- 유형:
String
- 값:
dialog
- 이름:
-
-
아래에 새 노드 만들기
/apps/acs/analytics/components/googleanalyticspage/dialog
:-
이름:
items
-
유형:
cq:Widget
-
속성:
- 이름:
xtype
- 유형:
String
- 값:
tabpanel
- 이름:
-
-
아래에 새 노드 만들기
/apps/acs/analytics/components/googleanalyticspage/dialog/items
:- 이름:
items
- 유형:
cq:WidgetCollection
- 이름:
-
아래에 새 노드 만들기
/apps/acs/analytics/components/googleanalyticspage/dialog/items/items
:-
이름: tab1
-
유형:
cq:Panel
-
속성:
- 이름:
title
- 유형:
String
- 값:
Config
- 이름:
-
-
아래에 새 노드 만들기
/apps/acs/analytics/components/googleanalyticspage/dialog/items/items/tab1
:-
이름: 항목
-
유형:
nt:unstructured
-
속성:
-
이름:
fieldLabel
-
유형: 문자열
-
값: 계정 ID
-
이름:
fieldDescription
-
유형:
String
-
값:
The account ID assigned by Google. Usually in the form UA-NNNNNN-N
-
이름:
name
-
유형:
String
-
값:
./accountID
-
이름:
validateOnBlur
-
유형:
String
-
값:
true
-
이름:
xtype
-
유형:
String
-
값:
textfield
-
-
-
복사
/libs/cq/cloudserviceconfigs/components/configpage/body.jsp
to/apps/acs/analytics/components/googleanalyticspage/body.jsp
및 변경libs
toapps
34행에서 79행에 있는 스크립트 참조를 정규화된 경로로 만듭니다. -
에서 새 템플릿을 만듭니다.
/apps/acs/analytics/templates/
:- with 리소스 유형 =
acs/analytics/components/googleanalyticspage
- with 레이블 =
googleanalytics
- with 제목=
Google Analytics Configuration
- with allowedPath =
/etc/cloudservices/googleanalytics(/.*)?
- with allowedChildren =
/apps/acs/analytics/templates/googleanalytics
- with sling:resourceSuperType =
cq/cloudserviceconfigs/templates/configpage
(템플릿 노드에서 jcr:content 노드가 아님) - with cq:designPath =
/etc/designs/cloudservices/googleanalytics
(jcr:content에서)
- with 리소스 유형 =
-
새 구성 요소 만들기:
/apps/acs/analytics/components/googleanalytics
.다음 컨텐츠를에 추가합니다.
googleanalytics.jsp
:code language-xml <%@page import="org.apache.sling.api.resource.Resource, org.apache.sling.api.resource.ValueMap, org.apache.sling.api.resource.ResourceUtil, com.day.cq.wcm.webservicesupport.Configuration, com.day.cq.wcm.webservicesupport.ConfigurationManager" %> <%@include file="/libs/foundation/global.jsp" %><% String[] services = pageProperties.getInherited("cq:cloudserviceconfigs", new String[]{}); ConfigurationManager cfgMgr = resource.getResourceResolver().adaptTo(ConfigurationManager.class); if(cfgMgr != null) { String accountID = null; Configuration cfg = cfgMgr.getConfiguration("googleanalytics", services); if(cfg != null) { accountID = cfg.get("accountID", null); } if(accountID != null) { %> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', '<%= accountID %>']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'https://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script><% } } %>
이렇게 하면 구성 속성을 기반으로 사용자 지정 마크업이 출력됩니다.
-
다음으로 이동
http://localhost:4502/miscadmin#/etc/cloudservices
새 페이지를 만듭니다.- 제목:
Google Analytics
- 이름:
googleanalytics
CRXDE Lite으로 돌아가서
/etc/cloudservices/googleanalytics
에 다음 속성을 추가합니다.jcr:content
:- 이름:
componentReference
- 유형:
String
- 값:
acs/analytics/components/googleanalytics
- 제목:
-
새로 만든 서비스 페이지(
http://localhost:4502/etc/cloudservices/googleanalytics.html
)을 클릭하고 + 새 구성을 만들려면:- 상위 구성:
/etc/cloudservices/googleanalytics
- 제목:
My First GA Config
선택 Google Analytics 구성 을(를) 클릭합니다. 만들기.
- 상위 구성:
-
을(를) 입력합니다. 계정 ID, 예
AA-11111111-1
. 확인 을 클릭합니다. -
페이지로 이동하여 페이지 속성의 Cloud Services 탭.
-
페이지에 사용자 지정 마크업이 추가됩니다.