{"id":23695652,"url":"https://github.com/euro20179/aio-limas","last_synced_at":"2026-01-22T12:30:16.804Z","repository":{"id":253700463,"uuid":"844258499","full_name":"Euro20179/AIO-LIMAS","owner":"Euro20179","description":"The all in one media library management system","archived":false,"fork":false,"pushed_at":"2025-02-08T05:58:16.000Z","size":1248,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-08T06:27:22.039Z","etag":null,"topics":["anilist","anime","manga","media-manager","omdb","radarr","self-hosted","sonarr"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Euro20179.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-18T21:14:43.000Z","updated_at":"2025-02-08T05:58:19.000Z","dependencies_parsed_at":"2024-10-24T22:50:16.290Z","dependency_job_id":"7b4b69ac-5f91-48e1-b8e6-dfa8691362dc","html_url":"https://github.com/Euro20179/AIO-LIMAS","commit_stats":null,"previous_names":["euro20179/aio-limas"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Euro20179%2FAIO-LIMAS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Euro20179%2FAIO-LIMAS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Euro20179%2FAIO-LIMAS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Euro20179%2FAIO-LIMAS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Euro20179","download_url":"https://codeload.github.com/Euro20179/AIO-LIMAS/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239763653,"owners_count":19692812,"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","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":["anilist","anime","manga","media-manager","omdb","radarr","self-hosted","sonarr"],"created_at":"2024-12-30T05:55:51.407Z","updated_at":"2026-01-22T12:30:16.740Z","avatar_url":"https://github.com/Euro20179.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# The **A**ll **I**n **O**ne **Li**brary **Ma**gement **S**ystem\n\n### AIO LIMAS For short\n\n![entries](./readme-assets/entries.png)\n![graph](./readme-assets/graph.png)\n\n### The Point\n\nI made this program because i had a system for managing which shows/movies i had watched/planned,\n\nAnd I had another system for keeping track of how much I've spent on Manga, DVDS, and the like.\n\nI realized that I could make a program that combines both of these problems into one massive\ninventory management thingy\n\nFor some extra challenge, I also want to support as many media types as possible on as many\nformats as possible\n\nexample formats:\nxbox 360\ndigital\nblu ray\ndvd\n\nexample media types:\nMovie\nShow\nManga\nBook\nGame\nBoardGame\nSong\n\n### Running\n\n\u003e [!TIP]\nTo use the omdb provider, get an omdb key and export the OMDB_KEY variable\n\n\n\u003e [!NOTE]\nOnly tested on linux\n\n```bash\ngit clone https://github.com/euro20179/aio-limas\n\ncd aio-limas\n\ngo run .\n```\n\nA server and web ui will then be running on `localhost:8080`\n\n\n### Configuration\n\nBy default things are stored in `$AIO_DIR` which by default is `$XDG_DATA_HOME/aio-limas`\n\nFor sonarr/radarr integration, create a file called settings.json and add the following:\n```json\n{\n    \"SonarrKey\": \"\u003cYOUR SONARR API KEY\u003e\"\n    \"SonarrURL\": \"http://url-for-sonar:8989\",\n    \"RadarrKey\": \"\u003cYOUR RADARR API KEY\u003e\"\n    \"RadarrURL\": \"http://url-for-radarr:7878\"\n}\n```\n\n\n### Docs\nBasic api documentation can be found at `/docs`\n\nBasic user facing docs can be found at `/usage`\n\n### TODO\n\n- [x] enable/disable children/copies\n- [ ] steam account linking\n- [x] image media type\n    - [ ] when fetching metadata, use ai to generate a description of the image\n- [x] search by description\n- [x] disable ACCOUNT_NUMBER by default\n- [ ] documentation\n    - [x] webservice\n    - [ ] ui\n- [x] edit info/user/meta tables from ui\n    - [x] info\n    - [x] meta\n    - [x] ~user~ *decided against, as you can already edit everything anyway*\n- [x] calc mode\n- [x] proper search parser\n    - on the server there could be something that parses some language like:\n        - `rating \u003e 90 \u0026\u0026 (rating \u003c 95 || en_title ~ \"this is a neat title%\")`\n        - special syntax where `{...}` is left alone, and passed directly to sqlite as an expression\n            - eg: `{rating/ratingMax * 100} \u003e 90`\n        - `!` will negate the next thing\n            - if it prefixes an expression, it inverts the entire expression acting as a `not`\n            - if it prefixes an operator, it inverts the operator, eg `!\u003c` becomes `\u003e=`\n            - eg: `!(rating \u003e 90)` == `rating \u003c= 90` == `rating !\u003e 90`\n        - Any part that fails to parse, will be counted as `\u0026\u0026 en_title ~ \"\u003cwords\u003e\"`\n            eg: `this fails to parse` == `en_title ~ \"this fails to parse\"`,\n            eg2: `rating \u003e 90 \u0026\u0026 search%` == `rating \u003e 90 \u0026\u0026 en_title ~ \"search%\"`\n    - make a new api query-v3, the sole parameter is a query in the form of that language\n    - the server will try to parse it, if it fails to parse, it is treated as:\n    `en_title ~ \"\u003cthe query\u003e\"`\n    - [x] partial, support \u0026\u0026, ||, and various comparison operators, unordered\n- [ ] collection stat calculation modifier\n- [ ] requires\n     - an id that should be viewed before this entry\n     - eg: `starwars 2` requires `starwars 1`\n     - if an entry requires more than 1 entry, make a collection containing all the requirements\n- [x] In thee ui, in graph mode, allow the user to write a function of some kind to determine how the grouping will work, isntead of the predetermined year/item name/tags etc...\n    - the user's function should return a string for each item indicating which group it's in\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feuro20179%2Faio-limas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feuro20179%2Faio-limas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feuro20179%2Faio-limas/lists"}