Commit Graph

69 Commits

Author SHA1 Message Date
masoodafar-web
e0c2c12ba8 Add dockerignore and optimize Dockerfile build process 2025-12-06 19:47:33 +03:30
masoud
bba48c3766 Add all Protobuf projects to Dockerfile 2025-12-06 16:12:51 +00:00
masoodafar-web
41e95dcaee Fix: update NuGet.config path in Dockerfile restore command 2025-12-06 19:38:33 +03:30
masoodafar-web
ec72398f58 Fix: update NuGet.config path in Dockerfile restore 2025-12-06 19:37:58 +03:30
masoodafar-web
7f38572272 Fix: add Release config to Dockerfile restore 2025-12-06 19:28:10 +03:30
masoodafar-web
769c70e399 Remove NuGet.config from Dockerfile restore command 2025-12-06 19:23:30 +03:30
masoud
84f9463404 Fix: Use standard VS Dockerfile pattern with correct build context 2025-12-06 15:15:56 +00:00
masoud
d9014b0546 Fix Dockerfile: correct paths after COPY ../ 2025-12-06 15:11:37 +00:00
masoud
effb7649a8 Simplify Dockerfile: copy all from src/ parent dir 2025-12-06 15:09:07 +00:00
masoud
3fbb5c6ee1 Move Dockerfile & NuGet.config to WebApi directory, update workflow 2025-12-06 15:06:18 +00:00
masoud
5bcb483bd5 Update Dockerfile: add proxy env vars and copy NuGet.config 2025-12-06 14:59:39 +00:00
masoud
b31980a03b Add NuGet.config for private package sources 2025-12-06 14:48:56 +00:00
masoud
21f42366c0 Fix: move workflow to .gitea/workflows/ (Gitea standard) 2025-12-06 14:34:02 +00:00
masoud
7073b18b94 Add Docker CLI installation step to workflow 2025-12-06 14:20:03 +00:00
masoud
75deda5d74 Simplify Dockerfile: copy all src at once 2025-12-06 14:12:52 +00:00
masoud
be8d8c26fa Fix workflow: use DinD instead of docker:latest 2025-12-06 14:03:36 +00:00
masoud
d606615206 Update Dockerfile with 7 new Protobuf projects (23 total) 2025-12-06 13:45:18 +00:00
masoodafar-web
b229a3f0b6 refactor: Update protobuf namespaces and remove unused imports 2025-12-06 16:42:15 +03:30
masoodafar-web
ba38e4ac22 Merge remote-tracking branch 'kub-stage/kub-stage' into kub-stage 2025-12-06 14:28:26 +03:30
masoodafar-web
5f1f59dd20 Merge branch 'main' into kub-stage 2025-12-06 14:27:42 +03:30
masoodafar-web
2ef27663a0 feat: Update protobuf namespaces and package versions 2025-12-06 14:25:02 +03:30
masoud
6e00a07936 Add all 16 Protobuf projects to Dockerfile 2025-12-05 22:17:37 +00:00
masoud
e57c916bc6 Trigger rebuild 2025-12-05 22:16:25 +00:00
masoodafar-web
09fc0d85af feat: Add discount module with protobuf definitions and gRPC services 2025-12-06 01:39:22 +03:30
masoud
5b6649c06a Fix Dockerfile: add Protobuf projects 2025-12-05 22:00:12 +00:00
masoud
6f7b1ab447 Update Program.cs to read Seq config from appsettings.json 2025-12-05 21:53:03 +00:00
masoud
74910c01aa Add Kubernetes deployment: Dockerfile, CI/CD workflow, Seq logging 2025-12-05 21:48:36 +00:00
masoud
5e7e007b61 Add Kubernetes CI/CD pipeline for kub-stage 2025-12-05 16:25:14 +00:00
masoodafar-web
4aa9f28f6e feat: Implement user permission checks and manual payment functionalities
- Added CheckUserPermissionQuery and CheckUserPermissionQueryHandler for permission validation.
- Introduced GetUserRolesQuery and GetUserRolesQueryHandler to retrieve user roles.
- Created IPermissionService interface and its implementation in PermissionService.
- Defined permission and role constants in PermissionDefinitions.
- Developed SetDefaultVatPercentageCommand and its handler for VAT configuration.
- Implemented GetCurrentVatPercentageQuery and handler to fetch current VAT settings.
- Added manual payment commands: CreateManualPayment, ApproveManualPayment, and RejectManualPayment with respective handlers and validators.
- Created GetManualPaymentsQuery and handler for retrieving manual payment records.
- Integrated gRPC services for manual payments with appropriate permission checks.
- Established Protobuf definitions for manual payment operations and metadata.
2025-12-05 17:27:38 +03:30
masoodafar-web
67b43fea7a feat: Implement Cancel Order functionality with command, handler, and validation 2025-12-04 19:53:21 +03:30
masoodafar-web
82319285bc feat: Implement Public Message management features including create, update, delete, and publish functionalities 2025-12-04 17:29:05 +03:30
masoodafar-web
64b6f34185 refactor: Update protobuf references in CalculateOrderPV 2025-12-04 04:51:49 +03:30
masoodafar-web
4b6f8187e5 feat: Implement User Package Status and User Order Management features
- Added GetUserPackageStatus functionality with mapping and service implementation.
- Introduced UserOrder service methods for updating order status, applying discounts, and calculating order PV.
- Created Protobuf definitions for public messages and user orders, including necessary request and response messages.
- Implemented mapping profiles for package and user order related queries and commands.
- Developed query handlers and validators for new commands and queries in the application layer.
- Established PublicMessage service for handling public messages with appropriate gRPC endpoints.
2025-12-04 03:43:28 +03:30
masoodafar-web
256b41fcb5 feat: Add bulk update functionalities for product prices and stock, along with low stock query support 2025-12-04 02:56:07 +03:30
masoodafar-web
4f400eabc5 feat: Implement Discount Product and Shopping Cart functionalities
- Added UpdateDiscountProductCommandValidator for validating discount product updates.
- Created GetDiscountProductByIdQuery and its handler for retrieving discount product details by ID.
- Implemented GetDiscountProductsQuery and handler for fetching a list of discount products with filtering options.
- Developed AddToCartCommand and handler for adding products to the shopping cart.
- Implemented ClearCartCommand and handler for clearing the shopping cart.
- Created RemoveFromCartCommand and handler for removing items from the cart.
- Added UpdateCartItemCountCommand and handler for updating the quantity of items in the cart.
- Developed GetUserCartQuery and handler for retrieving the user's shopping cart details.
- Implemented Product Tag functionalities including assigning tags to products, creating, updating, and deleting tags.
- Added queries for fetching all tags and products by tag.
2025-12-04 02:41:19 +03:30
masoodafar-web
c9dab944fa update 2025-12-02 03:32:26 +03:30
masoodafar-web
6cd29e8b26 Add services for club and network membership management 2025-11-30 23:41:11 +03:30
masoodafar-web
bfeb6456af Add response DTOs for withdrawal and club activation commands 2025-11-30 23:39:31 +03:30
masoodafar-web
698c044be6 Update payment status to enum and refactor update order handler 2025-11-28 04:03:12 +03:30
masoodafar-web
067fe6cc0e Update payment status type to PaymentMethod enum 2025-11-28 02:18:04 +03:30
masoodafar-web
5e284acebc Add protobuf reference and update user order query response type 2025-11-28 01:37:48 +03:30
masoodafar-web
e7414cd814 Refactor: rename Price to Amount and update protobuf enums 2025-11-28 01:14:10 +03:30
masoodafar-web
92d25f3b2c Update payment status handling and add local config comment 2025-11-27 23:24:56 +03:30
masoodafar-web
edd3fec5e3 Add empty filter validation for user order queries 2025-11-27 22:06:28 +03:30
masoodafar-web
509b1e354a Add payment status to boolean mapping for protobuf 2025-11-27 19:17:17 +03:30
masoodafar-web
d0ac683094 Update protobuf package versions for products and user order services 2025-11-27 19:10:44 +03:30
masoodafar-web
10035b328b Add payment method and delivery status filters to user order queries 2025-11-27 18:59:22 +03:30
masoodafar-web
ebd48c02a5 Add delivery status and tracking details to user order 2025-11-27 18:36:36 +03:30
masoodafar-web
3e5f8348c2 Add category IDs support to product DTOs and protobuf 2025-11-27 05:43:01 +03:30
masoodafar-web
8878c07031 Add category products query and update endpoints 2025-11-27 04:58:09 +03:30