ACF Libraries: Difference between revisions

From Alpine Linux
m (Reverted edits by RuthHughes (talk) to last revision by Dubiousjim)
 
(76 intermediate revisions by 8 users not shown)
Line 3: Line 3:


Some of these are lua libs or ones written for ACF.
Some of these are lua libs or ones written for ACF.
We are also using as a standard the lposix library which is documented here [[LPOSIX]]


== ed.lua ==
== Generic Libraries (acf-lib) ==


== fs.lua ==
===[[apk.lua]]===
Used for various filespecific functions
Functions to load/unload apk packages
=== is_dir (function) ===
* delete - Deletes a package
'''INPUT:'''<BR>
* install - Installs a package
This library function required the following inputs/parameters.
* version - Checks a package's installed version
* Path to directory
** Example: /var/log/snort
'''OUTPUT:'''<BR>
This library function deliverers the following output/parameters.
* '''''nil''''' or "directory"
** If inputstring is a existing directory, the output is "directory" (not '''''nil''''')
'''CODING EXAMPLE:'''
-- Include/Call for this library
require("fs")
-- Check if url is a folder
liboutput = fs.is_dir("/var/log/snort")
If directory exist 'liboutput' would contain string:
directory
In directory is missing 'liboutput' would contain '''''nil''''' (nothing).
=== is_file (function) ===
'''INPUT:'''<BR>
This library function required the following inputs/parameters.
* Path to file
** Example: /var/log/messages
'''OUTPUT:'''<BR>
This library function deliverers the following output/parameters.
* '''''nil''''' or "file"
** If inputstring is a existing file, the output is "file" (not '''''nil''''')
'''CODING EXAMPLE:'''
-- Include/Call for this library
require("fs")
-- Check if url is a file
liboutput = fs.is_file("/var/log/messages")
If file exist 'liboutput' would contain string:
file
In file is missing 'liboutput' would contain '''''nil''''' (nothing).
=== read_file / read_file_as_array (function) ===
'''INPUT:'''<BR>
This library function required the following inputs/parameters.
* Path to file
** Example: /var/log/messages
'''OUTPUT:'''<BR>
This library function deliverers the following output/parameters.
* Filecontent
** The filecontent is presented as a string (output comes as a table if 'read_file_as_array' is used)
'''CODING EXAMPLE:'''
-- Include/Call for this library
require("fs")
-- Get filecontent
liboutput = fs.read_file("/var/log/messages")
'liboutput' could contain something like:
Nov  6 13:17:01 inspiron /USR/SBIN/CRON[21751]: (root) CMD (  cd / && run-parts --report /etc/cron.hourly)
Nov  6 13:43:31 inspiron -- MARK --
'''CODING EXAMPLE (read_file_as_array):'''<BR>
If 'read_file_as_array' is used, you could do something like this see the output:
for a,b in ipairs(liboutput) do print(a,b) end
The output would look something like:
1 Nov  6 13:17:01 inspiron /USR/SBIN/CRON[21751]: (root) CMD (  cd / && run-parts --report /etc/cron.hourly)
2 Nov  6 13:43:31 inspiron -- MARK --
=== write_file (function) ===
'''INPUT:'''<BR>
This library function required the following inputs/parameters.
* Path to file
** Example: /root/mynotes
* String
** Content that should be written to file
'''OUTPUT:'''<BR>
This library function deliverers the following output/parameters.
* Output is written to file
** The content of the inputstring is written to the file.
** <span style="color:red">Data is appended to file '''''(not sure)'''''</span>
'''CODING EXAMPLE:'''
-- Include/Call for this library
require("fs")
-- Write to file
fs.write_file("/var/log/messages", "Hello World!")
=== find (function) ===
Lets you search for dir entries matching filespec.<BR>
<span style="color:red">Could be compared to 'find / -type d | grep tmp' '''''(not sure)'''''</span><BR>
'''INPUT:'''<BR>
This library function required the following inputs/parameters.
* SearchString
** This string is what we are searching for in the dirnames.
* Path
** This path is where we start searching
** <span style="color:red">Search is recursive '''''(not sure)'''''</span>
'''OUTPUT:'''<BR>
This library function deliverers the following output/parameters.
* SearchResult
** The SearchResult as a table (array)
'''CODING EXAMPLE:'''
-- Include/Call for this library
require("fs")
-- Search for dir
liboutput = fs.find("tmp", "/")
You could do something like this see the output:
for a,b in ipairs(liboutput) do print(a,b) end
The output would look something like:
1 /usr/tmp
2 /usr/tmp/apk_add


== html.lua ==
===[[date.lua]]===
Date and time functions
To be used with os.time() and os.date()
*date_to_seconds - Takes a date table and converts it to seconds from 1970
*seconds_to_date - Takes table of seconds values and converts to a date sorted smallest to largest
*string_to_table
*date_diff - Takes two values of seconds and gives back the difference
*num_month_name - Month number to name of month
*num_month_name_abr - Month number to abr of month
*name_month_num - Month name to number
*abr_month_num - Month abbreviation to number
*num_dow_name - Day of Week number to name
*num_dow_name_abr - Day of week number to abbreviation
*name_dow_num - Day of Week full name to number
*abr_dow_num - Day of week abbreviation to number
*what_tz - Checks to see what timezone the box is set to; /etc/TZ
*change_tz - Changes the timezone
**Tables are included with this information
***Timezones
***Days of Week
***Months of the Year


== join.lua <span style="color:red">(not working)</span>==
===[[format.lua]]===
'''INPUT:'''<BR>
Used to format tables and strings
This library required the following inputs/parameters.
*dostounix - Converts DOS line endings to Unix
* Delimiter
*escapemagiccharacters - Escape Lua magic characters
** Could be one or more chars.
*escapespecialcharacters - Escape shell special characters
* Array
*parse_lines - Takes out the blank and commented lines
** Data which is to be joined into a string.
*parse_linesandwords - Removes blanks and comments, and parses each line for words
'''OUTPUT:'''<BR>
*parse_configfile - Parses a config file for name/value pairs
This library deliverers the following output/parameters.
*search_replace - Goes through a table of lines to search and replace
* String
*search_for_lines - Goes through a file or table of lines and returns a table of matching lines
** Could be something like "Word, Word, Word, Word"
*cap_begin_word - Capitalizes beginning of words
'''CODING EXAMPLE:'''
*string_to_table - Takes a delimited string and turns it into a table
-- Set variable/Call for this library
*expand_bash_syntax_vars - Takes a string and expands any ${...} constructs with the Lua variable
ourlib = require("join")
*replace_line - Removes the indicated line from a string and replaces it
-- Create a array of data <span style="color:red">(Not sure if the next row is correct)</span>
*insert_line - Inserts a new line at the indicated location in a string
arraytojoin = "Bird", "Fish", "Cow", "Hammer"
*get_line - Returns the specified line by number
-- Process the data (note the delimiter)
*opts_to_table - Searches an option string for separate options and puts them in a table
liboutput = ourlib(";", arraytojoin)
*table_to_opts - Goes through an options table and creates the option string
'liboutput' would contain:
*update_ini_file - Set a value in a particular ini section
Bird;Fish;Cow;Hammer
*parse_ini_file - Read a value / values from an ini file
*get_ini_section - Read an entire section from an ini file
*set_ini_section - Set an entire section in an ini file
*get_ini_entry - Get an entry value from an ini file, accounting for parent sections and variables


== log_view.lua ==
=== [[fs.lua]] ===
Used for various filesystem specific functions
*is_dir  - Test if the path is a directory
*is_file - Test if the path is a file
*is_link - Test if the path is a link
*create_directory - Creates a directory if it doesn't exist, including the parent dirs
*remove_directory - Deletes a directory along with its contents
*create_file - Creates a blank file (and the directory if necessary)
*copy_properties - Copies the permissions and ownership of one file to another
*copy_file - Copies a file to a directory or new filename (creating the directory if necessary)
*move_file - Moves a file to a directory or new filename (creating the directory if necessary)
*read_file / read_file_as_array - Reads a file as a string / array
*write_file - Replaces contents of a file
*write_line_file - Appends lines to a file
*find_files_as_array - Returns an array of files under "where" that match "what" (a Lua pattern)
*find - Give a path and a search string and iterate over matching files
*stat - Does almost the same as posix.stat, but instead it writes the output human readable


== menubuilder.lua ==
=== [[html.lua]] ===
Used to generate HTML code.
*cookie.set - Creates a cookie
*cookie.unset - Clears a cookie
*html_escape - Escapes HTML encoded strings
*entity - Outputs tags such as h1, h2, p, etc.
*link - Creates a link tag
*Form setup functions - Create form tags
**form.text
**form.longtext
**form.password
**form.hidden
**form.submit
**form.action
**form.file
**form.image
**form.select
**form.checkbox
**form.start
**form.stop


== service_controller.lua ==
=== [[processinfo.lua]] ===
Manages processes
*package_version - Returns the version of an apk package
*process_autostart - Returns a string describing run level of a process
*read_initrunlevels - Returns all processes in all run levels
*add_runlevels - Add a process to a list of run levels
*delete_runlevels - Remove a process from a list of run levels
*daemoncontrol - Start/Stop/Restart/... a process (calls /etc/init.d/service)
*pidof - Find the process ID of a running program


== service_model.lua ==
=== [[validator.lua]] ===
This contains multiple different functions that each will validate input in there own way.
*is_string - Tests if a variable is of type string
*is_boolean - Tests if a variable is of type boolean
*is_number - Tests if a variable is of type number
*is_ipv4 - Tests if this is a valid ipv4 address
*is_partial_ipv4 - Tests if this is part of a valid ipv4 address
*is_mac - Tests to see if this is a valid mac address
*is_integer - Tests to see if a string contains an integer
*is_integer_in_range - Tests to see if a string contains an integer in a given range
*is_port - Tests to see if a string contains an integer in the IP port range
*is_valid_filename - Tests to see if a string is a valid filename and (optionally) located in a specified path


== session.lua ==
== ACF-specific Libraries (acf-core) ==
===[[authenticator.lua]]===
Authentication module.  This module loads one sub-authenticator module and exposes its functionality via '''auth''' table.
* authenticate
* get_userinfo
* get_userinfo_roles
* list_users
* change_settings
* new_settings
* delete_user


== split.lua ==
===[[authenticator-plaintext.lua]]===
'''INPUT:'''<BR>
Authentication sub-module for plaintext database
This library required the following inputs/parameters.
* list_fields
* Delimiter
* read_field
** Could be one or more chars.
* delete_field
* String or line from a file: bobo~foo~bar~baz~1
* write_entry
** Data is to be split into a table
* read_entry
'''OUTPUT:'''<BR>
* delete_entry
This library deliverers the following output/parameters.
* Table
** { 1 = "bobo", 2 = "foo", 3 = "bar", 4 = "baz", 5 = 1}
'''CODING EXAMPLE:'''
-- Set variable/Call for this library
strsplit = require("split")
-- Grab the line from a file or input it into the funtcion
line = "bobo~foo~bar~baz~1"
-- Process the data (note the delimiter)
t = ourlib("~", line)
't' would contain: <BR>
{ 1 = "bobo", 2 = "foo", 3 = "bar", 4 = "baz", 5 = 1}
for a,b in ipairs(t) do print(a,b) end<BR>
1 bobo<BR>
2 foo<BR>
3 bar<BR>
4 baz<BR>
5 1<BR>


== validator.lua ==
===[[controllerfunctions.lua]]===
This contains multiple different functions that each will validate input in there own way.
Controller helper functions
=== is_ipv4 (function) ===
* handle_clientdata
'''INPUT:'''<BR>
* handle_form
This library function required the following inputs/parameters.
* handle_startstop
* String in form of ip address
** Example: 192.168.24.10
'''OUTPUT:'''<BR>
This library function deliverers the following output/parameters.
* '''''false''''' or "true"
'''CODING EXAMPLE:'''
-- Include/Call for this library
require("validator")
-- Check if url is a folder
liboutput = validator.is_ip("192.168.24.10")
If the string is a valid ip 'liboutput' would contain string:
true
If the string is missing or an invalid ip 'liboutput' would contain '''''false'''''.


===is_mac (function) ===
=== menubuilder.lua ===
'''INPUT:'''<BR>
Written by nangel for ACF
This library function required the following inputs/parameters.
*get_menuitems
* String in form of mac address
** Example: 00:ca:ba:de:00:12
'''OUTPUT:'''<BR>
This library function deliverers the following output/parameters.
* '''''false''''' or "true"
'''CODING EXAMPLE:'''
-- Include/Call for this library
require("validator")
-- Check if url is a folder
liboutput = validator.is_mac("00:ca:ba:de:00:12")
If the string is a valid mac address 'liboutput' would contain string:
true
If the string is missing or an invalid ip 'liboutput' would contain '''''false'''''.


===is_integer(function)===
=== [[modelfunctions.lua]] ===
'''INPUT:'''<BR>
*getenabled
This library function required the following inputs/parameters.
*startstop_service
* Number
*getstatus
** Example: 100
*getfiledetails
'''OUTPUT:'''<BR>
*setfiledetails
This library function deliverers the following output/parameters.
*validateselect
* '''''false''''' or "true"
*validatemulti
'''CODING EXAMPLE:'''
*write_file_with_audit
-- Include/Call for this library
require("validator")
-- Check if url is a folder
liboutput = validator.is_integer("100")
If the string is a valid ip 'liboutput' would contain string:
true
If the string is missing or an invalid ip 'liboutput' would contain '''''false'''''.


===is_integer_in_range===
=== [[roles.lua]] ===
===is_port===
*list_controllers
*get_controllers
*get_controllers_func
*get_controllers_view
*list_default_roles
*list_roles
*list_all_roles
*get_roles_perm
*get_role_perm
*delete_role
*set_role_perm


== web_elements.lua ==
=== [[session.lua]] ===
Used for various filespecific functions
Written by nangel for ACF.
*random_hash - will create a bash64-like hash from /dev/urandom
*hash_ip_addr - create a hash encoded ip address
*ip_addr_from_hash - take the hash encoded ip and give me the ip
*serialize - go through a table or set of tables and serialize
*save_session - save the session table
*load_session - load a saved session table
*unlink_session - delete a saved session table
*record_event - record an invalid login attempt
*count_events - check if there are too many invalid attempts
*expired_events - delete the expired invalid attempts and saved sessions


=== [[viewfunctions.lua]] ===
displayinfo - obsolete
displaymanagement - obsolete
*displayitem
*displayformitem
*displayform
*displaycommandresults


=== somefunction (function) ===
[[Category:ACF]] [[Category:Lua]]
'''INPUT:'''<BR>
This library function required the following inputs/parameters.
* ?
** ?
'''OUTPUT:'''<BR>
This library function deliverers the following output/parameters.
* ?
** ?
'''CODING EXAMPLE:'''
-- Include/Call for this library
require("fs")
-- Check ?
liboutput = fs.somefunction(?)
'liboutput' could contain:
?

Latest revision as of 12:30, 7 March 2016

ACF Libraries

Because of using lua, a very small language, the need arises to build everything from scratch. This can lead to some confusion, apprehension, or just feeling overwhelmed. Here is documentation on what we have now in the form of libraries and common functions. We hope to build some more and use this information to get the juices flowing in regard to ACF.

Some of these are lua libs or ones written for ACF. We are also using as a standard the lposix library which is documented here LPOSIX

Generic Libraries (acf-lib)

apk.lua

Functions to load/unload apk packages

  • delete - Deletes a package
  • install - Installs a package
  • version - Checks a package's installed version

date.lua

Date and time functions To be used with os.time() and os.date()

  • date_to_seconds - Takes a date table and converts it to seconds from 1970
  • seconds_to_date - Takes table of seconds values and converts to a date sorted smallest to largest
  • string_to_table
  • date_diff - Takes two values of seconds and gives back the difference
  • num_month_name - Month number to name of month
  • num_month_name_abr - Month number to abr of month
  • name_month_num - Month name to number
  • abr_month_num - Month abbreviation to number
  • num_dow_name - Day of Week number to name
  • num_dow_name_abr - Day of week number to abbreviation
  • name_dow_num - Day of Week full name to number
  • abr_dow_num - Day of week abbreviation to number
  • what_tz - Checks to see what timezone the box is set to; /etc/TZ
  • change_tz - Changes the timezone
    • Tables are included with this information
      • Timezones
      • Days of Week
      • Months of the Year

format.lua

Used to format tables and strings

  • dostounix - Converts DOS line endings to Unix
  • escapemagiccharacters - Escape Lua magic characters
  • escapespecialcharacters - Escape shell special characters
  • parse_lines - Takes out the blank and commented lines
  • parse_linesandwords - Removes blanks and comments, and parses each line for words
  • parse_configfile - Parses a config file for name/value pairs
  • search_replace - Goes through a table of lines to search and replace
  • search_for_lines - Goes through a file or table of lines and returns a table of matching lines
  • cap_begin_word - Capitalizes beginning of words
  • string_to_table - Takes a delimited string and turns it into a table
  • expand_bash_syntax_vars - Takes a string and expands any ${...} constructs with the Lua variable
  • replace_line - Removes the indicated line from a string and replaces it
  • insert_line - Inserts a new line at the indicated location in a string
  • get_line - Returns the specified line by number
  • opts_to_table - Searches an option string for separate options and puts them in a table
  • table_to_opts - Goes through an options table and creates the option string
  • update_ini_file - Set a value in a particular ini section
  • parse_ini_file - Read a value / values from an ini file
  • get_ini_section - Read an entire section from an ini file
  • set_ini_section - Set an entire section in an ini file
  • get_ini_entry - Get an entry value from an ini file, accounting for parent sections and variables

fs.lua

Used for various filesystem specific functions

  • is_dir - Test if the path is a directory
  • is_file - Test if the path is a file
  • is_link - Test if the path is a link
  • create_directory - Creates a directory if it doesn't exist, including the parent dirs
  • remove_directory - Deletes a directory along with its contents
  • create_file - Creates a blank file (and the directory if necessary)
  • copy_properties - Copies the permissions and ownership of one file to another
  • copy_file - Copies a file to a directory or new filename (creating the directory if necessary)
  • move_file - Moves a file to a directory or new filename (creating the directory if necessary)
  • read_file / read_file_as_array - Reads a file as a string / array
  • write_file - Replaces contents of a file
  • write_line_file - Appends lines to a file
  • find_files_as_array - Returns an array of files under "where" that match "what" (a Lua pattern)
  • find - Give a path and a search string and iterate over matching files
  • stat - Does almost the same as posix.stat, but instead it writes the output human readable

html.lua

Used to generate HTML code.

  • cookie.set - Creates a cookie
  • cookie.unset - Clears a cookie
  • html_escape - Escapes HTML encoded strings
  • entity - Outputs tags such as h1, h2, p, etc.
  • link - Creates a link tag
  • Form setup functions - Create form tags
    • form.text
    • form.longtext
    • form.password
    • form.hidden
    • form.submit
    • form.action
    • form.file
    • form.image
    • form.select
    • form.checkbox
    • form.start
    • form.stop

processinfo.lua

Manages processes

  • package_version - Returns the version of an apk package
  • process_autostart - Returns a string describing run level of a process
  • read_initrunlevels - Returns all processes in all run levels
  • add_runlevels - Add a process to a list of run levels
  • delete_runlevels - Remove a process from a list of run levels
  • daemoncontrol - Start/Stop/Restart/... a process (calls /etc/init.d/service)
  • pidof - Find the process ID of a running program

validator.lua

This contains multiple different functions that each will validate input in there own way.

  • is_string - Tests if a variable is of type string
  • is_boolean - Tests if a variable is of type boolean
  • is_number - Tests if a variable is of type number
  • is_ipv4 - Tests if this is a valid ipv4 address
  • is_partial_ipv4 - Tests if this is part of a valid ipv4 address
  • is_mac - Tests to see if this is a valid mac address
  • is_integer - Tests to see if a string contains an integer
  • is_integer_in_range - Tests to see if a string contains an integer in a given range
  • is_port - Tests to see if a string contains an integer in the IP port range
  • is_valid_filename - Tests to see if a string is a valid filename and (optionally) located in a specified path

ACF-specific Libraries (acf-core)

authenticator.lua

Authentication module. This module loads one sub-authenticator module and exposes its functionality via auth table.

  • authenticate
  • get_userinfo
  • get_userinfo_roles
  • list_users
  • change_settings
  • new_settings
  • delete_user

authenticator-plaintext.lua

Authentication sub-module for plaintext database

  • list_fields
  • read_field
  • delete_field
  • write_entry
  • read_entry
  • delete_entry

controllerfunctions.lua

Controller helper functions

  • handle_clientdata
  • handle_form
  • handle_startstop

menubuilder.lua

Written by nangel for ACF

  • get_menuitems

modelfunctions.lua

  • getenabled
  • startstop_service
  • getstatus
  • getfiledetails
  • setfiledetails
  • validateselect
  • validatemulti
  • write_file_with_audit

roles.lua

  • list_controllers
  • get_controllers
  • get_controllers_func
  • get_controllers_view
  • list_default_roles
  • list_roles
  • list_all_roles
  • get_roles_perm
  • get_role_perm
  • delete_role
  • set_role_perm

session.lua

Written by nangel for ACF.

  • random_hash - will create a bash64-like hash from /dev/urandom
  • hash_ip_addr - create a hash encoded ip address
  • ip_addr_from_hash - take the hash encoded ip and give me the ip
  • serialize - go through a table or set of tables and serialize
  • save_session - save the session table
  • load_session - load a saved session table
  • unlink_session - delete a saved session table
  • record_event - record an invalid login attempt
  • count_events - check if there are too many invalid attempts
  • expired_events - delete the expired invalid attempts and saved sessions

viewfunctions.lua

displayinfo - obsolete displaymanagement - obsolete

  • displayitem
  • displayformitem
  • displayform
  • displaycommandresults