mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
d671d1d45d
because WSL2 Docker set 755 file permissions instead of 644, this results to the error. Updated `Extension` class: replaced `pull()` with `fetch_and_reset_hard()` method. Updated `apply_and_restart()` function: replaced `ext.pull()` with `ext.fetch_and_reset_hard()` function.
90 lines
2.6 KiB
Python
90 lines
2.6 KiB
Python
import os
|
|
import sys
|
|
import traceback
|
|
|
|
import git
|
|
|
|
from modules import paths, shared
|
|
|
|
extensions = []
|
|
extensions_dir = os.path.join(paths.script_path, "extensions")
|
|
|
|
|
|
def active():
|
|
return [x for x in extensions if x.enabled]
|
|
|
|
|
|
class Extension:
|
|
def __init__(self, name, path, enabled=True):
|
|
self.name = name
|
|
self.path = path
|
|
self.enabled = enabled
|
|
self.status = ''
|
|
self.can_update = False
|
|
|
|
repo = None
|
|
try:
|
|
if os.path.exists(os.path.join(path, ".git")):
|
|
repo = git.Repo(path)
|
|
except Exception:
|
|
print(f"Error reading github repository info from {path}:", file=sys.stderr)
|
|
print(traceback.format_exc(), file=sys.stderr)
|
|
|
|
if repo is None or repo.bare:
|
|
self.remote = None
|
|
else:
|
|
try:
|
|
self.remote = next(repo.remote().urls, None)
|
|
self.status = 'unknown'
|
|
except Exception:
|
|
self.remote = None
|
|
|
|
def list_files(self, subdir, extension):
|
|
from modules import scripts
|
|
|
|
dirpath = os.path.join(self.path, subdir)
|
|
if not os.path.isdir(dirpath):
|
|
return []
|
|
|
|
res = []
|
|
for filename in sorted(os.listdir(dirpath)):
|
|
res.append(scripts.ScriptFile(self.path, filename, os.path.join(dirpath, filename)))
|
|
|
|
res = [x for x in res if os.path.splitext(x.path)[1].lower() == extension and os.path.isfile(x.path)]
|
|
|
|
return res
|
|
|
|
def check_updates(self):
|
|
repo = git.Repo(self.path)
|
|
for fetch in repo.remote().fetch("--dry-run"):
|
|
if fetch.flags != fetch.HEAD_UPTODATE:
|
|
self.can_update = True
|
|
self.status = "behind"
|
|
return
|
|
|
|
self.can_update = False
|
|
self.status = "latest"
|
|
|
|
def fetch_and_reset_hard(self):
|
|
repo = git.Repo(self.path)
|
|
# Fix: `error: Your local changes to the following files would be overwritten by merge`,
|
|
# because WSL2 Docker set 755 file permissions instead of 644, this results to the error.
|
|
repo.git.fetch('--all')
|
|
repo.git.reset('--hard', 'origin')
|
|
|
|
|
|
def list_extensions():
|
|
extensions.clear()
|
|
|
|
if not os.path.isdir(extensions_dir):
|
|
return
|
|
|
|
for dirname in sorted(os.listdir(extensions_dir)):
|
|
path = os.path.join(extensions_dir, dirname)
|
|
if not os.path.isdir(path):
|
|
continue
|
|
|
|
extension = Extension(name=dirname, path=path, enabled=dirname not in shared.opts.disabled_extensions)
|
|
extensions.append(extension)
|
|
|