267 lines
No EOL
8.5 KiB
HTML
267 lines
No EOL
8.5 KiB
HTML
{% INCLUDE 'overall_header.html' %}
|
|
|
|
{% INCLUDEJS '@privet_ailabs/js/chosen.jquery.min.js' %}
|
|
|
|
{% INCLUDECSS '@privet_ailabs/chosen.min.css' %}
|
|
|
|
<a id="maincontent"></a>
|
|
|
|
<h1>{{ lang('ACP_AILABS_TITLE') }}</h1>
|
|
|
|
<p>
|
|
{{ lang('LBL_AILABS_SETTINGS_DESC') }}
|
|
|
|
{% if U_AILABS_VEIW %}
|
|
<a href="{{ U_ADD }}" class="button2" style="float: {{ S_CONTENT_FLOW_END }};">{{ lang('ACP_AILABS_ADD') }}</a>
|
|
<br>
|
|
<br>
|
|
{% endif %}
|
|
|
|
{% if U_AILABS_ADD_EDIT %}
|
|
<a href="{{ U_BACK }}" style="float: {{ S_CONTENT_FLOW_END }};">« {{ lang('BACK') }}</a>
|
|
{% endif %}
|
|
</p>
|
|
|
|
{% if S_ERROR %}
|
|
<div class="errorbox">
|
|
<h3>{{ lang('WARNING') }}</h3>
|
|
<p>{{ S_ERROR }}</p>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if U_AILABS_ADD_EDIT %}
|
|
|
|
<form id="ailabs_configuration" method="POST" action="{{ U_ACTION }}">
|
|
|
|
<script type="text/javascript">
|
|
const defaultConfigs = {
|
|
"chatgpt": {
|
|
"api_key": "your-openai-api-key-goes-here",
|
|
"url_chat": "https://api.openai.com/v1/chat/completions",
|
|
"model": "gpt-3.5-turbo",
|
|
"temperature": 0.9,
|
|
"max_tokens": 4096,
|
|
"message_tokens": 1024,
|
|
"top_p": 1,
|
|
"frequency_penalty": 0,
|
|
"presence_penalty": 0.6,
|
|
"prefix": "",
|
|
"prefix_tokens": 0
|
|
},
|
|
"dalle": {
|
|
"api_key": "your-openai-api-key-goes-here",
|
|
"url_generations": "https://api.openai.com/v1/images/generations",
|
|
"url_variations": "https://api.openai.com/v1/images/variations",
|
|
"n": 3,
|
|
"size": "512x512",
|
|
"response_format": "b64_json"
|
|
},
|
|
"stablediffusion": {
|
|
"api_key": "your-stablityai-api-key-goes-here",
|
|
"url_texttoimage": "https://api.stability.ai/v1/generation/stable-diffusion-xl-beta-v2-2-2/text-to-image",
|
|
"cfg_scale": 7.5,
|
|
"clip_guidance_preset": "FAST_BLUE",
|
|
"height": 512,
|
|
"width": 512,
|
|
"samples": 3,
|
|
"steps": 30
|
|
},
|
|
"scriptexecute": {
|
|
"config": {
|
|
"script": "app-to-execute",
|
|
"logs": "/var/logs/app-folder",
|
|
}
|
|
}
|
|
}
|
|
|
|
const defaultTemplate = {
|
|
"chatgpt": "\{info\}[quote=\{poster_name\} post_id=\{post_id\} user_id=\{poster_id\}]\{request\}[/quote]\{response\}",
|
|
"dalle": "[quote=\{poster_name\} post_id=\{post_id\} user_id=\{poster_id\}]\{request\}[/quote]\{response\}\{attachments\}",
|
|
"stablediffusion": "[quote=\{poster_name\} post_id=\{post_id\} user_id=\{poster_id\}]\{request\}[/quote]\{response\}\{attachments\}",
|
|
"scriptexecute": "[quote=\{poster_name\} post_id=\{post_id\} user_id=\{poster_id\}]\{request\}[/quote]\{response\}\{attachments\}"
|
|
}
|
|
|
|
function doDefault(id, config, isJSON) {
|
|
const controller = $('#ailabs_controller option:selected').text().trim();
|
|
if (config[controller]) {
|
|
const selectElement = $('#' + id);
|
|
selectElement.val(isJSON ? JSON.stringify(config[controller], null, 2) : config[controller]);
|
|
}
|
|
}
|
|
|
|
function sanitizeValue(value) {
|
|
if (value && Array.isArray(value) && value.length > 0)
|
|
return JSON.stringify(value);
|
|
return null;
|
|
}
|
|
|
|
function setupSelect(id, value) {
|
|
const hiddenInputName = '#' + id;
|
|
const selectName = hiddenInputName + '_select';
|
|
const selectElement = $(selectName);
|
|
|
|
selectElement.chosen().val(value);
|
|
selectElement.chosen().trigger("chosen:updated");
|
|
|
|
$(hiddenInputName).val(sanitizeValue(selectElement.val()));
|
|
|
|
selectElement.on('change', function (evt, params) {
|
|
$(hiddenInputName).val(sanitizeValue(selectElement.val()));
|
|
});
|
|
}
|
|
|
|
function resetValue(id, value) {
|
|
const selectName = '#' + id + '_select';
|
|
const selectElement = $(selectName);
|
|
selectElement.chosen().val(value);
|
|
selectElement.chosen().trigger("chosen:updated");
|
|
}
|
|
|
|
function doReset() {
|
|
setTimeout(function () {
|
|
resetValue('ailabs_forums_post', {{ ailabs_forums_post }});
|
|
resetValue('ailabs_forums_mention', {{ ailabs_forums_mention }});
|
|
}, 500);
|
|
}
|
|
|
|
window.addEventListener("DOMContentLoaded", function () {
|
|
$(".chosen-select").chosen();
|
|
setupSelect('ailabs_forums_post', {{ ailabs_forums_post }});
|
|
setupSelect('ailabs_forums_mention', {{ ailabs_forums_mention }});
|
|
});
|
|
|
|
function find_username(url) {
|
|
'use strict';
|
|
|
|
popup(url, 760, 570, '_usersearch');
|
|
return false;
|
|
}
|
|
</script>
|
|
|
|
<fieldset>
|
|
<dl>
|
|
<dt>
|
|
<label for="ailabs_enabled">{{ lang('LBL_AILABS_ENABLED') ~ lang('COLON') }}</label>
|
|
</dt>
|
|
<dd>
|
|
<label><input type="radio" id="ailabs_enabled" name="ailabs_enabled" value="1" {% if ailabs_enabled %}
|
|
checked="checked" {% endif %}> {{ lang('YES') }}</label>
|
|
<label><input type="radio" name="ailabs_enabled" value="0" {% if not ailabs_enabled %} checked="checked"
|
|
{% endif %}> {{ lang('NO') }}</label>
|
|
</dd>
|
|
</dl>
|
|
<dl>
|
|
<dt><label for="ailabs_username">{L_ENTER_USERNAME}{L_COLON}</label></dt>
|
|
<dd><input required class="text medium" type="text" id="ailabs_username" name="ailabs_username"
|
|
value="{{ ailabs_username }}" /></dd>
|
|
<dd>[ <a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false;">{L_FIND_USERNAME}</a> ]
|
|
</dd>
|
|
</dl>
|
|
<dl>
|
|
<dt>
|
|
<label for="ailabs_controller">{{ lang('LBL_AILABS_CONTROLLER') ~ lang('COLON') }}</label>
|
|
</dt>
|
|
<dd>
|
|
<select required id="ailabs_controller" name="ailabs_controller">
|
|
{% for CONTROLLER in AILABS_CONTROLLER_DESC %}
|
|
<option value="{{ CONTROLLER.VALUE }}" {% if CONTROLLER.SELECTED %} selected="selected" {% endif %}>
|
|
{{ CONTROLLER.NAME }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</dd>
|
|
</dl>
|
|
<dl>
|
|
<dt>
|
|
<label for="ailabs_config">{{ lang('LBL_AILABS_CONFIG') ~ lang('COLON') }}</label>
|
|
<br><span>{{ lang('LBL_AILABS_CONFIG_EXPLAIN') }}</span>
|
|
<br><br><input type="button" class="button2" value="{{ lang('LBL_AILABS_CONFIG_DEFAULT') }}"
|
|
onclick="doDefault('ailabs_config', defaultConfigs, true)">
|
|
</dt>
|
|
<dd>
|
|
<textarea required id="ailabs_config" name="ailabs_config" rows="15">{{ ailabs_config }}</textarea>
|
|
</dd>
|
|
</dl>
|
|
<dl>
|
|
<dt>
|
|
<label for="ailabs_template">{{ lang('LBL_AILABS_TEMPLATE') ~ lang('COLON') }}</label>
|
|
<br><span>{{ lang('LBL_AILABS_TEMPLATE_EXPLAIN') }}</span>
|
|
<br><br><input type="button" class="button2" value="{{ lang('LBL_AILABS_TEMPLATE_DEFAULT') }}"
|
|
onclick="doDefault('ailabs_template', defaultTemplate, false)">
|
|
</dt>
|
|
<dd>
|
|
<textarea required id="ailabs_template" name="ailabs_template" rows="5">{{ ailabs_template }}</textarea>
|
|
</dd>
|
|
</dl>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{{ lang('LBL_AILABS_REPLY_POST_FORUMS') }}</legend>
|
|
<span>{{ lang('LBL_AILABS_REPLY_POST_FORUMS_EXPLAIN') }}</span>
|
|
<select id="ailabs_forums_post_select" class="chosen-select" multiple data-placeholder="{{ lang('LBL_AILABS_SELECT_FORUMS') }}"
|
|
style="width: 100%;">
|
|
{% for FORUM in AILABS_FORUMS_LIST %}
|
|
<option value="{{ FORUM.VALUE }}">{{ FORUM.NAME }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{{ lang('LBL_AILABS_REPLY_QUOTE_FORUMS') }}</legend>
|
|
<span>{{ lang('LBL_AILABS_REPLY_QUOTE_FORUMS_EXPLAIN') }}</span>
|
|
<select id="ailabs_forums_mention_select" class="chosen-select" multiple data-placeholder="{{ lang('LBL_AILABS_SELECT_FORUMS') }}"
|
|
style="width: 100%;">
|
|
{% for FORUM in AILABS_FORUMS_LIST %}
|
|
<option value="{{ FORUM.VALUE }}">{{ FORUM.NAME }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{{ lang('ACP_SUBMIT_CHANGES') }}</legend>
|
|
<p class="submit-buttons">
|
|
<input type="hidden" id="ailabs_forums_post" name="ailabs_forums_post">
|
|
<input type="hidden" id="ailabs_forums_mention" name="ailabs_forums_mention">
|
|
|
|
<input type="reset" class="button2" value="{{ lang('RESET') }}" onclick="doReset()">
|
|
<input type="submit" name="submit" class="button1" value="{{ lang('SUBMIT') }}">
|
|
{S_FORM_TOKEN}
|
|
</p>
|
|
</fieldset>
|
|
</form>
|
|
|
|
{% endif %}
|
|
|
|
{% if U_AILABS_VEIW %}
|
|
|
|
<table class="tableUsers zebra-table">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ lang('LBL_AILABS_USERNAME') }}</th>
|
|
<th>{{ lang('LBL_AILABS_CONTROLLER') }}</th>
|
|
<th>{{ lang('LBL_AILABS_REPLY_POST_FORUMS') }}</th>
|
|
<th>{{ lang('LBL_AILABS_REPLY_QUOTE_FORUMS') }}</th>
|
|
<th class="centered-text">{{ lang('LBL_AILABS_ENABLED') }}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for user in U_AILABS_USERS %}
|
|
<tr>
|
|
<td><a href="/memberlist.php?mode=viewprofile&u={{ user.user_id }}">{{ user.username }}</a></td>
|
|
<td>{{ user.controller }}</td>
|
|
<td>{{ user.forums_post_names }}</td>
|
|
<td>{{ user.forums_mention_names }}</td>
|
|
<td class="centered-text"><input type="checkbox" onclick="return false" {{ user.enabled ? 'checked' : '' }}>
|
|
</td>
|
|
<td class="centered-text">
|
|
<a href="{{ user.U_EDIT }}">{{ ICON_EDIT }}</a>
|
|
<a href="{{ user.U_DELETE }}">{{ ICON_DELETE }}</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
{% INCLUDE 'overall_footer.html' %} |