项目作者: adgear

项目描述 :
Erlang IAB consent-string library
高级语言: Erlang
项目地址: git://github.com/adgear/consent-string.git
创建时间: 2018-04-13T00:19:41Z
项目社区:https://github.com/adgear/consent-string

开源协议:MIT License

下载


consent-string

IAB consent-string library

Build Status

API

  1. %% for v1
  2. 1> consent_string:parse_b64(<<"BAAAAAAOYa7j0AcABBENBk-AAAAhGAKAAyAAIABoAIAAcgA0ACYADgAOQBAw">>).
  3. {ok,{consent,1,0,15442098420,28,1,1,<<"EN">>,100,undefined,
  4. undefined,undefined,undefined,
  5. <<248,0,0>>,
  6. undefined,undefined,undefined,529,1,
  7. {vendor_range,0,10,[259,114,56|...]},
  8. undefined,undefined,undefined,undefined,undefined}}
  9. 1> {ok, Consent} = consent_string:parse_b64(<<"BAAAAAAOYa7j0AcABBENBk-AAAAhGAKAAyAAIABoAIAAcgA0ACYADgAOQBAw">>).
  10. {ok,{consent,1,0,15442098420,28,1,1,<<"EN">>,100,undefined,
  11. undefined,undefined,undefined,
  12. <<248,0,0>>,
  13. undefined,undefined,undefined,529,1,
  14. {vendor_range,0,10,[259,114,56|...]},
  15. undefined,undefined,undefined,undefined,undefined}}
  16. 2> consent_string:purpose(1, Consent).
  17. true
  18. 3> consent_string:purpose([1, 3], Consent).
  19. true
  20. 4> consent_string:vendor(32, Consent).
  21. true
  22. %% same api for v2
  23. 1> consent_string:parse_b64(<<"CO4WdepO4WdfWAHABBENA0CsAP_AAH_AAAAAGVtf_X9fb2vj-_5999t0eY1f9_63t-wzjgeNs-8NyZ_X_J4Xr2MyvB34pqYKmR4EulLBAQdkHGHcTQgAwIkVqTLsYk2MizNKJ7JEilMbM2dYGG1vn8XTuZCY70-sf__zv3-_-___6oGUEEmGpfAQJCWMBJNmlUKIEIVxIVAOACihGFo0sNCRwU7I4CPUACABAYgIQIgQYgohZBAAAAAElEQAgAwIBEARAIAAQAjQEIACJAEFgBIGAQACoGhYARRBKBIQYHBUcogQFSLRQTzAAAAA.f_gAD_gAAAAA">>).
  24. {ok,{consent,2,15977797545,15977797590,7,1,1,<<"EN">>,52,2,
  25. 1,0,3072,
  26. <<255,192,0>>,
  27. <<127,192,0>>,
  28. 0,<<"AA">>,811,0,
  29. {vendor_bit_field,<<215,255,95,215,219,...>>},
  30. {vendor_legitimate_interests,808,
  31. {entry_bitfield,<<"A&"...>>}},
  32. {publisher_restrictions,0,[]},
  33. undefined,undefined,
  34. {consent_segment,3,...}}}

Tests

  1. make dialyzer
  2. make lint
  3. make eunit
  4. make xref

License

  1. The MIT License (MIT)
  2. Copyright (c) 2018 AdGear Technologies
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in all
  10. copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  17. SOFTWARE.