[PR #25] [MERGED] websocket upload notification - closed #24 #8439

Closed
opened 2026-02-05 13:47:12 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/25
Author: @alextran1502
Created: 2/14/2022
Status: Merged
Merged: 2/14/2022
Merged by: @alextran1502

Base: mainHead: dev/websocket-upload-notification


📝 Commits (8)

  • d34238a Init
  • d8bd400 add websocket gateway
  • 3384fdc create connection socket io
  • 9bce627 Added socket-io client to mobile app
  • 930e53e Succesfully receive message from websocket when new asset is uploaded
  • 4883d54 Implemented websocket on the server
  • 6d14b57 Render when new asset is uploaded from websocket notification
  • 504b635 Update Readme

📊 Changes

23 files changed (+11037 additions, -69 deletions)

View changed files

📝 Makefile (+4 -1)
📝 README.md (+7 -11)
📝 mobile/lib/main.dart (+10 -5)
📝 mobile/lib/modules/home/providers/asset.provider.dart (+10 -8)
📝 mobile/lib/modules/home/ui/profile_drawer.dart (+2 -0)
📝 mobile/lib/modules/home/views/home_page.dart (+3 -1)
mobile/lib/shared/providers/websocket.provider.dart (+113 -0)
📝 mobile/pubspec.lock (+14 -0)
📝 mobile/pubspec.yaml (+1 -0)
📝 server/docker-compose.yml (+4 -5)
📝 server/package-lock.json (+10715 -21)
📝 server/package.json (+3 -0)
📝 server/settings/nginx-conf/nginx.conf (+16 -1)
server/src/api-v1/communication/communication.gateway.ts (+47 -0)
server/src/api-v1/communication/communication.module.ts (+16 -0)
server/src/api-v1/communication/communication.service.ts (+4 -0)
📝 server/src/api-v1/user/user.service.ts (+1 -10)
📝 server/src/app.module.ts (+3 -0)
📝 server/src/main.ts (+4 -0)
server/src/middlewares/redis-io.adapter.middleware.ts (+15 -0)

...and 3 more files

📄 Description

closed #24


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/immich-app/immich/pull/25 **Author:** [@alextran1502](https://github.com/alextran1502) **Created:** 2/14/2022 **Status:** ✅ Merged **Merged:** 2/14/2022 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `dev/websocket-upload-notification` --- ### 📝 Commits (8) - [`d34238a`](https://github.com/immich-app/immich/commit/d34238aee11628ef8a3b8e20071e4124013ad013) Init - [`d8bd400`](https://github.com/immich-app/immich/commit/d8bd400c57322aa3287929555cfa9a3894f58820) add websocket gateway - [`3384fdc`](https://github.com/immich-app/immich/commit/3384fdcc6ca2119e1f18a82247178c6e9e43b369) create connection socket io - [`9bce627`](https://github.com/immich-app/immich/commit/9bce627c98fc3163cb6b7b5f2bf87a05dfa37aec) Added socket-io client to mobile app - [`930e53e`](https://github.com/immich-app/immich/commit/930e53eef2960dd1921b3648c7f701de4ffc7d89) Succesfully receive message from websocket when new asset is uploaded - [`4883d54`](https://github.com/immich-app/immich/commit/4883d548a7ba823413785e04d267cc277bbde2a9) Implemented websocket on the server - [`6d14b57`](https://github.com/immich-app/immich/commit/6d14b57fc9b25bb8c316ec59c2afb0404734898a) Render when new asset is uploaded from websocket notification - [`504b635`](https://github.com/immich-app/immich/commit/504b6354f1a24f206b2e0ab39cc25e0ed487f558) Update Readme ### 📊 Changes **23 files changed** (+11037 additions, -69 deletions) <details> <summary>View changed files</summary> 📝 `Makefile` (+4 -1) 📝 `README.md` (+7 -11) 📝 `mobile/lib/main.dart` (+10 -5) 📝 `mobile/lib/modules/home/providers/asset.provider.dart` (+10 -8) 📝 `mobile/lib/modules/home/ui/profile_drawer.dart` (+2 -0) 📝 `mobile/lib/modules/home/views/home_page.dart` (+3 -1) ➕ `mobile/lib/shared/providers/websocket.provider.dart` (+113 -0) 📝 `mobile/pubspec.lock` (+14 -0) 📝 `mobile/pubspec.yaml` (+1 -0) 📝 `server/docker-compose.yml` (+4 -5) 📝 `server/package-lock.json` (+10715 -21) 📝 `server/package.json` (+3 -0) 📝 `server/settings/nginx-conf/nginx.conf` (+16 -1) ➕ `server/src/api-v1/communication/communication.gateway.ts` (+47 -0) ➕ `server/src/api-v1/communication/communication.module.ts` (+16 -0) ➕ `server/src/api-v1/communication/communication.service.ts` (+4 -0) 📝 `server/src/api-v1/user/user.service.ts` (+1 -10) 📝 `server/src/app.module.ts` (+3 -0) 📝 `server/src/main.ts` (+4 -0) ➕ `server/src/middlewares/redis-io.adapter.middleware.ts` (+15 -0) _...and 3 more files_ </details> ### 📄 Description closed #24 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 13:47:12 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#8439