├── .github └── workflows │ ├── aws.yml │ ├── azure-webapps-node.yml │ ├── blank.yml │ ├── codeql.yml │ └── google.yml ├── .gitlab-ci.yml ├── .whitesource ├── AI └── Models │ ├── AdvancedProductRecommender.php │ ├── InventoryPredictor.php │ └── ProductRecommender.php ├── AR ├── AdvancedProductVisualization.js ├── ProductVisualization.js └── ProductVisualizationController.php ├── Analytics ├── AdvancedAnalyticsService.php └── AnalyticsController.php ├── Chatbot ├── AdvancedChatbotService.php ├── ChatbotController.php └── ChatbotService.php ├── Inventory └── RealtimeInventoryManager.php ├── LICENSE.md ├── Locale ├── AdvancedLocaleService.php ├── LocaleController.php └── LocaleService.php ├── README.md ├── Security ├── AdvancedTwoFactorAuthService.php ├── TwoFactorAuthController.php └── TwoFactorAuthService.php ├── SocialMedia ├── AdvancedSocialMediaService.php ├── SocialMediaController.php └── SocialMediaService.php └── app ├── Service ├── AI │ └── product_recommender.py ├── Analytics │ └── analytics.py ├── Chatbot │ └── chatbot.py ├── CustomerSegmentation │ └── customer_segmentation.py ├── Inventory │ └── InventoryManager.php ├── Language │ └── LanguageService.php ├── Payment │ └── PaymentService.php └── SocialMedia │ └── SocialMediaService.php ├── __init__.py ├── admin ├── order_manager.py ├── product_manager.py └── user_manager.py ├── api ├── orders_api.py ├── products_api.py └── users_api.py ├── models ├── order_model.py ├── product_model.py └── user_model.py ├── static ├── css │ └── product.css └── js │ └── product.js ├── templates ├── order_detail.html ├── order_list.html ├── product_detail.html ├── product_list.html ├── user_detail.html └── user_list.html └── views ├── order_views.py ├── product_views.py └── user_views.py /.github/workflows/aws.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/.github/workflows/aws.yml -------------------------------------------------------------------------------- /.github/workflows/azure-webapps-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/.github/workflows/azure-webapps-node.yml -------------------------------------------------------------------------------- /.github/workflows/blank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/.github/workflows/blank.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/google.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/.github/workflows/google.yml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/.whitesource -------------------------------------------------------------------------------- /AI/Models/AdvancedProductRecommender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/AI/Models/AdvancedProductRecommender.php -------------------------------------------------------------------------------- /AI/Models/InventoryPredictor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/AI/Models/InventoryPredictor.php -------------------------------------------------------------------------------- /AI/Models/ProductRecommender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/AI/Models/ProductRecommender.php -------------------------------------------------------------------------------- /AR/AdvancedProductVisualization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/AR/AdvancedProductVisualization.js -------------------------------------------------------------------------------- /AR/ProductVisualization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/AR/ProductVisualization.js -------------------------------------------------------------------------------- /AR/ProductVisualizationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/AR/ProductVisualizationController.php -------------------------------------------------------------------------------- /Analytics/AdvancedAnalyticsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/Analytics/AdvancedAnalyticsService.php -------------------------------------------------------------------------------- /Analytics/AnalyticsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/Analytics/AnalyticsController.php -------------------------------------------------------------------------------- /Chatbot/AdvancedChatbotService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/Chatbot/AdvancedChatbotService.php -------------------------------------------------------------------------------- /Chatbot/ChatbotController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/Chatbot/ChatbotController.php -------------------------------------------------------------------------------- /Chatbot/ChatbotService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/Chatbot/ChatbotService.php -------------------------------------------------------------------------------- /Inventory/RealtimeInventoryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/Inventory/RealtimeInventoryManager.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Locale/AdvancedLocaleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/Locale/AdvancedLocaleService.php -------------------------------------------------------------------------------- /Locale/LocaleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/Locale/LocaleController.php -------------------------------------------------------------------------------- /Locale/LocaleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/Locale/LocaleService.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/README.md -------------------------------------------------------------------------------- /Security/AdvancedTwoFactorAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/Security/AdvancedTwoFactorAuthService.php -------------------------------------------------------------------------------- /Security/TwoFactorAuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/Security/TwoFactorAuthController.php -------------------------------------------------------------------------------- /Security/TwoFactorAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/Security/TwoFactorAuthService.php -------------------------------------------------------------------------------- /SocialMedia/AdvancedSocialMediaService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/SocialMedia/AdvancedSocialMediaService.php -------------------------------------------------------------------------------- /SocialMedia/SocialMediaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/SocialMedia/SocialMediaController.php -------------------------------------------------------------------------------- /SocialMedia/SocialMediaService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/SocialMedia/SocialMediaService.php -------------------------------------------------------------------------------- /app/Service/AI/product_recommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/Service/AI/product_recommender.py -------------------------------------------------------------------------------- /app/Service/Analytics/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/Service/Analytics/analytics.py -------------------------------------------------------------------------------- /app/Service/Chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/Service/Chatbot/chatbot.py -------------------------------------------------------------------------------- /app/Service/CustomerSegmentation/customer_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/Service/CustomerSegmentation/customer_segmentation.py -------------------------------------------------------------------------------- /app/Service/Inventory/InventoryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/Service/Inventory/InventoryManager.php -------------------------------------------------------------------------------- /app/Service/Language/LanguageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/Service/Language/LanguageService.php -------------------------------------------------------------------------------- /app/Service/Payment/PaymentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/Service/Payment/PaymentService.php -------------------------------------------------------------------------------- /app/Service/SocialMedia/SocialMediaService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/Service/SocialMedia/SocialMediaService.php -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/admin/order_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/admin/order_manager.py -------------------------------------------------------------------------------- /app/admin/product_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/admin/product_manager.py -------------------------------------------------------------------------------- /app/admin/user_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/admin/user_manager.py -------------------------------------------------------------------------------- /app/api/orders_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/api/orders_api.py -------------------------------------------------------------------------------- /app/api/products_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/api/products_api.py -------------------------------------------------------------------------------- /app/api/users_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/api/users_api.py -------------------------------------------------------------------------------- /app/models/order_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/models/order_model.py -------------------------------------------------------------------------------- /app/models/product_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/models/product_model.py -------------------------------------------------------------------------------- /app/models/user_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/models/user_model.py -------------------------------------------------------------------------------- /app/static/css/product.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/static/css/product.css -------------------------------------------------------------------------------- /app/static/js/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/static/js/product.js -------------------------------------------------------------------------------- /app/templates/order_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/templates/order_detail.html -------------------------------------------------------------------------------- /app/templates/order_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/templates/order_list.html -------------------------------------------------------------------------------- /app/templates/product_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/templates/product_detail.html -------------------------------------------------------------------------------- /app/templates/product_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/templates/product_list.html -------------------------------------------------------------------------------- /app/templates/user_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/templates/user_detail.html -------------------------------------------------------------------------------- /app/templates/user_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/templates/user_list.html -------------------------------------------------------------------------------- /app/views/order_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/views/order_views.py -------------------------------------------------------------------------------- /app/views/product_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/views/product_views.py -------------------------------------------------------------------------------- /app/views/user_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/shop-online/HEAD/app/views/user_views.py --------------------------------------------------------------------------------