mirror of
				https://github.com/simon987/sist2.git
				synced 2025-10-30 23:46:52 +00:00 
			
		
		
		
	Compare commits
	
		
			No commits in common. "aff69fb3eb0abf3103428118cd4795f07e1b24a5" and "2307fc6e15249f4755222d4e156333068a365d0a" have entirely different histories.
		
	
	
		
			aff69fb3eb
			...
			2307fc6e15
		
	
		
| @ -1,66 +1,59 @@ | ||||
| <template> | ||||
|   <div> | ||||
|     <h4>{{ $t("webOptions.title") }}</h4> | ||||
|     <b-card> | ||||
|       <label>{{ $t("webOptions.lang") }}</label> | ||||
|       <b-form-select v-model="options.lang" :options="['en', 'fr', 'zh-CN', 'pl', 'de']" | ||||
|                      @change="update()"></b-form-select> | ||||
|     <div> | ||||
|         <h4>{{ $t("webOptions.title") }}</h4> | ||||
|         <b-card> | ||||
|             <label>{{ $t("webOptions.lang") }}</label> | ||||
|             <b-form-select v-model="options.lang" :options="['en', 'fr', 'zh-CN', 'pl', 'de']" | ||||
|                            @change="update()"></b-form-select> | ||||
| 
 | ||||
|       <label>{{ $t("webOptions.bind") }}</label> | ||||
|       <b-form-input v-model="options.bind" @change="update()"></b-form-input> | ||||
|             <label>{{ $t("webOptions.bind") }}</label> | ||||
|             <b-form-input v-model="options.bind" @change="update()"></b-form-input> | ||||
| 
 | ||||
|       <label>{{ $t("webOptions.tagline") }}</label> | ||||
|       <b-form-textarea v-model="options.tagline" @change="update()"></b-form-textarea> | ||||
|             <label>{{ $t("webOptions.tagline") }}</label> | ||||
|             <b-form-textarea v-model="options.tagline" @change="update()"></b-form-textarea> | ||||
| 
 | ||||
|       <label>{{ $t("webOptions.auth") }}</label> | ||||
|       <b-form-input v-model="options.auth" @change="update()"></b-form-input> | ||||
|             <label>{{ $t("webOptions.auth") }}</label> | ||||
|             <b-form-input v-model="options.auth" @change="update()"></b-form-input> | ||||
| 
 | ||||
|       <label>{{ $t("webOptions.tagAuth") }}</label> | ||||
|       <b-form-input v-model="options.tag_auth" @change="update()" :disabled="Boolean(options.auth)"></b-form-input> | ||||
|     </b-card> | ||||
|             <label>{{ $t("webOptions.tagAuth") }}</label> | ||||
|             <b-form-input v-model="options.tag_auth" @change="update()"></b-form-input> | ||||
|         </b-card> | ||||
| 
 | ||||
|     <br> | ||||
|     <h4>Auth0 options</h4> | ||||
|     <b-card> | ||||
|       <label>{{ $t("webOptions.auth0Audience") }}</label> | ||||
|       <b-form-input v-model="options.auth0_audience" @change="update()"></b-form-input> | ||||
|         <br> | ||||
|         <h4>Auth0 options</h4> | ||||
|         <b-card> | ||||
|             <label>{{ $t("webOptions.auth0Audience") }}</label> | ||||
|             <b-form-input v-model="options.auth0_audience" @change="update()"></b-form-input> | ||||
| 
 | ||||
|       <label>{{ $t("webOptions.auth0Domain") }}</label> | ||||
|       <b-form-input v-model="options.auth0_domain" @change="update()"></b-form-input> | ||||
|             <label>{{ $t("webOptions.auth0Domain") }}</label> | ||||
|             <b-form-input v-model="options.auth0_domain" @change="update()"></b-form-input> | ||||
| 
 | ||||
|       <label>{{ $t("webOptions.auth0ClientId") }}</label> | ||||
|       <b-form-input v-model="options.auth0_client_id" @change="update()"></b-form-input> | ||||
|             <label>{{ $t("webOptions.auth0ClientId") }}</label> | ||||
|             <b-form-input v-model="options.auth0_client_id" @change="update()"></b-form-input> | ||||
| 
 | ||||
|       <label>{{ $t("webOptions.auth0PublicKey") }}</label> | ||||
|       <b-textarea rows="10" v-model="options.auth0_public_key" @change="update()"></b-textarea> | ||||
|     </b-card> | ||||
|   </div> | ||||
|             <label>{{ $t("webOptions.auth0PublicKey") }}</label> | ||||
|             <b-textarea rows="10" v-model="options.auth0_public_key" @change="update()"></b-textarea> | ||||
|         </b-card> | ||||
|     </div> | ||||
| </template> | ||||
| 
 | ||||
| <script> | ||||
| 
 | ||||
| export default { | ||||
|   name: "WebOptions", | ||||
|   props: ["options", "frontendName"], | ||||
|   data() { | ||||
|     return { | ||||
|       showEsTestAlert: false, | ||||
|       esTestOk: false, | ||||
|       esTestMessage: "" | ||||
|     } | ||||
|   }, | ||||
|   methods: { | ||||
|     update() { | ||||
| 
 | ||||
|       console.log(this.options) | ||||
|       if (this.options.auth && this.options.tag_auth) { | ||||
|         // If both are set, remove tagAuth | ||||
|         this.options.tag_auth = ""; | ||||
|       } | ||||
| 
 | ||||
|       this.$emit("change", this.options); | ||||
|     name: "WebOptions", | ||||
|     props: ["options", "frontendName"], | ||||
|     data() { | ||||
|         return { | ||||
|             showEsTestAlert: false, | ||||
|             esTestOk: false, | ||||
|             esTestMessage: "", | ||||
|         } | ||||
|     }, | ||||
|   } | ||||
|     methods: { | ||||
|         update() { | ||||
|             this.$emit("change", this.options); | ||||
|         }, | ||||
|     } | ||||
| } | ||||
| </script> | ||||
| 
 | ||||
|  | ||||
| @ -65,9 +65,6 @@ export default { | ||||
|         gitRepository: "Git repository URL", | ||||
|         extraArgs: "Extra command line arguments", | ||||
| 
 | ||||
|         couldNotStartFrontend: "Could not start frontend", | ||||
|         couldNotStartFrontendBody: "Unable to start the frontend, check server logs for more details.", | ||||
| 
 | ||||
|         selectJobs: "Available jobs", | ||||
|         selectJob: "Select a job", | ||||
|         webOptions: { | ||||
|  | ||||
| @ -1,63 +1,63 @@ | ||||
| <template> | ||||
|   <b-card> | ||||
|     <b-card-title> | ||||
|       {{ name }} | ||||
|       <small style="vertical-align: top"> | ||||
|         <b-badge v-if="!loading && frontend.running" variant="success">{{ $t("online") }}</b-badge> | ||||
|         <b-badge v-else-if="!loading" variant="secondary">{{ $t("offline") }}</b-badge> | ||||
|       </small> | ||||
|     </b-card-title> | ||||
|     <b-card> | ||||
|         <b-card-title> | ||||
|             {{ name }} | ||||
|             <small style="vertical-align: top"> | ||||
|                 <b-badge v-if="!loading && frontend.running" variant="success">{{ $t("online") }}</b-badge> | ||||
|                 <b-badge v-else-if="!loading" variant="secondary">{{ $t("offline") }}</b-badge> | ||||
|             </small> | ||||
|         </b-card-title> | ||||
| 
 | ||||
|     <!-- Action buttons--> | ||||
|     <div class="mb-3" v-if="!loading"> | ||||
|       <b-button class="mr-1" :disabled="frontend.running || !valid" variant="success" @click="start()">{{ | ||||
|           $t("start") | ||||
|         }} | ||||
|       </b-button> | ||||
|       <b-button class="mr-1" :disabled="!frontend.running" variant="danger" @click="stop()">{{ | ||||
|           $t("stop") | ||||
|         }} | ||||
|       </b-button> | ||||
|       <b-button class="mr-1" :disabled="!frontend.running" variant="primary" :href="frontendUrl" target="_blank"> | ||||
|         {{ $t("go") }} | ||||
|       </b-button> | ||||
|       <b-button variant="danger" @click="deleteFrontend()">{{ $t("delete") }}</b-button> | ||||
|     </div> | ||||
|         <!-- Action buttons--> | ||||
|         <div class="mb-3" v-if="!loading"> | ||||
|             <b-button class="mr-1" :disabled="frontend.running || !valid" variant="success" @click="start()">{{ | ||||
|                 $t("start") | ||||
|                 }} | ||||
|             </b-button> | ||||
|             <b-button class="mr-1" :disabled="!frontend.running" variant="danger" @click="stop()">{{ | ||||
|                 $t("stop") | ||||
|                 }} | ||||
|             </b-button> | ||||
|             <b-button class="mr-1" :disabled="!frontend.running" variant="primary" :href="frontendUrl" target="_blank"> | ||||
|                 {{ $t("go") }} | ||||
|             </b-button> | ||||
|             <b-button variant="danger" @click="deleteFrontend()">{{ $t("delete") }}</b-button> | ||||
|         </div> | ||||
| 
 | ||||
|     <b-progress v-if="loading" striped animated value="100"></b-progress> | ||||
|     <b-card-body v-else> | ||||
|         <b-progress v-if="loading" striped animated value="100"></b-progress> | ||||
|         <b-card-body v-else> | ||||
| 
 | ||||
|       <h4>{{ $t("backendOptions.title") }}</h4> | ||||
|       <b-card> | ||||
|         <b-alert v-if="!valid" variant="warning" show>{{ $t("frontendOptions.noJobSelectedWarning") }}</b-alert> | ||||
|             <h4>{{ $t("backendOptions.title") }}</h4> | ||||
|             <b-card> | ||||
|                 <b-alert v-if="!valid" variant="warning" show>{{ $t("frontendOptions.noJobSelectedWarning") }}</b-alert> | ||||
| 
 | ||||
|         <SearchBackendSelect :value="frontend.web_options.search_backend" | ||||
|                              @change="onBackendSelect($event)"></SearchBackendSelect> | ||||
|                 <SearchBackendSelect :value="frontend.web_options.search_backend" | ||||
|                                      @change="onBackendSelect($event)"></SearchBackendSelect> | ||||
| 
 | ||||
|         <br> | ||||
|         <JobCheckboxGroup :frontend="frontend" @input="update()"></JobCheckboxGroup> | ||||
|       </b-card> | ||||
|                 <br> | ||||
|                 <JobCheckboxGroup :frontend="frontend" @input="update()"></JobCheckboxGroup> | ||||
|             </b-card> | ||||
| 
 | ||||
|       <br/> | ||||
|             <br/> | ||||
| 
 | ||||
|       <WebOptions :options="frontend.web_options" :frontend-name="$route.params.name" | ||||
|                   @change="update()"></WebOptions> | ||||
|       <br/> | ||||
|             <WebOptions :options="frontend.web_options" :frontend-name="$route.params.name" | ||||
|                         @change="update()"></WebOptions> | ||||
|             <br/> | ||||
| 
 | ||||
|       <h4>{{ $t("frontendOptions.title") }}</h4> | ||||
|       <b-card> | ||||
|         <b-form-checkbox v-model="frontend.auto_start" @change="update()"> | ||||
|           {{ $t("autoStart") }} | ||||
|         </b-form-checkbox> | ||||
|             <h4>{{ $t("frontendOptions.title") }}</h4> | ||||
|             <b-card> | ||||
|                 <b-form-checkbox v-model="frontend.auto_start" @change="update()"> | ||||
|                     {{ $t("autoStart") }} | ||||
|                 </b-form-checkbox> | ||||
| 
 | ||||
|         <label>{{ $t("extraQueryArgs") }}</label> | ||||
|         <b-form-input v-model="frontend.extra_query_args" @change="update()"></b-form-input> | ||||
|                 <label>{{ $t("extraQueryArgs") }}</label> | ||||
|                 <b-form-input v-model="frontend.extra_query_args" @change="update()"></b-form-input> | ||||
| 
 | ||||
|         <label>{{ $t("customUrl") }}</label> | ||||
|         <b-form-input v-model="frontend.custom_url" @change="update()" placeholder="http://"></b-form-input> | ||||
|       </b-card> | ||||
|     </b-card-body> | ||||
|   </b-card> | ||||
|                 <label>{{ $t("customUrl") }}</label> | ||||
|                 <b-form-input v-model="frontend.custom_url" @change="update()" placeholder="http://"></b-form-input> | ||||
|             </b-card> | ||||
|         </b-card-body> | ||||
|     </b-card> | ||||
| </template> | ||||
| 
 | ||||
| <script> | ||||
| @ -68,78 +68,71 @@ import WebOptions from "@/components/WebOptions"; | ||||
| import SearchBackendSelect from "@/components/SearchBackendSelect.vue"; | ||||
| 
 | ||||
| export default { | ||||
|   name: 'Frontend', | ||||
|   components: {SearchBackendSelect, JobCheckboxGroup, WebOptions}, | ||||
|   data() { | ||||
|     return { | ||||
|       loading: true, | ||||
|       frontend: null, | ||||
|     } | ||||
|   }, | ||||
|   computed: { | ||||
|     valid() { | ||||
|       return !this.loading && this.frontend.jobs.length > 0; | ||||
|     name: 'Frontend', | ||||
|     components: {SearchBackendSelect, JobCheckboxGroup, WebOptions}, | ||||
|     data() { | ||||
|         return { | ||||
|             loading: true, | ||||
|             frontend: null, | ||||
|         } | ||||
|     }, | ||||
|     frontendUrl() { | ||||
|       if (this.frontend.custom_url) { | ||||
|         return this.frontend.custom_url + this.args; | ||||
|       } | ||||
|     computed: { | ||||
|         valid() { | ||||
|             return !this.loading && this.frontend.jobs.length > 0; | ||||
|         }, | ||||
|         frontendUrl() { | ||||
|             if (this.frontend.custom_url) { | ||||
|                 return this.frontend.custom_url + this.args; | ||||
|             } | ||||
| 
 | ||||
|       if (this.frontend.web_options.bind.startsWith("0.0.0.0")) { | ||||
|         return window.location.protocol + "//" + window.location.hostname + ":" + this.port + this.args; | ||||
|       } | ||||
|             if (this.frontend.web_options.bind.startsWith("0.0.0.0")) { | ||||
|                 return window.location.protocol + "//" + window.location.hostname + ":" + this.port + this.args; | ||||
|             } | ||||
| 
 | ||||
|       return window.location.protocol + "//" + this.frontend.web_options.bind + this.args; | ||||
|             return window.location.protocol + "//" + this.frontend.web_options.bind + this.args; | ||||
|         }, | ||||
|         name() { | ||||
|             return this.$route.params.name; | ||||
|         }, | ||||
|         port() { | ||||
|             return this.frontend.web_options.bind.split(":")[1] | ||||
|         }, | ||||
|         args() { | ||||
|             const args = this.frontend.extra_query_args; | ||||
|             if (args !== "") { | ||||
|                 return "#" + (args.startsWith("?") ? (args) : ("?" + args)); | ||||
|             } | ||||
|             return ""; | ||||
|         } | ||||
|     }, | ||||
|     name() { | ||||
|       return this.$route.params.name; | ||||
|     }, | ||||
|     port() { | ||||
|       return this.frontend.web_options.bind.split(":")[1] | ||||
|     }, | ||||
|     args() { | ||||
|       const args = this.frontend.extra_query_args; | ||||
|       if (args !== "") { | ||||
|         return "#" + (args.startsWith("?") ? (args) : ("?" + args)); | ||||
|       } | ||||
|       return ""; | ||||
|     } | ||||
|   }, | ||||
|   mounted() { | ||||
|     Sist2AdminApi.getFrontend(this.name).then(resp => { | ||||
|       this.frontend = resp.data; | ||||
|       this.loading = false; | ||||
|     }); | ||||
|   }, | ||||
|   methods: { | ||||
|     start() { | ||||
|       Sist2AdminApi.startFrontend(this.name).then(() => { | ||||
|         this.frontend.running = true; | ||||
|       }).catch(() => { | ||||
|         this.$bvToast.toast(this.$t("couldNotStartFrontendBody"), { | ||||
|           title: this.$t("couldNotStartFrontend"), | ||||
|           variant: "danger", | ||||
|           toaster: "b-toaster-bottom-right" | ||||
|     mounted() { | ||||
|         Sist2AdminApi.getFrontend(this.name).then(resp => { | ||||
|             this.frontend = resp.data; | ||||
|             this.loading = false; | ||||
|         }); | ||||
|       }); | ||||
|     }, | ||||
|     stop() { | ||||
|       this.frontend.running = false; | ||||
|       Sist2AdminApi.stopFrontend(this.name) | ||||
|     }, | ||||
|     deleteFrontend() { | ||||
|       Sist2AdminApi.deleteFrontend(this.name).then(() => { | ||||
|         this.$router.push("/"); | ||||
|       }); | ||||
|     }, | ||||
|     update() { | ||||
|       Sist2AdminApi.updateFrontend(this.name, this.frontend); | ||||
|     }, | ||||
|     onBackendSelect(backend) { | ||||
|       this.frontend.web_options.search_backend = backend; | ||||
|       this.frontend.jobs = []; | ||||
|       this.update(); | ||||
|     methods: { | ||||
|         start() { | ||||
|             this.frontend.running = true; | ||||
|             Sist2AdminApi.startFrontend(this.name) | ||||
|         }, | ||||
|         stop() { | ||||
|             this.frontend.running = false; | ||||
|             Sist2AdminApi.stopFrontend(this.name) | ||||
|         }, | ||||
|         deleteFrontend() { | ||||
|             Sist2AdminApi.deleteFrontend(this.name).then(() => { | ||||
|                 this.$router.push("/"); | ||||
|             }); | ||||
|         }, | ||||
|         update() { | ||||
|             Sist2AdminApi.updateFrontend(this.name, this.frontend); | ||||
|         }, | ||||
|         onBackendSelect(backend) { | ||||
|             this.frontend.web_options.search_backend = backend; | ||||
|             this.frontend.jobs = []; | ||||
|             this.update(); | ||||
|         } | ||||
|     } | ||||
|   } | ||||
| } | ||||
| </script> | ||||
| @ -2,7 +2,6 @@ import asyncio | ||||
| import os | ||||
| import signal | ||||
| from datetime import datetime | ||||
| from time import sleep | ||||
| from urllib.parse import urlparse | ||||
| 
 | ||||
| import requests | ||||
| @ -26,7 +25,6 @@ from state import migrate_v1_to_v2, RUNNING_FRONTENDS, TESSERACT_LANGS, DB_SCHEM | ||||
|     get_log_files_to_remove, delete_log_file, create_default_search_backends | ||||
| from web import Sist2Frontend | ||||
| from script import UserScript, SCRIPT_TEMPLATES | ||||
| from util import tail_sync, pid_is_running | ||||
| 
 | ||||
| sist2 = Sist2(SIST2_BINARY, DATA_FOLDER) | ||||
| db = PersistentState(dbfile=os.path.join(DATA_FOLDER, "state.db")) | ||||
| @ -326,18 +324,7 @@ def start_frontend_(frontend: Sist2Frontend): | ||||
|     logger.debug(f"Fetched search backend options for {backend_name}") | ||||
| 
 | ||||
|     pid = sist2.web(frontend.web_options, search_backend, frontend.name) | ||||
| 
 | ||||
|     sleep(0.2) | ||||
|     if not pid_is_running(pid): | ||||
|         frontend_log = frontend.get_log_path(LOG_FOLDER) | ||||
|         logger.error(f"Frontend exited too quickly, check {frontend_log} for more details:") | ||||
|         for line in tail_sync(frontend.get_log_path(LOG_FOLDER), 3): | ||||
|             logger.error(line.strip()) | ||||
| 
 | ||||
|         return False | ||||
| 
 | ||||
|     RUNNING_FRONTENDS[frontend.name] = pid | ||||
|     return True | ||||
| 
 | ||||
| 
 | ||||
| @app.post("/api/frontend/{name:str}/start") | ||||
| @ -346,12 +333,7 @@ async def start_frontend(name: str): | ||||
|     if not frontend: | ||||
|         raise HTTPException(status_code=404) | ||||
| 
 | ||||
|     ok = start_frontend_(frontend) | ||||
| 
 | ||||
|     if not ok: | ||||
|         raise HTTPException(status_code=500) | ||||
| 
 | ||||
|     return "ok" | ||||
|     start_frontend_(frontend) | ||||
| 
 | ||||
| 
 | ||||
| @app.post("/api/frontend/{name:str}/stop") | ||||
|  | ||||
| @ -257,7 +257,7 @@ class Sist2: | ||||
| 
 | ||||
|         set_pid_cb(proc.pid) | ||||
| 
 | ||||
|         t_stderr = Thread(target=self._consume_logs_stderr, args=(logs_cb, None, proc)) | ||||
|         t_stderr = Thread(target=self._consume_logs_stderr, args=(logs_cb, proc)) | ||||
|         t_stderr.start() | ||||
| 
 | ||||
|         self._consume_logs_stdout(logs_cb, proc) | ||||
| @ -284,7 +284,7 @@ class Sist2: | ||||
| 
 | ||||
|         set_pid_cb(proc.pid) | ||||
| 
 | ||||
|         t_stderr = Thread(target=self._consume_logs_stderr, args=(logs_cb, None, proc)) | ||||
|         t_stderr = Thread(target=self._consume_logs_stderr, args=(logs_cb, proc)) | ||||
|         t_stderr.start() | ||||
| 
 | ||||
|         self._consume_logs_stdout(logs_cb, proc) | ||||
| @ -294,7 +294,7 @@ class Sist2: | ||||
|         return proc.returncode | ||||
| 
 | ||||
|     @staticmethod | ||||
|     def _consume_logs_stderr(logs_cb, exit_cb, proc): | ||||
|     def _consume_logs_stderr(logs_cb, proc): | ||||
|         pipe_wrapper = TextIOWrapper(proc.stderr, encoding="utf8", errors="ignore") | ||||
|         try: | ||||
|             for line in pipe_wrapper: | ||||
| @ -302,9 +302,7 @@ class Sist2: | ||||
|                     continue | ||||
|                 logs_cb({"stderr": line}) | ||||
|         finally: | ||||
|             return_code = proc.wait() | ||||
|             if exit_cb: | ||||
|                 exit_cb(return_code) | ||||
|             proc.wait() | ||||
|             pipe_wrapper.close() | ||||
| 
 | ||||
|     @staticmethod | ||||
| @ -342,14 +340,11 @@ class Sist2: | ||||
|         def logs_cb(message): | ||||
|             web_logger.info(json.dumps(message)) | ||||
| 
 | ||||
|         def exit_cb(return_code): | ||||
|             logger.info(f"Web frontend exited with return code {return_code}") | ||||
| 
 | ||||
|         logger.info(f"Starting frontend {' '.join(args)}") | ||||
| 
 | ||||
|         proc = Popen(args, stdout=PIPE, stderr=PIPE) | ||||
| 
 | ||||
|         t_stderr = Thread(target=self._consume_logs_stderr, args=(logs_cb, exit_cb, proc)) | ||||
|         t_stderr = Thread(target=self._consume_logs_stderr, args=(logs_cb, proc)) | ||||
|         t_stderr.start() | ||||
| 
 | ||||
|         t_stdout = Thread(target=self._consume_logs_stdout, args=(logs_cb, proc)) | ||||
|  | ||||
| @ -1,41 +0,0 @@ | ||||
| from glob import glob | ||||
| import os | ||||
| from config import DATA_FOLDER | ||||
| 
 | ||||
| 
 | ||||
| def get_old_index_files(name): | ||||
|     files = glob(os.path.join(DATA_FOLDER, f"scan-{name.replace('/', '_')}-*.sist2")) | ||||
|     files = list(sorted(files, key=lambda f: os.stat(f).st_mtime)) | ||||
|     files = files[-1:] | ||||
| 
 | ||||
|     return files | ||||
| 
 | ||||
| 
 | ||||
| def tail_sync(filename, lines=1, _buffer=4098): | ||||
|     with open(filename) as f: | ||||
|         lines_found = [] | ||||
| 
 | ||||
|         block_counter = -1 | ||||
| 
 | ||||
|         while len(lines_found) < lines: | ||||
|             try: | ||||
|                 f.seek(block_counter * _buffer, os.SEEK_END) | ||||
|             except IOError: | ||||
|                 f.seek(0) | ||||
|                 lines_found = f.readlines() | ||||
|                 break | ||||
| 
 | ||||
|             lines_found = f.readlines() | ||||
| 
 | ||||
|             block_counter -= 1 | ||||
| 
 | ||||
|         return lines_found[-lines:] | ||||
| 
 | ||||
| 
 | ||||
| def pid_is_running(pid): | ||||
|     try: | ||||
|         os.kill(pid, 0) | ||||
|     except OSError: | ||||
|         return False | ||||
| 
 | ||||
|     return True | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user