| 
									
										
										
										
											2024-02-06 13:21:13 +08:00
										 |  |  | from flask_login import current_user | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | from flask_restful import Resource, fields, marshal_with, reqparse | 
					
						
							| 
									
										
										
										
											2024-02-06 13:21:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-01 18:11:57 +08:00
										 |  |  | from constants.languages import languages | 
					
						
							| 
									
										
										
										
											2023-05-25 15:54:45 +08:00
										 |  |  | from controllers.console import api | 
					
						
							|  |  |  | from controllers.console.wraps import account_initialization_required | 
					
						
							| 
									
										
										
										
											2024-01-12 12:34:01 +08:00
										 |  |  | from libs.login import login_required | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | from services.recommended_app_service import RecommendedAppService | 
					
						
							| 
									
										
										
										
											2023-05-25 15:54:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | app_fields = { | 
					
						
							|  |  |  |     'id': fields.String, | 
					
						
							|  |  |  |     'name': fields.String, | 
					
						
							|  |  |  |     'mode': fields.String, | 
					
						
							|  |  |  |     'icon': fields.String, | 
					
						
							|  |  |  |     'icon_background': fields.String | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | recommended_app_fields = { | 
					
						
							|  |  |  |     'app': fields.Nested(app_fields, attribute='app'), | 
					
						
							|  |  |  |     'app_id': fields.String, | 
					
						
							|  |  |  |     'description': fields.String(attribute='description'), | 
					
						
							|  |  |  |     'copyright': fields.String, | 
					
						
							|  |  |  |     'privacy_policy': fields.String, | 
					
						
							| 
									
										
										
										
											2024-05-18 04:52:48 +02:00
										 |  |  |     'custom_disclaimer': fields.String, | 
					
						
							| 
									
										
										
										
											2023-05-25 15:54:45 +08:00
										 |  |  |     'category': fields.String, | 
					
						
							|  |  |  |     'position': fields.Integer, | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     'is_listed': fields.Boolean | 
					
						
							| 
									
										
										
										
											2023-05-25 15:54:45 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | recommended_app_list_fields = { | 
					
						
							|  |  |  |     'recommended_apps': fields.List(fields.Nested(recommended_app_fields)), | 
					
						
							|  |  |  |     'categories': fields.List(fields.String) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class RecommendedAppListApi(Resource): | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     @marshal_with(recommended_app_list_fields) | 
					
						
							|  |  |  |     def get(self): | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |         # language args | 
					
						
							|  |  |  |         parser = reqparse.RequestParser() | 
					
						
							|  |  |  |         parser.add_argument('language', type=str, location='args') | 
					
						
							|  |  |  |         args = parser.parse_args() | 
					
						
							| 
									
										
										
										
											2023-05-25 18:53:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |         if args.get('language') and args.get('language') in languages: | 
					
						
							|  |  |  |             language_prefix = args.get('language') | 
					
						
							|  |  |  |         elif current_user and current_user.interface_language: | 
					
						
							|  |  |  |             language_prefix = current_user.interface_language | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             language_prefix = languages[0] | 
					
						
							| 
									
										
										
										
											2023-05-25 15:54:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |         return RecommendedAppService.get_recommended_apps_and_categories(language_prefix) | 
					
						
							| 
									
										
										
										
											2023-05-25 15:54:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class RecommendedAppApi(Resource): | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self, app_id): | 
					
						
							|  |  |  |         app_id = str(app_id) | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |         return RecommendedAppService.get_recommend_app_detail(app_id) | 
					
						
							| 
									
										
										
										
											2023-05-25 15:54:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | api.add_resource(RecommendedAppListApi, '/explore/apps') | 
					
						
							|  |  |  | api.add_resource(RecommendedAppApi, '/explore/apps/<uuid:app_id>') |