Go to file
Elara ed99c7ce5f
ci/woodpecker/push/woodpecker Pipeline was successful Details
Add /install path
2024-02-19 20:19:53 -08:00
static Initial Commit 2024-01-19 20:11:18 -08:00
tmpls Initial Commit 2024-01-19 20:11:18 -08:00
.gitignore Initial Commit 2024-01-19 20:11:18 -08:00
.woodpecker.yml Initial Commit 2024-01-19 20:11:18 -08:00
LICENSE Initial Commit 2024-01-19 20:11:18 -08:00
README.md Initial Commit 2024-01-19 20:11:18 -08:00
api.go Initial Commit 2024-01-19 20:11:18 -08:00
badge.go Initial Commit 2024-01-19 20:11:18 -08:00
error.go Initial Commit 2024-01-19 20:11:18 -08:00
go.mod Update salix 2024-01-19 20:29:46 -08:00
go.sum Update salix 2024-01-19 20:29:46 -08:00
main.go Pull repos on startup 2024-01-19 20:26:04 -08:00
pkg.go Initial Commit 2024-01-19 20:11:18 -08:00
site.go Add /install path 2024-02-19 20:19:53 -08:00
webhook.go Initial Commit 2024-01-19 20:11:18 -08:00

README.md

lure-web

lure-web is a website for LURE and a web interface that lets users search and get information about LURE's packages.

LURE Web is powered by Salix and PicoCSS.

API

Search Packages

  • Endpoint: GET /api/search
  • Description: Search for packages based on specified search options.
  • Parameters:
    • None
  • Query Parameters:
    • sort (optional) - Sort the results by a specific attribute.
      • Possible values: "name", "version", "repo"
    • filter (optional) - Apply a filter to narrow down the search results.
      • Possible values: "inrepo", "arch"
    • fv (optional) - Filter value to be used based on the selected filter.
    • q (optional) - The search query string.
  • Response:
    • Content-Type: application/json
    • Body: List of translated packages based on search criteria.

Get Package Information

  • Endpoint: GET /api/pkg/:repo/:pkg
  • Description: Get detailed information about a specific package.
  • Parameters:
    • :repo - Repository name
    • :pkg - Package name
  • Response:
    • Content-Type: application/json
    • Body: Translated information about the specified package.

Get Package Script

  • Endpoint: GET /api/pkg/:repo/:pkg/script
  • Description: Get the script associated with a specific package.
  • Parameters:
    • :repo - Repository name
    • :pkg - Package name
  • Query Parameters:
    • highlight (optional) - If set to true, the script will be returned with syntax highlighting.
  • Response:
    • If highlight is true:
      • Content-Type: text/html
      • Body: Script with syntax highlighting in HTML format.
    • If highlight is not provided or set to "false":
      • Content-Type: text/x-shellscript
      • Body: Raw script content.

Language Translation

  • Header: Accept-Language
    • Use the Accept-Language header to specify the preferred language for response translations.
  • Query Parameter: lang
    • You can also include a lang query parameter instead of Accept-Language to specify the translation language.

Error Handling

  • Response:
    • Content-Type: application/json
    • Body: A JSON object with a single error string field containing an explanation of the error.