aboutsummaryrefslogtreecommitdiffstats
path: root/util
Commit message (Collapse)AuthorAgeFilesLines
* util.startup: Improved how .set_plugindir updates prosody.paths.plugins, ↵João Duarte2019-07-261-11/+27
| | | | package.path and package.cpath
* util.startup: .setup_plugindir now checks if the specified directory for ↵João Duarte2019-07-261-4/+4
| | | | custom plugins exists, and creates it if it doesn't
* util.startup: The .setup_plugindir function now correctly sets a ↵João Duarte2019-07-261-10/+16
| | | | default/specified path for custom plugins
* util.startup: Removed unnecessary if clause at startup.set_plugindirJoão Duarte2019-07-251-9/+7
|
* util.prosodyctl: Created the helper function get_path_custom_pluginsJoão Duarte2019-07-241-0/+9
|
* util.startup: Now it also loads default or configured paths to custom plugin ↵João Duarte2019-07-241-0/+12
| | | | directories and creates them
* util.prosodyctl: Removed the admin_operation commandJoão Duarte2019-07-241-22/+0
|
* util.prosodyctl: Added the show_module_configuration_help functionJoão Duarte2019-07-231-0/+11
|
* util.prosodyctl: Corrected indentation on my codeJoão Duarte2019-07-201-18/+18
|
* util.prosodyctl: Added help support to 'admin_operation'João Duarte2019-06-271-0/+5
|
* util.prosodyctl: Moved the 'admin_operation' function from prosodyctl to hereJoão Duarte2019-06-251-0/+17
|
* util.dependencies: Increase Lua version to warn about to 5.4Kim Alvefur2019-06-191-1/+1
| | | | | | No significant problems have been encountered with Lua 5.3 itself, so apart from some odd problems in LuaExpat it seems about time to declare it ready.
* Merge 0.11->trunkKim Alvefur2019-05-311-0/+6
|\
| * util.sql: Ignore if tables and indices already exist on creation (fixes #1064)Kim Alvefur2019-05-301-0/+6
| | | | | | | | | | | | Tested with SQLite3 3.16.2 and 3.27.2 and Postgres 11. MySQL does not support IF NOT EXISTS for indices so not handled here.
* | util.format: Handle integer formats the same way on Lua versions without ↵Kim Alvefur2019-05-301-2/+5
| | | | | | | | integer support
* | util.format: Handle formats expecting an integer in Lua 5.3+ (fixes #1371)Kim Alvefur2019-05-301-0/+6
| |
* | Merge 0.11->trunkKim Alvefur2019-05-261-1/+9
|\|
| * util.random: Throw different error for EOL conditionKim Alvefur2019-05-211-1/+5
| |
| * util.random: Coerce error to string (thanks waqas)Kim Alvefur2019-05-181-1/+1
| | | | | | | | | | In theory this could happen in an EOF condition, which should be impossible with a read from /dev/urandom.
| * util.random: Handle unlikely read errors from /dev/urandom (see #1313)Kim Alvefur2019-05-181-1/+5
| |
* | util.hashring: Implementation of hashring data structureMatthew Wild2019-05-131-0/+88
| |
* | Fix various spelling mistakes [codespell]Kim Alvefur2019-05-031-1/+1
| |
* | util.hmac: Expose hmac-sha-512 tooKim Alvefur2019-04-191-0/+1
| | | | | | | | All these are provided by util.hashes so why not?
* | util.hmac: Reflow codeKim Alvefur2019-04-191-3/+5
| |
* | Merge 0.11->trunkKim Alvefur2019-04-141-1/+1
|\|
| * util.ip: Add missing netmask for 192.168/16 range (fixes #1343)Kim Alvefur2019-04-141-1/+1
| |
* | util.session: Fix session id not include unauthed foreverKim Alvefur2019-04-031-1/+2
| |
* | util.queue: Update :items() to consistently use private data directlyMatthew Wild2019-03-261-5/+4
| | | | | | | | | | | | It will perform better this way, and we were accessing private variables already within the iterator. Replaces 3eea63a68e0f
* | Backed out changeset 3eea63a68e0fMatthew Wild2019-03-261-4/+5
| | | | | | | | Commit included intended changes to loggingmanager
* | util.stanza: Fix :top_tag() handling of namespaced attributesMatthew Wild2019-03-251-32/+30
| |
* | util.x509: Add function that extracts usable names from a certificateKim Alvefur2019-01-041-0/+28
| |
* | util.queue: Update :items() to consistently use private data directlyMatthew Wild2019-03-231-5/+4
| | | | | | | | | | It will perform better this way, and we were accessing private variables already within the iterator.
* | util.queue: Add 'consume()' convenience iteratorMatthew Wild2019-03-231-0/+3
| |
* | util.startup: Don't die if there are no config warnings to log (thanks buildbot)Matthew Wild2019-03-201-2/+4
| |
* | util.startup: Log configuration warnings at startupMatthew Wild2019-03-201-0/+6
| |
* | util.startup: Give function a more generic name so it can apply to all warningsMatthew Wild2019-03-201-3/+3
| |
* | util.serialization: Use util.hexKim Alvefur2019-03-171-9/+2
| |
* | util.serialization: Allow overriding table iteratorKim Alvefur2019-03-171-1/+6
| | | | | | | | | | | | | | Could be useful to eg swap it out with sorted_pairs to get a stable serialization. Default to next() wrapper to avoid metatable tricks from pairs().
* | util.serialization: Optimize handling of last table separatorKim Alvefur2019-03-171-7/+5
| | | | | | | | Fewer next() calls and a step towards allowing use of a different iterator.
* | Merge 0.11->trunkKim Alvefur2019-03-041-1/+10
|\|
| * util.pubsub: Validate node configuration on node creation (fixes #1328)Kim Alvefur2019-03-031-1/+10
| |
* | Merge 0.11->trunkKim Alvefur2019-01-281-8/+13
|\|
| * util.pubsub: Add support for requesting multiple specific items (needed for ↵Kim Alvefur2019-01-281-8/+13
| | | | | | | | #1305)
* | util.http: Fix decoding of uppercase URL encoded charsKim Alvefur2019-01-161-0/+1
| | | | | | | | Broken in 1af5106a2c34
* | util.prosodyctl: Allow passing path to Lua runtime to the start() functionKim Alvefur2019-01-101-3/+4
| | | | | | | | | | By default the shebang is used. Being able to override it is useful in cases where the shebang does not match the configured runtime.
* | Merge 0.11->trunkKim Alvefur2019-01-061-0/+3
|\|
| * util.startup: Always reload logging after config (fixes #1284)Kim Alvefur2019-01-061-0/+3
| | | | | | | | | | This chancged in 6e24a69b03af likely because of confusion about the `reopen-log-files` event which was fired but never hooked.
* | util.http: Pre-generate urlencoding mappings (optimization)Kim Alvefur2019-01-061-10/+11
| | | | | | | | Function calls are more expensive than table lookups
* | util.error: Add a function for creating an error object from an error stanzaKim Alvefur2018-12-301-0/+12
| |
* | util.error: Add new util library for structured errorsMatthew Wild2018-12-301-0/+40
| |