JSoup Configuration Externalization

Simple library that allows you you externalize JSoup configuration in either JSON or JowliML (a very terse grammar)

Лицензия

Лицензия

MIT
Категории

Категории

jsoup Прикладные библиотеки Configuration Библиотеки уровня приложения config
Группа

Группа

io.shick.jsoup
Идентификатор

Идентификатор

jsoup-configuration
Последняя версия

Последняя версия

1.0.3
Дата

Дата

Тип

Тип

pom
Описание

Описание

JSoup Configuration Externalization
Simple library that allows you you externalize JSoup configuration in either JSON or JowliML (a very terse grammar)
Ссылка на сайт

Ссылка на сайт

https://github.com/trevershick/jsoup-configuration

Скачать jsoup-configuration

Имя Файла Размер
jsoup-configuration-1.0.3.pom 5 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/io.shick.jsoup/jsoup-configuration/ -->
<dependency>
    <groupId>io.shick.jsoup</groupId>
    <artifactId>jsoup-configuration</artifactId>
    <version>1.0.3</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/io.shick.jsoup/jsoup-configuration/
implementation 'io.shick.jsoup:jsoup-configuration:1.0.3'
// https://jarcasting.com/artifacts/io.shick.jsoup/jsoup-configuration/
implementation ("io.shick.jsoup:jsoup-configuration:1.0.3")
'io.shick.jsoup:jsoup-configuration:pom:1.0.3'
<dependency org="io.shick.jsoup" name="jsoup-configuration" rev="1.0.3">
  <artifact name="jsoup-configuration" type="pom" />
</dependency>
@Grapes(
@Grab(group='io.shick.jsoup', module='jsoup-configuration', version='1.0.3')
)
libraryDependencies += "io.shick.jsoup" % "jsoup-configuration" % "1.0.3"
[io.shick.jsoup/jsoup-configuration "1.0.3"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

  • core
  • gson
  • jowli

jsoup-configuration

Maven Status Build Status Coverage Status Dependency Status License

This library was born from the need to externalize JSoup's HTML Whitelist. Deploying code for constant tweaks to the Whitelist's configuration was cumbersome. This library allows me to update the configuration outside the code (in JSON or JowliML).

Usage

Pick your flavor, using JSON or JowliML and include the appropriate dependency.

In pom.xml, add the following:

<dependency>
    <groupId>io.shick.jsoup</groupId>
    <artifactId>jsoup-configuration-gson</artifactId>
    <version>1.0.1</version>
</dependency>

Then in your Java code

// you can simply instantiate the parser
final Whitelist whitelist = new GsonParser().parse(json).whitelist();

// or you can get a parser by 'type', (either gson or jowli)
final Whitelist whitelist = WhitelistConfigurationParserFactory.newParser("gson").parse(json).whitelist();

// or you can append to an existing whitelist
final Whitelist whitelist = new GsonParser().parse(json).apply(Whitelist.basic());

// you can construct a new config and serialize it out too!
WhitelistConfiguration wlc = new BasicWhitelistConfiguration().enforceAttribute("a","rel","nofollow");

final String jowli = new JowliMLFormatter().format(wlc).toString();   //jowliml
final String json = new GsonFormatter().format(wlc).toString();       //json

Formats

JSON

{
  "base" : "basic", /* basic, basicwithimages, relaxed, none, or null */
  "tags" : ["a","b"],
  "attributes" : {
    "blockquote": ["cite"]
    },
  "enforcedAttributes": {
    "a" : {
      "rel" : "nofollow"
      }
    },
  "protocols" : {
    "a" : { 
      "href":["ftp", "http", "https", "mailto"]
      }
    }
}

JowliML

The point of JowliML is to provide a very terse representation of the whitelist rules. What you see below is the same as the above JSON but in a much more compact, externalized configuration friendly format.

(all on one line)
b:b;    /* note this can be b=basic, i=basicwithimages, n=none, r=relaxed */
t:a,b;
a:blockquote[cite],a[href,rel];
e:a[rel:nofollow];
p:a[href:[ftp,http,https,mailto]]

All directives are optional and additive. In the case of 'b', the last one wins. What? Basically...

t:a,b

is equivalent to :

t:a;t:b

LICENSE

MIT

Версии библиотеки

Версия
1.0.3
1.0.2
1.0.1