Socket
Socket
Sign inDemoInstall

bbcookiemanager

Package Overview
Dependencies
1
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bbcookiemanager

./README.md


Version published
Weekly downloads
183
increased by83%
Maintainers
1
Install size
167 kB
Created
Weekly downloads
 

Readme

Source

A simple component that implements the 2B Advice Cookie Consent Frameworks.

Table of Contents

  • What is cookie manager ?
  • Installation
  • Documentation
  • License ISC

The Cookie Consent Manager from 2B Advice is a Processing Activity for the PrIME Data Privacy Software system. Cookie Consent Manager provides comprehensive management of website cookies in compliance with applicable privacy laws. As a part of that compliance, the Consent Manager provides three JavaScript snippets that must be integrated into the website.

Visit 2B Advice website.

Installation

Just install the component by NPM

npm install bbcookiemanager

Documentation

Read cookie manager documentation.

appendSrcTag(tag, categoryIdentifier, parentNode)

Description

This function appends a DOM element with the “src” attribute into the parent node as the last child and sets the cookie category attribute. The appended DOM element is disabled (e.g. script DOM element has attribute “text/plain” and the iframe DOM element does not have the “src” attribute). To enable appended DOM elements, the API function “runSrcTags” must be called.

appendSrcTag(tag: HTMLBaseElement, categoryIdentifier: string, parentNode: HTMLBaseElement)

Parameters

  • tag [the HTML element] – DOM element which can contain the “src” attribute or the script HTML element
  • categoryIdentifier [string] – The cookie category identifier from 2B Advice PrIME application
  • parentNode [the HTML element] – DOM element where the “tag” is inserted as last child

Example

On the website page there is a button and after a click on this button two script elements and one iframe element are inserted into the website. The second script element sets the cookies which are classified as “marketing” cookies.

import { Component } from '@angular/core';
import { BbCookieManagerComponent } from 'bbcookiemanager';


@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
})
export class HomeComponent {
  constructor(bbCookieComponent: BbCookieManagerComponent) {

    var script1 = document.createElement('script');
    script1.type = 'text/javascript';
    script1.src = 'script1.js';
    document.head.appendChild(script1);

    var iframe = document.createElement('iframe');
    iframe.src = 'video'
    document.body.appendChild(iframe);

    var script2 = document.createElement('script');
    script2.type = 'text/javascript';
    script2.src = 'script2.js';
    var marketingContainer = document.getElementById('marketingCon tainer');

    bbCookieComponent.appendSrcTag(script2[0], 'marketing', marketingContainer[0]);
  }
}

callbackByCategory(categoryIdentifier, callbackFunction)

Description

This function executes the callback function according to the web site visitor’s consent. The call back function is only executed if the visitor has consented to the category specified in the parameter “categoryIdentifier”.

callbackByCategory(categoryIdentifier: string, callbackFunction: Function)

Parameters

  • categoryIdentifier [string] – The cookie category identifier from 2B Advice PrIME application
  • dependency function [javascript function] – The function is executed when the cookie category is enabled

Example

On the website there is a javascript file that contains multiple functions. Some of them should only be executed if the categories “marketing” and “statistic” are enabled.

import { Component } from '@angular/core';
import { BbCookieManagerComponent } from 'bbcookiemanager';


@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
})
export class HomeComponent {
  constructor(bbCookieComponent: BbCookieManagerComponent) {

    bbCookieComponent.callbackByCategory('marketing', this.showAdvertisment);
    bbCookieComponent.callbackByCategory('statistic', this.makeStatistic);

  }

  makeStatistic() {
    document.cookie = 'StatisticCookie=valueStatisticCookie;expi res=Thu, 18 Dec 2030 12:00:00 UTC; path=/'
  }

  showAdvertisment() {
    var script = document.createElement('script');
    script.src = 'script.js'
    document.head.appendChild(script[0]);
    var iframe = document.createElement('iframe');
    iframe.src = 'video'
    document.body.appendChild(iframe);
  }
}

registerEvent(event name, event callback)

Description

This function registers a callback function for the cookie consent manager. Multiple bindings for the same cookie consent event is allowed.

registerEvent(eventName: CookieEvents, eventCallback: Function)

Parameters

  • event name [cookie manager event enum] – Name of the cookie manager event
  • event callback [javascript function] – The javascript function which is fired after the event

Example

On a website it is necessary to check the current cookie consent when visitor clicks on the button “Accept”. And if the category “statistic” is enabled then a new cookie is set for a website with geolocation.

import { Component } from '@angular/core';
import { BbCookieManagerComponent, CookieEvents } from 'bbcookiemanager';

declare let BBCookieManager: any;

@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
})
export class HomeComponent {
  constructor(bbCookieComponent: BbCookieManagerComponent) {

    bbCookieComponent.registerEvent(CookieEvents.onAccept, function (e) {
      if (BBCookieManager.consent.statistic) {
        document.cookie = 'visitorGeo=EU;expires=Thu, 18 Dec 2030 12:00:00 UTC;path=/'
      }
    });
  }
} 

renderCookieDeclaration(parentNode)

Description

The API function renders the cookie declaration as a last child of the parent node. The render mode must be set.

renderCookieDeclaration(parentNode: HTMLBaseElement)

Parameters

  • parentNode [the HTML element] – DOM element where is the cookie declaration should be appended as a last child

Example

The cookie declaration script is used in the HTML head tag. The cookie declaration must be rendered on a special location on the website.

import { Component } from '@angular/core';
import { BbCookieManagerComponent } from 'bbcookiemanager';

var _bbCookieComponent: BbCookieManagerComponent;

@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
})

export class HomeComponent {
  constructor(bbCookieComponent: BbCookieManagerComponent) {
    _bbCookieComponent = bbCookieComponent;
  }

  insert() {
    var cookieContainer = document.getElementById('cookies');
    _bbCookieComponent.renderCookieDeclaration(cookieContainer[0]);
  }
}

renderPolicyDeclaration(parentNode)

Description

The API function renders the policy declaration as a last child of the parent node. The render mode must be set

renderPolicyDeclaration(parentNode: HTMLBaseElement)

Parameters

  • parentNode [the HTML element] – DOM element where is the policy declaration should be appended as a last child

Example

The policy declaration script is used in HTML head tag. The policy declaration must be rendered on a special location on the website.

import { Component } from '@angular/core';
import { BbCookieManagerComponent } from 'bbcookiemanager';

var _bbCookieComponent: BbCookieManagerComponent;

@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
})

export class HomeComponent {
  constructor(bbCookieComponent: BbCookieManagerComponent) {
    _bbCookieComponent = bbCookieComponent;
  }

  insert() {
    var policyContainer = document.getElementById('policies');
    _bbCookieComponent.renderPolicyDeclaration(policyContainer[0]);
  }
}

runcSrcTags()

Description

This function detects all tags of type=“text/plain” and enables/executes the tags according to the visitor’s consent. If script tags or any other tags with “src” attribute are not present in the website during the parsing process but there are added dynamically (e.g. by button click or in context of a SPA), then the cookie manager cannot process those elements. In this case, the scripts and src tags can be inserted to the website using the API function “appendSrcTag” or manually by setting type=“text/plain” and the appropriate category specified in the “data-bbcc” attribute. When the API function “runSrcTags” is called, it detects all tags of type “text/plain” and enables them according to the current consent.

runcSrcTags()

Example

On the website page there is a button and after a click on this button the script element and the iframe element are inserted into the website by the API function “appendSrcTag”. Those elements are disabled and to execute them the API function “runSrcTags” must be called. After calling the API function “runSrcTags” the script element is executed in case the “statistic” cookie category is enabled and the iframe element in case the “marketing” cookie category is enabled.

import { Component } from '@angular/core';
import { BbCookieManagerComponent } from 'bbcookiemanager';


@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
})

export class HomeComponent {
  constructor(bbCookieComponent: BbCookieManagerComponent) {
    var script = document.createElement('script');
    script.src = 'script.js';
    var iframe = document.createElement('iframe');
    iframe.src = 'video';
    // append DOM elements by cookie API 
    bbCookieComponent.appendSrcTag(script[0], 'statistic', document.head[0]);
    bbCookieComponent.appendSrcTag(iframe[0], 'marketing', document.getElementById('videoContainer')[0]);
    // run appended elements 
    bbCookieComponent.runSrcTags();
  }
}

setCookie(name, value, hours)

Description

The API function sets a cookie for the website. If the cookie category for the cookie is disabled, then the cookie is not set.

setCookie(name: string, value: string, hours: number)

Parameters

  • name [string] – Name of the cookie
  • value [string] – Value of the cookie
  • hours [int] – Expiration time of the cookie (in hours)

Example

On a website a new cookie must be set.

import { Component } from '@angular/core';
import { BbCookieManagerComponent } from 'bbcookiemanager';


@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
})

export class HomeComponent {
  constructor(bbCookieComponent: BbCookieManagerComponent) {
    bbCookieComponent.setCookie('cookieName', 'cookieValue', 24); 
  }
}

showBanner()

Description

This API function displays the cookie consent banner.

showBanner()

Example

On a website there is a button and after a click on this button the cookie consent banner appears.

import { Component } from '@angular/core';
import { BbCookieManagerComponent } from 'bbcookiemanager';


@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
})

export class HomeComponent {
  constructor(bbCookieComponent: BbCookieManagerComponent) {
    bbCookieComponent.showBanner(); 
  }
} 

showSettings()

Description

This API function displays the cookie consent dialog with the category selection.

showSettings()

Example

On a website page there is a button and after click on this button the cookie consent dialog appears.

import { Component } from '@angular/core';
import { BbCookieManagerComponent } from 'bbcookiemanager';


@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
})

export class HomeComponent {
  constructor(bbCookieComponent: BbCookieManagerComponent) {
    bbCookieComponent.showSettings(); 
  }
} 

withdraw()

Description

This API function disables all script HTML elements and HTML elements with the “src” attribute and removes website cookies which belong to categories which are not set as mandatory categories.

withdraw()

Example

On the website page there is a button and after click on this button all website cookies which are in non-mandatory categories are removed and all script HTML elements and HTML elements with “src” attribute are disabled.

import { Component } from '@angular/core';
import { BbCookieManagerComponent } from 'bbcookiemanager';


@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
})

export class HomeComponent {
  constructor(bbCookieComponent: BbCookieManagerComponent) {
    bbCookieComponent.withdraw(); 
  }
} 

License ISC

Copyright 2020 2B Advice - the privacy benchmark

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Keywords

FAQs

Last updated on 13 Nov 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc