Add option to make http functions private (Require authentication, currently just redirects to login page; Should look into cookie + JWT + api key)

This commit is contained in:
Peter Stockings
2023-12-21 14:03:25 +11:00
parent 14e4672be6
commit 7c7dbae05a
6 changed files with 64 additions and 15 deletions

View File

@@ -42,4 +42,5 @@
</div>
</div>
{{ render_partial('function_editor.html', name=name, script=script, environment_info=environment_info, is_edit=True) }}
{{ render_partial('function_editor.html', name=name, script=script, environment_info=environment_info,
is_public=is_public, is_edit=True) }}

View File

@@ -8,4 +8,5 @@
</div>
{{ render_partial('function_editor.html', name=name, script=script, environment_info=environment_info, is_add=True) }}
{{ render_partial('function_editor.html', name=name, script=script, environment_info=environment_info,
is_public=is_public, is_add=True) }}

View File

@@ -141,6 +141,32 @@
editor_environment.session.setMode("ace/mode/json");
</script>
{% if is_add|default(false, true) or is_edit|default(false, true) %}
<div class="flex">
<div class="inline-flex items-center">
<label class="relative flex items-center p-3 rounded-full cursor-pointer" htmlFor="is_public">
<input type="checkbox"
class="before:content[''] peer relative h-5 w-5 cursor-pointer appearance-none rounded-md border border-blue-gray-200 transition-all before:absolute before:top-2/4 before:left-2/4 before:block before:h-12 before:w-12 before:-translate-y-2/4 before:-translate-x-2/4 before:rounded-full before:bg-blue-gray-500 before:opacity-0 before:transition-opacity checked:border-gray-900 checked:bg-gray-900 checked:before:bg-gray-900 hover:before:opacity-10"
id="is_public" {% if is_public|default(false, true) %} checked {% endif %} />
<span
class="absolute text-white transition-opacity opacity-0 pointer-events-none top-2/4 left-2/4 -translate-y-2/4 -translate-x-2/4 peer-checked:opacity-100">
<svg xmlns="http://www.w3.org/2000/svg" class="h-3.5 w-3.5" viewBox="0 0 20 20" fill="currentColor"
stroke="currentColor" stroke-width="1">
<path fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"></path>
</svg>
</span>
</label>
<label class="mt-px font-light text-gray-700 cursor-pointer select-none" htmlFor="is_public">
Public
</label>
</div>
</div>
{% endif %}
<div class="flex">
{% if is_edit|default(false, true) %}
<button
@@ -170,13 +196,14 @@
let name = '{{ name }}';
let script_content = editor.getValue().trim();
let environment_info = editor_environment.getValue().trim();
let is_public = document.querySelector('#is_public').checked
fetch("{{ url_for('edit_http_function') }}", {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ name, script_content, environment_info }),
body: JSON.stringify({ name, script_content, environment_info, is_public }),
})
.then(response => response.json())
.then(json => showAlert(json.message, json.status))
@@ -201,13 +228,14 @@
let name = document.querySelector('#function-name').value;
let script_content = editor.getValue().trim();
let environment_info = editor_environment.getValue().trim();
let is_public = document.querySelector('#is_public').checked
fetch("{{ url_for('create_http_function') }}", {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ name, script_content, environment_info }),
body: JSON.stringify({ name, script_content, environment_info, is_public }),
})
.then(response => response.text())
.then(text => {