263 lines
6.9 KiB
Vue
263 lines
6.9 KiB
Vue
<template>
|
|
<errors v-if="error" :errorCode="error.message" />
|
|
<div class="row" v-else-if="!loading">
|
|
<div class="column">
|
|
<form class="card" @submit.prevent="save">
|
|
<div class="card-title">
|
|
<h2>{{ $t("settings.globalSettings") }}</h2>
|
|
</div>
|
|
|
|
<div class="card-content">
|
|
<p>
|
|
<input type="checkbox" v-model="settings.signup" />
|
|
{{ $t("settings.allowSignup") }}
|
|
</p>
|
|
|
|
<p>
|
|
<input type="checkbox" v-model="settings.createUserDir" />
|
|
{{ $t("settings.createUserDir") }}
|
|
</p>
|
|
|
|
<h3>{{ $t("settings.rules") }}</h3>
|
|
<p class="small">{{ $t("settings.globalRules") }}</p>
|
|
<rules :rules.sync="settings.rules" />
|
|
|
|
<div v-if="isExecEnabled">
|
|
<h3>{{ $t("settings.executeOnShell") }}</h3>
|
|
<p class="small">{{ $t("settings.executeOnShellDescription") }}</p>
|
|
<input
|
|
class="input input--block"
|
|
type="text"
|
|
placeholder="bash -c, cmd /c, ..."
|
|
v-model="settings.shell"
|
|
/>
|
|
</div>
|
|
|
|
<h3>{{ $t("settings.branding") }}</h3>
|
|
|
|
<i18n path="settings.brandingHelp" tag="p" class="small">
|
|
<a
|
|
class="link"
|
|
target="_blank"
|
|
href="https://filebrowser.org/configuration/custom-branding"
|
|
>{{ $t("settings.documentation") }}</a
|
|
>
|
|
</i18n>
|
|
|
|
<p>
|
|
<input
|
|
type="checkbox"
|
|
v-model="settings.branding.disableExternal"
|
|
id="branding-links"
|
|
/>
|
|
{{ $t("settings.disableExternalLinks") }}
|
|
</p>
|
|
|
|
<p>
|
|
<label for="theme">{{ $t("settings.themes.title") }}</label>
|
|
<themes
|
|
class="input input--block"
|
|
:theme.sync="settings.branding.theme"
|
|
id="theme"
|
|
></themes>
|
|
</p>
|
|
|
|
<p>
|
|
<label for="branding-name">{{ $t("settings.instanceName") }}</label>
|
|
<input
|
|
class="input input--block"
|
|
type="text"
|
|
v-model="settings.branding.name"
|
|
id="branding-name"
|
|
/>
|
|
</p>
|
|
|
|
<p>
|
|
<label for="branding-files">{{
|
|
$t("settings.brandingDirectoryPath")
|
|
}}</label>
|
|
<input
|
|
class="input input--block"
|
|
type="text"
|
|
v-model="settings.branding.files"
|
|
id="branding-files"
|
|
/>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="card-action">
|
|
<input
|
|
class="button button--flat"
|
|
type="submit"
|
|
:value="$t('buttons.update')"
|
|
/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="column">
|
|
<form class="card" @submit.prevent="save">
|
|
<div class="card-title">
|
|
<h2>{{ $t("settings.userDefaults") }}</h2>
|
|
</div>
|
|
|
|
<div class="card-content">
|
|
<p class="small">{{ $t("settings.defaultUserDescription") }}</p>
|
|
|
|
<user-form
|
|
:isNew="false"
|
|
:isDefault="true"
|
|
:user.sync="settings.defaults"
|
|
/>
|
|
</div>
|
|
|
|
<div class="card-action">
|
|
<input
|
|
class="button button--flat"
|
|
type="submit"
|
|
:value="$t('buttons.update')"
|
|
/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="column">
|
|
<form v-if="isExecEnabled" class="card" @submit.prevent="save">
|
|
<div class="card-title">
|
|
<h2>{{ $t("settings.commandRunner") }}</h2>
|
|
</div>
|
|
|
|
<div class="card-content">
|
|
<i18n path="settings.commandRunnerHelp" tag="p" class="small">
|
|
<code>FILE</code>
|
|
<code>SCOPE</code>
|
|
<a
|
|
class="link"
|
|
target="_blank"
|
|
href="https://filebrowser.org/configuration/command-runner"
|
|
>{{ $t("settings.documentation") }}</a
|
|
>
|
|
</i18n>
|
|
|
|
<div
|
|
v-for="command in settings.commands"
|
|
:key="command.name"
|
|
class="collapsible"
|
|
>
|
|
<input :id="command.name" type="checkbox" />
|
|
<label :for="command.name">
|
|
<p>{{ capitalize(command.name) }}</p>
|
|
<i class="material-icons">arrow_drop_down</i>
|
|
</label>
|
|
<div class="collapse">
|
|
<textarea
|
|
class="input input--block input--textarea"
|
|
v-model.trim="command.value"
|
|
></textarea>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card-action">
|
|
<input
|
|
class="button button--flat"
|
|
type="submit"
|
|
:value="$t('buttons.update')"
|
|
/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState, mapMutations } from "vuex";
|
|
import { settings as api } from "@/api";
|
|
import { enableExec } from "@/utils/constants";
|
|
import UserForm from "@/components/settings/UserForm";
|
|
import Rules from "@/components/settings/Rules";
|
|
import Themes from "@/components/settings/Themes";
|
|
import Errors from "@/views/Errors";
|
|
|
|
export default {
|
|
name: "settings",
|
|
components: {
|
|
Themes,
|
|
UserForm,
|
|
Rules,
|
|
Errors,
|
|
},
|
|
data: function () {
|
|
return {
|
|
error: null,
|
|
originalSettings: null,
|
|
settings: null,
|
|
};
|
|
},
|
|
computed: {
|
|
...mapState(["user", "loading"]),
|
|
isExecEnabled: () => enableExec,
|
|
},
|
|
async created() {
|
|
try {
|
|
this.setLoading(true);
|
|
|
|
const original = await api.get();
|
|
let settings = { ...original, commands: [] };
|
|
|
|
for (const key in original.commands) {
|
|
settings.commands.push({
|
|
name: key,
|
|
value: original.commands[key].join("\n"),
|
|
});
|
|
}
|
|
|
|
settings.shell = settings.shell.join(" ");
|
|
|
|
this.originalSettings = original;
|
|
this.settings = settings;
|
|
} catch (e) {
|
|
this.error = e;
|
|
} finally {
|
|
this.setLoading(false);
|
|
}
|
|
},
|
|
methods: {
|
|
...mapMutations(["setLoading"]),
|
|
capitalize(name, where = "_") {
|
|
if (where === "caps") where = /(?=[A-Z])/;
|
|
let splitted = name.split(where);
|
|
name = "";
|
|
|
|
for (let i = 0; i < splitted.length; i++) {
|
|
name +=
|
|
splitted[i].charAt(0).toUpperCase() + splitted[i].slice(1) + " ";
|
|
}
|
|
|
|
return name.slice(0, -1);
|
|
},
|
|
async save() {
|
|
let settings = {
|
|
...this.settings,
|
|
shell: this.settings.shell
|
|
.trim()
|
|
.split(" ")
|
|
.filter((s) => s !== ""),
|
|
commands: {},
|
|
};
|
|
|
|
for (const { name, value } of this.settings.commands) {
|
|
settings.commands[name] = value.split("\n").filter((cmd) => cmd !== "");
|
|
}
|
|
|
|
try {
|
|
await api.update(settings);
|
|
this.$showSuccess(this.$t("settings.settingsUpdated"));
|
|
} catch (e) {
|
|
this.$showError(e);
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|