ContextHub存放區候選範例 sample-contexthub-store-candidates
ContextHub提供數個您可在解決方案中使用的候選範例商店。 每個範例都會提供下列資訊:
- 在何處尋找原始程式碼,以方便您開啟它以供學習。
- 如何設定您從候選商店建立的商店。
- 如何建構存放區資料以方便您存取。
aem.segmentation範例存放區候選專案 aem-segmentation-sample-store-candidate
儲存已解析和未解析的ContextHub區段。 自動從ContextHub SegmentManager擷取區段。
Source位置 source-location-segmentation
/libs/settings/cloudsettings/legacy/contexthub/segmentation
基礎實作 base-implementation-segmentation
aem.segmentation存放區候選擴充ContextHub.Store.PersistedJSONPStore
。
設定 configuration-segmentation
建立aem.segmentation
存放區時,您不需要提供詳細的組態。 預設設定會指定ContextHub區段定義的位置。
{
"service":{
"jsonp":false,
"timeout":1000,
"path":"/etc/segmentation/contexthub.segment.js"
}
}
contexthub.geolocation範例存放區候選專案 contexthub-geolocation-sample-store-candidate
contexthub.geolocation
範例存放區候選專案使用Google Map來取得並儲存有關使用者端位置的資訊。
Source位置 source-location-geolocation
/libs/settings/cloudsettings/legacy/contexthub/geolocation
基礎實作 base-implementation-geolocation
contexthub.geolocation
存放區候選專案延伸ContextHub.Store.PersistedJSONPStore
。
設定 configuration-geolocation
預設設定會指定有關Google服務以及初始經緯度座標的資訊。
{
"service": {
"jsonp": false,
"timeout": 1000,
"ttl": 1800000,
"secure": false,
"host": "maps.googleapis.com",
"port": 80,
"path": "/maps/api/geocode/json"
},
"eventDeferring": 16,
"html5coordinatesDiscoveryAPI": {
"timeout": 30000,
"ttl": 900000,
"highAccuracy": false
},
"initialValues": {
"latitude": 37.331375,
"longitude": -121.893992
}
}
資料專案 data-items-geolocation
存放區會使用與下列範例類似的資料樹狀結構:
{
"latitude":"37.331375",
"longitude":"-121.893992"
}
contexthub.surferinfo範例存放區候選專案 contexthub-surferinfo-sample-store-candidate
儲存有關目前使用者端環境的資訊,例如裝置、視窗、瀏覽器、日期和時間。
Source位置 source-location-surferinfo
/libs/settings/cloudsettings/legacy/contexthub/surferinfo
基礎實作 base-implementation-surferinfo
contexthub.surferinfo
存放區候選專案延伸ContextHub.Store.PersistedStore
。
設定 configuration-surferinfo
預設設定繼承自ContextHub.Store.PersistedStore
。
資料專案 data-items-surferinfo
使用此候選存放區的存放區具有類似於以下範例的資料樹狀結構:
{
"display":{
"resolution":{
"width":1440,
"height":900
},
"devicePixelRatio":1,
"colorDepth":24,
"nrOfColors":16777216,
"pixelsPerInch":96,
"orientation":{
"mode":"landscape",
"direction":"normal"
}
},
"window":{
"dimension":{
"width":1395,
"height":652
},
"percentageUsage":0.7
},
"browser":{
"version":"39.0",
"family":"Firefox",
"userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:39.0) Gecko/20100101 Firefox/39.0"
},
"device":{
"category":"Desktop",
"type":"Desktop",
"model":"PC",
"version":""
},
"isMobile":true,
"os":{
"name":"Mac OS X",
"version":"10"
},
"year":2015,
"month":7,
"day":22,
"hour":14,
"minutes":1
}
granite.emulators範例存放區候選專案 granite-emulators-sample-store-candidate
granite.emulators
範例存放區候選專案儲存有關使用者端裝置的資訊。
Source位置 source-location-emulators
/libs/settings/cloudsettings/legacy/contexthub/emulators
基礎實作 base-implementation-emulators
granite.emulators
存放區候選專案延伸ContextHub.Store.PersistedStore
。
設定 configuration-emulators
預設組態包含名為defaultEmulators
的陣列,其中包含不同裝置的相關資訊。 建立存放區時,請視需要在「詳細資料組態」屬性中提供不同的裝置設定檔,格式如下例所示:
{
"defaultEmulators":[
{
"id": "iphone-6",
"title": "iPhone 6",
"type": "mobile",
"platform": "iOS",
"platformVersion": "8.1.3",
"width": 750,
"height": 1334,
"canRotate": true,
"orientation": "Portrait",
"device-pixel-ratio": 2
},
{
"id": "iphone-6-plus",
"title": "iPhone 6 Plus",
"type": "mobile",
"platform": "iOS",
"platformVersion": "8.1.3",
"width": 1080,
"height": 1920,
"canRotate": true,
"orientation": "Portrait",
"device-pixel-ratio": 3
},
{
"id": "galaxy-s4",
"title": "Samsung Galaxy S4",
"type": "mobile",
"platform": "Android",
"platformVersion": "4.4.2 KitKat",
"width": 1080,
"height": 1920,
"canRotate": true,
"orientation": "Portrait",
"device-pixel-ratio": 3
}
]
}
資料專案 data-items-emulators
存放區資料樹狀結構類似於以下範例:
{
"devices":[
{"id":"native",
"title":"Native",
"type":"screen",
"width":1395,
"height":374,
"orientation":"Landscape",
"platform":"Mac OS X",
"platformVersion":"10",
"canRotate":false
},
{"id":"ipad-3",
"title":"iPad 3 / 4 / Air",
"type":"tablet",
"platform":"iOS",
"platformVersion":"8.1.3",
"width":1536,
"height":2048,
"canRotate":true,
"orientation":"Portrait",
"device-pixel-ratio":2
},
{"id":"iphone-6",
"title":"iPhone 6",
"type":"mobile",
"platform":"iOS",
"platformVersion":"8.1.3",
"width":750,
"height":1334,
"canRotate":true,
"orientation":"Portrait",
"device-pixel-ratio":2
},
{"id":"galaxy-s4",
"title":"Samsung Galaxy S4",
"type":"mobile",
"platform":"Android",
"platformVersion":"4.4.2 KitKat",
"width":1080,
"height":1920,
"canRotate":true,
"orientation":"Portrait",
"device-pixel-ratio":3
}
],
"currentDeviceId":"native",
"orientations":[
{"id":"landscape",
"title":"Landscape"
},
{"id":"portrait",
"title":"Portrait"
}
],
"currentDevice":{
"id":"native",
"title":"Native",
"type":"screen",
"width":1395,
"height":374,
"orientation":"Landscape",
"platform":"Mac OS X",
"platformVersion":"10",
"canRotate":false
}
}
granite.profile範例存放區候選專案 granite-profile-sample-store-candidate
儲存目前使用者的相關資訊。
Source位置 source-location-profile
/libs/settings/cloudsettings/legacy/contexthub/profile
基礎實作 base-implementation-profile
granite.profile
存放區候選專案延伸ContextHub.Store.PersistedJSONPStore
。
設定 configuration-profile
系統會使用下列預設設定。 您不應變更此設定。
{
"service":{
"jsonp":false,
"timeout":1000,
"path":"${contexthub:/store/profile/path}.infinity.json"
},
"initialValues":{"path":"/home/users/a/anonymous"}
}
資料專案 data-items-profile
使用此候選存放區的存放區具有類似於以下範例的資料樹狀結構:
{
"displayName":"anonymous",
"path":"/home/users/6/6zavE_DGre6Ad9Y5E0Ba",
"avatar":"/etc/designs/default/images/social/avatar.png",
"authorizableId":"anonymous"
}