{"id":24423186,"url":"https://github.com/webability-go/xmodules","last_synced_at":"2025-09-02T12:44:24.123Z","repository":{"id":36708859,"uuid":"227898272","full_name":"webability-go/xmodules","owner":"webability-go","description":"All purpose modules for Xamboo","archived":false,"fork":false,"pushed_at":"2024-04-11T23:38:08.000Z","size":4962,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-13T14:27:20.743Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/webability-go.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-12-13T18:20:51.000Z","updated_at":"2022-06-09T22:22:45.000Z","dependencies_parsed_at":"2022-09-16T14:10:32.617Z","dependency_job_id":null,"html_url":"https://github.com/webability-go/xmodules","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/webability-go/xmodules","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webability-go%2Fxmodules","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webability-go%2Fxmodules/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webability-go%2Fxmodules/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webability-go%2Fxmodules/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/webability-go","download_url":"https://codeload.github.com/webability-go/xmodules/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webability-go%2Fxmodules/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273287563,"owners_count":25078570,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-02T02:00:09.530Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-20T10:17:07.440Z","updated_at":"2025-09-02T12:44:24.064Z","avatar_url":"https://github.com/webability-go.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# xmodules\n\nStandard modules for Xamboo external loadable application.\nAll modules must be thread-safe.\n\nThe released modules are actually:\n\n- base: is used to control datasources and modules into each of ones. It contains a specific set of pointers to caches, databases, logs, config files, etc. so you will use the correct set of data and tables on the correct site.\n\nimport \"github.com/webability-go/xmodules/base\"\n\n\n- tools: is used to give some basic tools for keys, passwords, uuid, md5.\n\nimport \"github.com/webability-go/xmodules/tools\"\n\n\n- stat: tables to keep stats of use of anything, from site hits to IOT events.\n\nimport \"github.com/webability-go/xmodules/stat\"\nneeds: \"github.com/webability-go/xmodules/base\"\n\n\n- user: tables to keep all the administration users of the system, with complex profiles and access rights on the sessions\n\nimport \"github.com/webability-go/xmodules/user\"\nneeds: \"github.com/webability-go/xmodules/base\"\n\n\n- userlink: tables to keep basic data of administration users (primary key, status, name, email) from a distant controller node that have loaded complete xmodules/user\n\nimport \"github.com/webability-go/xmodules/userlink\"\nneeds: \"github.com/webability-go/xmodules/base\"\n\n\n- translation: a set of translation tables to keep translated words of anything, from database field to files. It supports all the known languages in UTF8.\n\nimport \"github.com/webability-go/xmodules/translation\"\nneeds: \"github.com/webability-go/xmodules/base\"\nneeds: \"github.com/webability-go/xmodules/user\" or \"github.com/webability-go/xmodules/userlink\"\n\n\n- country: is the list of ISO official countries ready to use in a database.\n\nimport \"github.com/webability-go/xmodules/country\"\nneeds: \"github.com/webability-go/xmodules/base\"\nneeds: \"github.com/webability-go/xmodules/translation\"\n\n\n- metric: a full set of units to count things and convert between them.\n\nimport \"github.com/webability-go/xmodules/metric\"\n\n\n- usda: the official USDA tables for nutrients to calculate recipes.\n\nimport \"github.com/webability-go/xmodules/usda\"\n\n\n- ingredient: tables to manage ingredients for food and recipes.\n\nimport \"github.com/webability-go/xmodules/ingredient\"\n\n\n- material: tables to manage materials for recipes, do it yourself, and any type of things you can build.\n\nimport \"github.com/webability-go/xmodules/material\"\n\nv2022-12-02:\n- base\u003emodule\u003eGetEntries now accept a logger parameter, to log the possible errors, instead of the full context (unnecessary)\n\n\nv2022-07-04:\n- Client module has been separated as a xamboo module\n\nv2022-06-09:\n- Go 1.17 and Xamboo 1.6 compatibility: Now uses embed FS, languages, and functions entry table, not anymore a bridge\n\nv2021-03-12:\n- Go 1.16.1 compatibility: modified global variables assignment to be sure they are set correctly, now into init()\n\nv2021-02-16:\n- All the modules have been changed to meet new Xamboo applications interfaces\n\nv2021-01-25:\n- base, user, adminmenu and useradmin support now transactions to setup the modules.\n- Errors control and messages enhanced during the installation of the modules.\n- Separation of basic installation functions into the xmodules/base/installation.go\n\nv2021-01-20:\n- All the modules: enhancement to meet the new main structures and mmodules definition for Xamboo (use of datasource interface, use of bridge and assets modules entries)\n\nv2020-05-25:\n- user: the main admin password is now md5 encrypted\n\nv2020-05-25:\n- Change on all modules to meet new modules standard for Xamboo 1.3 (Datasources, instead of Contexts (wrong nomination), Modules new function StartContext, assets.Datasource interface.)\n- The Xamboo server now controls the standard interfaces for XModules, Applications, Datasources, etc.\n- Context module renamed to Base\n\nv0.0.7:\n- Modules homologation and Contexts homologation for use with Xamboo\n\nv0.0.3:\n- Added tools xmodule for basic functions\n- user xmodule enhanced to log-in/log-out and controls session of a user\n\nv0.0.2:\n- Now uses xcore/v2\n\n\n\n\nModules soon available: (working on them)\n------------------------------------------\n\n\n- client: is a set of clients that can connect to the system with basic metadata, social source and basic data\n\nimport \"github.com/webability-go/xmodules/client\"\n\n\n- clientremote: is a table to link clients PK/FKs but from a distant client set of tables in another database/server\n\nimport \"github.com/webability-go/xmodules/clientremote\"\n\n\n- clientsecurity: is a set of access tables to build a solid set of access rights, profiles, atomic rights, etc.\n\nimport \"github.com/webability-go/xmodules/clientsecurity\"\n\n\n- clientp18n: personalization for clients, to add any type of connected data to the clients, from colors to navigation and AI resolutions.\n\nimport \"github.com/webability-go/xmodules/clientp18n\"\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebability-go%2Fxmodules","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebability-go%2Fxmodules","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebability-go%2Fxmodules/lists"}