AEM Sites - GDPR就绪 aem-sites-gdpr-readiness
欧盟的《数据隐私权通用数据保护条例》已于2018年5月正式生效。
AEM Sites随时准备帮助客户履行其GDPR合规义务。 本页面将指导客户完成在AEM Sites中处理GDPR请求的过程。 它描述了私有数据的存储位置,以及如何手动或使用代码删除私有数据。
有关详细信息,请参阅 Adobe隐私中心的GDPR页面.
作者服务器 author-server
作者服务器上的用户帐户和UGC内容在 平台GDPR文档.
发布服务器 publish-server
在 平台GDPR文档.
默认情况下,AEM Sites 组件不会存储访客在发布服务器上输入的表单数据。建议将数据转发到第三方系统或 Adobe Campaign 以供进一步处理。
选择加入/选择退出 opt-in-opt-out
AEM具有 cookie选择退出服务 用于管理用户的选择启用/选择禁用。
增强的Analytics分析功能 enhanced-insights-by-analytics
AEM Sites包含与Analytics“增强的分析”的可选集成,后者使用Adobe Analytics按需服务中的功能。
有关管理与Adobe Analytics相关的GDPR数据主体请求的更多信息,请参阅 Adobe Analytics和GDPR.
按Target增强的个性化功能 enhanced-personalization-by-target
AEM Sites包含与Enhanced Personalization by Target的可选集成,后者使用Adobe Target On-demand Service中的功能。
有关管理与Adobe Target相关的GDPR数据主体请求的更多信息,请参阅 Adobe Target — 隐私和《通用数据保护条例》.
ContextHub contexthub
AEM提供可选数据层,其中 ContextHub. 这会将特定于访客的数据保留在浏览器中,以用于基于规则的个性化。
默认情况下,此访客数据不会存储在 AEM 中;AEM 将规则发送到数据层,以在浏览器中做出个性化决策。
实施选择加入/选择退出 implementing-opt-in-opt-out
网站所有者需要根据以下指南实施选择退出组件。
这些指南将选择加入作为默认设置加以实施。因此,在将任何个人数据存储到浏览器的(客户端)持久性中之前,网站访客必须明确同意。
-
每次包含 ContextHub 组件时都应包含选择退出组件。
-
与网站GDPR相关的条款和条件必须显示给网站访客,以便他们能够:
- 接受
- 拒绝
- 更改其上一个选择
-
如果网站访客接受网站的条款和条件,则应删除 ContextHub 选择退出 Cookie:
code language-none ContextHub.Utils.Cookie.removeItem('cq-opt-out');
-
如果网站访客不接受网站的条款和条件,则应设置 ContextHub 选择退出 Cookie:
code language-none ContextHub.Utils.Cookie.setItem('cq-opt-out', 1);
-
要检查 ContextHub 是否正在选择退出模式下运行,应在浏览器的控制台中进行以下调用:
code language-none var isOptedOut = ContextHub.isOptedOut(true) === true; // if isOptedOut is true, ContextHub is running in opt-out mode
预览 ContextHub 的持久存储 previewing-persistence-of-contexthub
要预览使用 ContextHub 的持久存储,用户可以:
-
例如,使用浏览器的控制台:
-
Chrome:
-
打开“开发人员工具”>“应用程序”>“存储”:
- “本地存储”>“(网站)”>“ContextHubPersistence”
- “会话存储”>“(网站)”>“ContextHubPersistence”
- “Cookie”>“(网站)”>“SessionPersistence”
-
-
Firefox:
-
打开“开发人员工具”>“存储”:
- “本地存储”>“(网站)”>“ContextHubPersistence”
- “会话存储”>“(网站)”>“ContextHubPersistence”
- “Cookie”>“(网站)”>“SessionPersistence”
-
-
Safari:
-
在菜单栏中打开“偏好设置”>“高级”>“显示开发”菜单
-
打开“开发”>“显示 JavaScript 控制台”
- “控制台”>“存储”>“本地存储”>“(网站)”>“ContextHubPersistence”
- “控制台”>“存储”>“会话存储”>“(网站)”>“ContextHubPersistence”
- “控制台”>“存储”>“Cookie”>“(网站)”>“ContextHubPersistence”
-
-
Internet Explorer:
-
打开“开发人员工具”>“控制台”
- localStorage.getItem('ContextHubPersistence')
- sessionStorage.getItem('ContextHubPersistence')
- document.cookie
-
-
-
在浏览器的控制台中使用 ContextHub API:
-
ContextHub 提供以下数据持久层:
- ContextHub.Utils.Persistence.Modes.LOCAL(默认)
- ContextHub.Utils.Persistence.Modes.SESSION
- ContextHub.Utils.Persistence.Modes.COOKIE
- ContextHub.Utils.Persistence.Modes.WINDOW
ContextHub 存储定义将使用哪个持久层,因此,要查看持久存储的当前状态,应检查所有层。
-
例如,要查看存储在 localStorage 中的数据,请执行以下操作:
要预览使用 ContextHub 的持久存储,用户可以:
-
使用浏览器的控制台:
-
Chrome - 打开“开发人员工具”>“应用程序”>“存储”:
- “本地存储”>“(网站)”>“ContextHubPersistence”
- “会话存储”>“(网站)”>“ContextHubPersistence”
- “Cookie”>“(网站)”>“SessionPersistence”
-
Firefox - 打开“开发人员工具”>“存储”:
- “本地存储”>“(网站)”>“ContextHubPersistence”
- “会话存储”>“(网站)”>“ContextHubPersistence”
- “Cookie”>“(网站)”>“SessionPersistence”
-
-
在浏览器的控制台中使用 ContextHub API:
-
ContextHub 提供以下数据持久层:
- ContextHub.Utils.Persistence.Modes.LOCAL(默认)
- ContextHub.Utils.Persistence.Modes.SESSION
- ContextHub.Utils.Persistence.Modes.COOKIE
- ContextHub.Utils.Persistence.Modes.WINDOW
ContextHub 存储定义将使用哪个持久层,因此,要查看持久存储的当前状态,应检查所有层。
-
例如,要查看存储在 localStorage 中的数据,请执行以下操作:
var storage = new ContextHub.Utils.Persistence({ mode: ContextHub.Utils.Persistence.Modes.LOCAL });
console.log(storage.getTree());
清除 ContextHub 的持久存储 clearing-persistence-of-contexthub
要清除 ContextHub 持久存储,请执行以下操作:
-
要清除当前加载的持久存储,请执行以下操作:
code language-none // in order to be able to fully access persistence layer, Opt-Out must be turned off ContextHub.Utils.Cookie.removeItem('cq-opt-out'); // following call asks all currently loaded stores to clear their data ContextHub.cleanAllStores(); // following call asks all currently loaded stores to set back default values (provided in their configs) ContextHub.resetAllStores();
-
要清除特定的持久层(例如 sessionStorage),请执行以下操作:
code language-none var storage = new ContextHub.Utils.Persistence({ mode: ContextHub.Utils.Persistence.Modes.SESSION }); storage.setItem('/store', null); storage.setItem('/_', null); // to confirm that nothing is stored: console.log(storage.getTree());
-
要清除所有 ContextHub 持久层,必须为所有层调用适当的代码:
- ContextHub.Utils.Persistence.Modes.LOCAL(默认)
- ContextHub.Utils.Persistence.Modes.SESSION
- ContextHub.Utils.Persistence.Modes.COOKIE
- ContextHub.Utils.Persistence.Modes.WINDOW