Merge pull request #341 from arabcoders/dev
Some checks failed
Build WebView wrappers / build (amd64, ubuntu-latest) (push) Has been cancelled
Build WebView wrappers / build (amd64, windows-latest) (push) Has been cancelled
Build WebView wrappers / build (arm64, macos-latest) (push) Has been cancelled
Build WebView wrappers / build (arm64, ubuntu-latest) (push) Has been cancelled
Build WebView wrappers / build (arm64, windows-latest) (push) Has been cancelled

Allow the UI to bypass some checks for apprise URLs
This commit is contained in:
Abdulmohsen 2025-07-18 00:40:37 +03:00 committed by GitHub
commit f9b70fec5f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 22 additions and 8 deletions

View file

@ -342,7 +342,6 @@ class Tasks(metaclass=Singleton):
),
title=f"Task '{task.name}' completed",
message=f"Task '{task.name}' completed at '{timeNow}'",
id=task.id,
)
except Exception as e:
LOG.error(f"Failed to execute '{task.name}' at '{timeNow}'. '{e!s}'.")

View file

@ -84,7 +84,8 @@
<span class="help">
<span class="icon"><i class="fa-solid fa-info" /></span>
<span class="is-bold">The URL to send the notification to. It can be regular http/https endpoint.
or <NuxtLink target="blank" href="https://github.com/caronc/apprise?tab=readme-ov-file#readme">Apprise</NuxtLink> URL.</span>
or <NuxtLink target="blank" href="https://github.com/caronc/apprise?tab=readme-ov-file#readme">
Apprise</NuxtLink> URL.</span>
</span>
</div>
</div>
@ -300,8 +301,20 @@ const showImport = useStorage('showImport', false);
const import_string = ref('');
const box = useConfirm()
onMounted(() => {
if (!form.request.data_key) {
form.request.data_key = 'data';
}
});
const checkInfo = async () => {
const required = ['name', 'request.url', 'request.method', 'request.type', 'request.data_key'];
let required;
if (!isApprise.value) {
required = ['name', 'request.url', 'request.method', 'request.type', 'request.data_key'];
} else {
required = ['name', 'request.url'];
}
for (const key of required) {
if (key.includes('.')) {
const [parent, child] = key.split('.');
@ -315,11 +328,13 @@ const checkInfo = async () => {
}
}
try {
new URL(form.request.url);
} catch (e) {
toast.error('Invalid URL');
return;
if (!isApprise.value) {
try {
new URL(form.request.url);
} catch (e) {
toast.error('Invalid URL');
return;
}
}
let headers = []