mirror of
https://github.com/openvk/openvk
synced 2025-01-23 00:04:16 +03:00
220 lines
8.4 KiB
JavaScript
220 lines
8.4 KiB
JavaScript
function showDocumentUploadDialog(target = null, append_to_url = null)
|
|
{
|
|
let file = null
|
|
const cmsg = new CMessageBox({
|
|
title: tr("document_uploading_in_general"),
|
|
body: `
|
|
<b>${tr("limits")}</b>
|
|
<ul style="margin: 5px 0px;padding-left: 20px;">
|
|
<li>${tr('limitations_file_limit_size', window.openvk.docs_max)}.</li>
|
|
<li>${tr('limitations_file_allowed_formats')}: ${window.openvk.docs_allowed.sort(() => Math.random() - 0.59).slice(0, 10).join(', ')}.</li>
|
|
<li>${tr("limitations_file_author_rights")}.</li>
|
|
</ul>
|
|
|
|
<div style="text-align:center;margin: 10px 0px 2px 0px;">
|
|
<input onclick="upload_btn.click()" class="button" type="button" value="${tr("select_file_fp")}">
|
|
<input id="upload_btn" type="file" style="display:none;">
|
|
</div>
|
|
`,
|
|
buttons: [tr('close')],
|
|
callbacks: [Function.noop],
|
|
})
|
|
|
|
cmsg.getNode().find('.ovk-diag-body').attr('style', "padding:15px;")
|
|
cmsg.getNode().attr('style', "width: 400px;")
|
|
cmsg.getNode().find('#upload_btn').on('change', (e) => {
|
|
file = e.target.files[0]
|
|
const name = file.name
|
|
const format = name.split(".")[1]
|
|
if(window.openvk.docs_allowed.indexOf(format) == -1) {
|
|
makeError(tr("error_file_invalid_format"))
|
|
return
|
|
}
|
|
|
|
if(file.size > window.openvk.docs_max * 1024 * 1024) {
|
|
makeError(tr("error_file_too_big"))
|
|
return
|
|
}
|
|
|
|
cmsg.close()
|
|
|
|
const cmsg_2 = new CMessageBox({
|
|
title: tr("document_uploading_in_general"),
|
|
body: `
|
|
<p><b>${tr("info_name")}</b></p>
|
|
<input type="text" name="doc_name" value="${name}" placeholder="...">
|
|
|
|
<label>
|
|
<input maxlength="255" value="0" type="radio" name="doc_access" checked>
|
|
${tr("private_document")}
|
|
</label>
|
|
<br>
|
|
<label>
|
|
<input value="3" type="radio" name="doc_access">
|
|
${tr("public_document")}
|
|
</label>
|
|
|
|
<p><b>${tr("tags")}</b></p>
|
|
<input maxlength="256" type="text" name="doc_tags" placeholder="...">
|
|
<br>
|
|
<label>
|
|
<input type="checkbox" name="doc_owner" checked>
|
|
${tr("owner_is_hidden")}
|
|
</label>
|
|
`,
|
|
buttons: [tr('upload_button'), tr('cancel')],
|
|
callbacks: [async () => {
|
|
const fd = new FormData
|
|
fd.append("name", u(`input[name="doc_name"]`).nodes[0].value)
|
|
fd.append("tags", u(`input[name="doc_tags"]`).nodes[0].value)
|
|
fd.append("folder", u(`input[name="doc_access"]:checked`).nodes[0].value)
|
|
fd.append("owner_hidden", u(`input[name="doc_owner"]`).nodes[0].checked ? "on" : "off")
|
|
fd.append("blob", file)
|
|
fd.append("ajax", 1)
|
|
fd.append("hash", window.router.csrf)
|
|
|
|
const endpoint_url = `/docs/upload` + (!isNaN(append_to_url) ? "?gid="+append_to_url : '')
|
|
const fetcher = await fetch(endpoint_url, {
|
|
method: 'POST',
|
|
body: fd,
|
|
})
|
|
const json = await fetcher.json()
|
|
|
|
if(json.success) {
|
|
window.router.route(location.href)
|
|
} else {
|
|
fastError(escapeHtml(json.flash.message))
|
|
}
|
|
}, Function.noop],
|
|
})
|
|
cmsg_2.getNode().find('.ovk-diag-body').attr('style', "padding:15px;")
|
|
cmsg_2.getNode().attr('style', "width: 400px;")
|
|
})
|
|
}
|
|
|
|
u(document).on('click', '.docListViewItem #edit_icon', async (e) => {
|
|
const target = u(e.target).closest("#edit_icon")
|
|
const item = target.closest('.docListViewItem')
|
|
const id = item.nodes[0].dataset.id
|
|
|
|
CMessageBox.toggleLoader()
|
|
|
|
const docs = await window.OVKAPI.call('docs.getById', {docs: id, return_tags: 1})
|
|
const doc = docs[0]
|
|
|
|
const cmsg_2 = new CMessageBox({
|
|
title: tr("document_editing_in_general"),
|
|
body: `
|
|
<p><b>${tr("info_name")}</b></p>
|
|
<input type="text" name="doc_name" value="${doc.title}" placeholder="...">
|
|
|
|
<label>
|
|
<input maxlength="255" value="0" type="radio" name="doc_access" ${doc.folder_id == 0 ? "checked" : ''}>
|
|
${tr("private_document")}
|
|
</label>
|
|
<br>
|
|
<label>
|
|
<input value="3" type="radio" name="doc_access" ${doc.folder_id == 3 ? "checked" : ''}>
|
|
${tr("public_document")}
|
|
</label>
|
|
|
|
<p><b>${tr("tags")}</b></p>
|
|
<input maxlength="256" type="text" name="doc_tags" value="${doc.tags.join(',')}" placeholder="...">
|
|
<br>
|
|
<label>
|
|
<input type="checkbox" name="doc_owner" ${doc.is_hidden ? "checked" : ''}>
|
|
${tr("owner_is_hidden")}
|
|
</label>
|
|
`,
|
|
buttons: [tr('save'), tr('cancel')],
|
|
callbacks: [async () => {
|
|
const params = {
|
|
owner_id: id.split('_')[0],
|
|
doc_id: id.split('_')[1],
|
|
title: u(`input[name='doc_name']`).nodes[0].value,
|
|
tags: u(`input[name='doc_tags']`).nodes[0].value,
|
|
folder_id: u(`input[name="doc_access"]:checked`).nodes[0].value,
|
|
owner_hidden: u(`input[name="doc_owner"]`).nodes[0].checked ? 1 : 0,
|
|
}
|
|
|
|
const edit = await window.OVKAPI.call('docs.edit', params)
|
|
if(edit == 1) {
|
|
item.find('.doc_content .doc_name').html(escapeHtml(params.title))
|
|
item.find('.doc_content .doc_tags').html(escapeHtml(params.tags))
|
|
}
|
|
}, Function.noop],
|
|
})
|
|
cmsg_2.getNode().find('.ovk-diag-body').attr('style', "padding:15px;")
|
|
cmsg_2.getNode().attr('style', "width: 400px;")
|
|
|
|
CMessageBox.toggleLoader()
|
|
})
|
|
|
|
u(document).on('click', '#upload_entry_point', (e) => {
|
|
showDocumentUploadDialog(null, Number(e.target.dataset.gid))
|
|
})
|
|
|
|
u(document).on('change', "#docs_page_wrapper select[name='docs_sort']", (e) => {
|
|
const new_url = new URL(location.href)
|
|
new_url.searchParams.set('order', e.target.value)
|
|
|
|
window.router.route(new_url.href)
|
|
})
|
|
|
|
u(document).on('click', '.docListViewItem #remove_icon', async (e) => {
|
|
const target = u(e.target).closest("#remove_icon")
|
|
const item = target.closest('.docListViewItem')
|
|
const id = item.nodes[0].dataset.id.split("_")
|
|
|
|
target.addClass('lagged')
|
|
const res = await window.OVKAPI.call('docs.delete', {owner_id: id[0], doc_id: id[1]})
|
|
target.removeClass('lagged')
|
|
|
|
if(res == 1) {
|
|
target.attr('id', 'mark_icon')
|
|
}
|
|
})
|
|
|
|
u(document).on('click', '.docListViewItem #add_icon', async (e) => {
|
|
const target = u(e.target).closest("#add_icon")
|
|
const item = target.closest('.docListViewItem')
|
|
const id = item.nodes[0].dataset.id.split("_")
|
|
|
|
target.addClass('lagged')
|
|
|
|
try {
|
|
const res = await window.OVKAPI.call('docs.add', {owner_id: id[0], doc_id: id[1], access_key: id[2]})
|
|
} catch(e) {
|
|
makeError(tr("error_file_adding_copied"))
|
|
target.removeClass('lagged')
|
|
return
|
|
}
|
|
|
|
target.removeClass('lagged')
|
|
target.attr('id', 'mark_icon')
|
|
})
|
|
|
|
u(document).on('click', '.docListViewItem #report_icon', (e) => {
|
|
const target = u(e.target).closest("#report_icon")
|
|
const item = target.closest('.docListViewItem')
|
|
const id = item.nodes[0].dataset.id.split("_")
|
|
|
|
MessageBox(tr("report_question"), `
|
|
${tr("going_to_report_doc")}
|
|
<br/>${tr("report_question_text")}
|
|
<br/><br/><b> ${tr("report_reason")}</b>: <input type='text' id='uReportMsgInput' placeholder='${tr("reason")}' />`, [tr("confirm_m"), tr("cancel")], [(function() {
|
|
|
|
res = document.querySelector("#uReportMsgInput").value;
|
|
xhr = new XMLHttpRequest();
|
|
xhr.open("GET", "/report/" + id[1] + "?reason=" + res + "&type=doc", true);
|
|
xhr.onload = (function() {
|
|
if(xhr.responseText.indexOf("reason") === -1)
|
|
MessageBox(tr("error"), tr("error_sending_report"), ["OK"], [Function.noop]);
|
|
else
|
|
MessageBox(tr("action_successfully"), tr("will_be_watched"), ["OK"], [Function.noop]);
|
|
});
|
|
xhr.send(null)
|
|
}),
|
|
|
|
Function.noop])
|
|
})
|