| 
									
										
										
										
											2024-05-20 11:12:03 +08:00
										 |  |  | # noqa: INP001 | 
					
						
							| 
									
										
										
										
											2024-05-23 03:22:38 +08:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											2024-05-20 11:12:03 +08:00
										 |  |  | import shutil | 
					
						
							|  |  |  | import subprocess | 
					
						
							|  |  |  | from sys import stderr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from hatchling.builders.hooks.plugin.interface import BuildHookInterface | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class CustomBuildHook(BuildHookInterface): | 
					
						
							|  |  |  |     def initialize(self, version, build_data): | 
					
						
							|  |  |  |         super().initialize(version, build_data) | 
					
						
							|  |  |  |         stderr.write(">>> Building Open Webui frontend\n") | 
					
						
							|  |  |  |         npm = shutil.which("npm") | 
					
						
							|  |  |  |         if npm is None: | 
					
						
							|  |  |  |             raise RuntimeError( | 
					
						
							|  |  |  |                 "NodeJS `npm` is required for building Open Webui but it was not found" | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         stderr.write("### npm install\n") | 
					
						
							|  |  |  |         subprocess.run([npm, "install"], check=True)  # noqa: S603 | 
					
						
							|  |  |  |         stderr.write("\n### npm run build\n") | 
					
						
							| 
									
										
										
										
											2024-05-26 15:49:30 +08:00
										 |  |  |         os.environ["APP_BUILD_HASH"] = version | 
					
						
							| 
									
										
										
										
											2024-05-20 11:12:03 +08:00
										 |  |  |         subprocess.run([npm, "run", "build"], check=True)  # noqa: S603 |