Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

iobroker.parser

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iobroker.parser

Proxy for WEB server.

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
45
decreased by-72.05%
Maintainers
1
Weekly downloads
 
Created
Source

Logo ioBroker parser adapter

NPM version Downloads Tests

NPM

This adapter allows to parse the data received via URL or in files with regular expressions.

Settings

Default poll interval

This value will be used, if no poll interval for the entry specified. The interval is in milliseconds and describes how often the link or file will be read.

Table

With plus button the new entries will be added to the table.

Table fields:

  • Name - is the state name and may not consist spaces.
  • URL or file name - is the URL link like https://darksky.net/forecast/48.1371,11.5754/si24/de for Munich weather.
  • RegEx - regular expression, how to extract data from link. There is a good service to test regula expressions: regex101. E.g. temp swip">(-?\d+)˚< for the lin above.
  • Role - one of the roles:
    • custom - user defines itself via *admin" the role
    • temperature - the value is temperature
    • value - the value is a number (e.g. dimmer)
    • blinds - the value is a blind position
    • switch - the value is switch position (true/false)
    • button - the value is a button
    • indicator - boolean indicator
  • Type - type of variable. One of boolean, number, string, json.
  • Unit - unit of the value. E.g. °C
  • Subs - substitute values. This value will be used if file or URL is not available.
  • Factor/Offset - calculated value = extracted value * factor + offset , to make immediately modifications of value. Used Only for numbers.
  • Interval - poll interval in ms. If not set or 0, so the default interval will be used.

Sample settings

NameURL or file nameRegExRoleTypeUnitInterval
temperatureMunichhttps://darksky.net/forecast/48.1371,11.5754/si24/detemp swip">(-?\d+)˚<temperaturenumber°C180000
forumRunninghttp://forum.iobroker.net/Forumindicatorboolean60000
cloudRunninghttps://iobroker.net/Privacy Noticeindicatorboolean60000
cpuTemperature/sys/devices/virtual/thermal/thermal_zone0/temp(.*)temperaturenumber°C30000

About Regular expressions

Regular expressions is a powerful tool to parse and extract the data from strings.

You can effectively check if some text is in the string or extract some text from the string into variable.

For boolean types it is enough to write simple RegEx. For numeric types you should mark the number with brackets - "()". E.g. to extract the number from The temperature is 5°C you should use " (\d+)" expression.

More about regex can be found here: https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Global_Objects/RegExp

Examples:

  • .at matches any three-character string ending with "at", including "hat", "cat", and "bat".
  • [hc]at matches "hat" and "cat".
  • [^b]at matches all strings matched by .at except "bat".
  • [^hc]at matches all strings matched by .at other than "hat" and "cat".
  • ^[hc]at matches "hat" and "cat", but only at the beginning of the string or line.
  • [hc]at$ matches "hat" and "cat", but only at the end of the string or line.
  • [.] matches any single character surrounded by "[" and "]" since the brackets are escaped, for example: "[a]" and "[b]".
  • s.* matches s followed by zero or more characters, for example: "s" and "saw" and "seed".
  • [hc]+at matches "hat", "cat", "hhat", "chat", "hcat", "cchchat", and so on, but not "at".
  • [hc]?at matches "hat", "cat", and "at".
  • [hc]*at matches "hat", "cat", "hhat", "chat", "hcat", "cchchat", "at", and so on.
  • cat|dog matches "cat" or "dog".
  • (\d+) - get the number from string
  • now (\w+) later - get the word between "now" and "later"

Most useful expressions

  • (-?\d+) get the number negative or positive

Quality codes

Values can have quality codes:

  • 0 - OK
  • 0x82 - The URL or file cannot be read.
  • 0x44 - Number or string value not found in the text

Changelog

0.0.1 (2017-01-16)

  • (bluefox) initial commit

Keywords

FAQs

Package last updated on 21 Jan 2017

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc