moved discord functionality into adapter
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
#+title: Task Log
|
||||
#+updated: [2026-03-31 Tue 16:03]
|
||||
#+startup: overview
|
||||
# Local Variables:
|
||||
# org-babel-python-command: "/home/user/proj/youdis/.venv/bin/python"
|
||||
# project-dir: "~/proj/youdis"
|
||||
# End:
|
||||
|
||||
* youdis v2 goals:
|
||||
1. Separate backend from frontend
|
||||
@@ -112,13 +116,67 @@ update the discord bot into a thin frontend that talks to the backend and verify
|
||||
- valid request path tested
|
||||
- busy or conflict behavior tested
|
||||
- failure path tested
|
||||
|
||||
4. add dotenv support to ease dev
|
||||
- os.getenv methods remain standard for prod/docker build
|
||||
- populate .env with dev env defaults
|
||||
|
||||
** evidence
|
||||
- commit:
|
||||
- tests:
|
||||
1. start backend: `python3 -m uvicorn youdis.main:app --host 127.0.0.1 --port 8000`
|
||||
2. create local env file: `cp .env.example .env`
|
||||
3. add `api_token` to `.env`
|
||||
4. start adapter: `python3 ./youdis.py`
|
||||
5. in discord, run `/youtube url:https://www.youtube.com/watch?v=dQw4w9WgXcQ`
|
||||
:out:
|
||||
#+begin_src shell
|
||||
(venv) user@paladin:~/proj/youdis$ python ./youdis.py
|
||||
Task exception was never retrieved
|
||||
future: <Task finished name='Task-43' coro=<Client._dispatch_interaction() done, defined at /home/user/proj/youdis/venv/lib/python3.10/site-packages/interactions/client/client.py:1773> exception=KeyError('youtube')>
|
||||
Traceback (most recent call last):
|
||||
File "/home/user/proj/youdis/venv/lib/python3.10/site-packages/interactions/client/client.py", line 1798, in _dispatch_interaction
|
||||
if ctx.command:
|
||||
File "/home/user/proj/youdis/venv/lib/python3.10/site-packages/interactions/models/internal/context.py", line 329, in command
|
||||
return self.client._interaction_lookup[self._command_name]
|
||||
KeyError: 'youtube'
|
||||
#+end_src
|
||||
:end:
|
||||
|
||||
#+end_:out:
|
||||
#+begin_src
|
||||
|
||||
6. confirm channel response says the job was submitted to backend
|
||||
7. confirm requester receives DM updates for accepted/running/completed or failed
|
||||
8. while first job is active, submit another `/youtube` and confirm busy behavior
|
||||
9. run `/status` and confirm it reflects current or last backend job
|
||||
10. run `/interrupt` as owner and confirm cancellation is surfaced via DM
|
||||
- datetime:
|
||||
|
||||
*** testing tests
|
||||
#+begin_src shell :dir ~/proj/youdis :results output verbatim
|
||||
source ./venv/bin/activate
|
||||
python3 -m uvicorn youdis.main:app --host 127.0.0.1 --port 8000
|
||||
#+end_src
|
||||
|
||||
#+begin_src shell :results output
|
||||
echo ok
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: ok
|
||||
|
||||
#+begin_src python :dir ~/proj/youdis :results output verbatim
|
||||
python ./youdis.py
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
|
||||
** notes
|
||||
- discord adapter is now a thin HTTP client of the backend; it no longer imports or configures yt-dlp
|
||||
- `YOUDIS_BACKEND_URL` controls which backend the adapter targets
|
||||
- progress updates are currently implemented by polling `/jobs/current` and DMing only when the summary changes
|
||||
- legacy auth/user-management commands were removed from the active adapter path and should be cleaned up formally in `2.0.3`
|
||||
- `.env` is now supported for local/dev convenience, while real environment variables still override it in prod/docker
|
||||
|
||||
* [ ] 2.0.3: remove deprecated discord-bot functionality (2)
|
||||
delete or retire legacy bot behaviors that no longer fit once the backend split is in place
|
||||
@@ -145,7 +203,7 @@ delete or retire legacy bot behaviors that no longer fit once the backend split
|
||||
|
||||
** notes
|
||||
|
||||
* [ ] 2.0.5: fix automation and build pipeline (3)
|
||||
* [ ] 2.0.4: fix automation and build pipeline (3)
|
||||
repair and simplify the build/update/deploy path so it matches the new backend-plus-frontend structure
|
||||
** pm notes
|
||||
- this should come after architecture and discord integration stabilize. no point polishing the pipeline for the wrong shape.
|
||||
|
||||
Reference in New Issue
Block a user