Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/bruteforcesettings.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-06-23 11:06:19 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-06-26 14:04:03 +0300
commitea06f81f0ea45b3a7087615ca326e8290f8858ea (patch)
tree37ea6abb5aa008832918fec75b2874cf4fc152b8 /src
parente3d161326e1c1bd76cc6cf707e9cc15d4bf5abfa (diff)
Move app to vue
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'src')
-rw-r--r--src/App.vue108
-rw-r--r--src/components/BruteForceItem.vue51
-rw-r--r--src/main.js35
3 files changed, 194 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue
new file mode 100644
index 0000000..b5c4764
--- /dev/null
+++ b/src/App.vue
@@ -0,0 +1,108 @@
+<!--
+ - @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>
+ -
+ - @author Roeland Jago Douma <roeland@famdouma.nl>
+ -
+ - @license GNU AGPL version 3 or any later version
+ -
+ - This program is free software: you can redistribute it and/or modify
+ - it under the terms of the GNU Affero General Public License as
+ - published by the Free Software Foundation, either version 3 of the
+ - License, or (at your option) any later version.
+ -
+ - This program is distributed in the hope that it will be useful,
+ - but WITHOUT ANY WARRANTY; without even the implied warranty of
+ - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ - GNU Affero General Public License for more details.
+ -
+ - You should have received a copy of the GNU Affero General Public License
+ - along with this program. If not, see <http://www.gnu.org/licenses/>.
+ -
+ -->
+<template>
+ <div id="bruteforcesettigs" class="section">
+ <h2>{{ t('bruteforcesettings', 'Brute-force IP whitelist') }}</h2>
+ <p class="settings-hint">{{ t('bruteforcesettings', 'To whitelist IP ranges from the brute-force protection specify them below. Note that any whitelisted IP can perform authentication attempts without any throttling. For security reasons, it is recommended to whitelist as few hosts as possible or ideally even none at all.') }}</p>
+
+ <table id="whitelist-list">
+ <tbody>
+ <BruteForceItem v-for="item in items"
+ :key="item.id"
+ :item="item"
+ @delete="deleteWhitelist"
+ />
+ </tbody>
+ </table>
+
+ <br/>
+ <h3>{{ t('bruteforcesettings', 'Add new whitelist') }}</h3>
+ <form @submit.prevent="addWhitelist">
+ <input type="text" id="ip" name="ip" placeholder="2001:db8::" v-model="newWhitelist.ip">
+ <input type="number" id="mask" name="mask" placeholder="64" v-model="newWhitelist.mask">
+ <input type="submit" class="button" :value="t('bruteforcesettings', 'Add')">
+ </form>
+ </div>
+</template>
+
+<script>
+import axios from 'axios';
+import BruteForceItem from './components/BruteForceItem'
+
+export default {
+ name: 'App',
+ components: {
+ BruteForceItem
+ },
+ data: function() {
+ return {
+ items: [],
+ newWhitelist: {
+ ip: '',
+ mask: ''
+ }
+ };
+ },
+ beforeMount: function() {
+ let requestToken = OC.requestToken;
+ let tokenHeaders = { headers: { requesttoken: requestToken } };
+
+ axios.get(OC.generateUrl('apps/bruteforcesettings/ipwhitelist'), tokenHeaders)
+ .then((response) => {
+ this.items = response.data;
+ });
+ },
+ methods: {
+ deleteWhitelist(id) {
+ let requestToken = OC.requestToken;
+ let tokenHeaders = { headers: { requesttoken: requestToken } };
+
+ axios.delete(OC.generateUrl('apps/bruteforcesettings/ipwhitelist/{id}', {id: id}), tokenHeaders)
+ .then((response) => {
+ this.items = this.items.filter(item => item.id !== id);
+ });
+ },
+ addWhitelist() {
+ let requestToken = OC.requestToken;
+ let tokenHeaders = { headers: { requesttoken: requestToken } };
+
+ axios.post(
+ OC.generateUrl('apps/bruteforcesettings/ipwhitelist'),
+ {
+ ip: this.newWhitelist.ip,
+ mask: this.newWhitelist.mask
+ },
+ tokenHeaders)
+ .then((response) => {
+ console.log(response.data);
+ console.log(this.items);
+ this.items.push(response.data);
+ console.log(this.items);
+
+ this.newWhitelist.ip = '';
+ this.newWhitelist.mask = '';
+ }
+ );
+ }
+ },
+}
+</script>
diff --git a/src/components/BruteForceItem.vue b/src/components/BruteForceItem.vue
new file mode 100644
index 0000000..03188da
--- /dev/null
+++ b/src/components/BruteForceItem.vue
@@ -0,0 +1,51 @@
+
+<!--
+ - @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>
+ -
+ - @author Roeland Jago Douma <roeland@famdouma.nl>
+ -
+ - @license GNU AGPL version 3 or any later version
+ -
+ - This program is free software: you can redistribute it and/or modify
+ - it under the terms of the GNU Affero General Public License as
+ - published by the Free Software Foundation, either version 3 of the
+ - License, or (at your option) any later version.
+ -
+ - This program is distributed in the hope that it will be useful,
+ - but WITHOUT ANY WARRANTY; without even the implied warranty of
+ - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ - GNU Affero General Public License for more details.
+ -
+ - You should have received a copy of the GNU Affero General Public License
+ - along with this program. If not, see <http://www.gnu.org/licenses/>.
+ -
+ -->
+<template>
+ <tr>
+ <td><span>{{ip}}/{{mask}}</span></td>
+ <td class="action-column">
+ <span>
+ <a class="icon-delete has-tooltip" :title="t('bruteforcesettings', 'Delete')" @click="$emit('delete', id)"></a>
+ </span>
+ </td>
+ </tr>
+</template>
+
+<script>
+ export default {
+ name: 'BruteForceItem',
+ props: {
+ item: {
+ type: Object,
+ required: true
+ }
+ },
+ data: function() {
+ return {
+ id: this.item.id,
+ ip: this.item.ip,
+ mask: this.item.mask,
+ };
+ },
+ }
+</script>
diff --git a/src/main.js b/src/main.js
new file mode 100644
index 0000000..528c0d9
--- /dev/null
+++ b/src/main.js
@@ -0,0 +1,35 @@
+/**
+ * @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @author Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+import Vue from 'vue';
+import App from './App.vue';
+
+Vue.prototype.t = t;
+Vue.prototype.oc_defaults = oc_defaults;
+Vue.prototype.OC = OC;
+
+const app = new Vue({
+ render: h => h(App)
+}).$mount('#bruteforcesettings');
+
+export { app };
+