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

History.vue « views « src - github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9ec5f58828e545a5a40ed9f540e43823edc8614 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<template>
    <AppContent>
        <iron-pages :selected="page">
			<div id="loading" class="page">
				<paper-spinner active></paper-spinner>
			</div>
			<div class="page">
                <Header header="History">
                    <RecoverAction id="recover" label="Recover" v-on:recover="onRecover" primary></RecoverAction>
                </Header>
                <FileOperationsTable id="ransomware-table" :data="fileOperations" v-on:table-state-changed="tableStateChanged"></FileOperationsTable>
            </div>
		</iron-pages>
    </AppContent>
</template>

<script>
import '@polymer/paper-spinner/paper-spinner.js';
import '@polymer/iron-pages/iron-pages.js';
import FileOperationsTable from '../components/FileOperationsTable'
import Header from '../components/Header'
import RecoverAction from '../components/RecoverAction'
import AppContent from 'nextcloud-vue/dist/Components/AppContent'

export default {
    name: 'History',
    components: {
		AppContent,
        FileOperationsTable,
        Header,
        RecoverAction
    },
    data() {
        return {
            fileOperations: [],
            page: 0
        };
    },
    mounted() {
        this.page = 0;
        this.fetchData();
        setInterval(() => this.fetchData(), 3000);
    },
    computed: {
        recoverUrl() {
            return OC.generateUrl('/apps/ransomware_detection/api/v1/file-operation')
        },
        fileOperationsUrl() {
            return OC.generateUrl('/apps/ransomware_detection/api/v1/file-operation')
        }
    },
    methods: {
        tableStateChanged() {
            this.page = 1;
        },
        fetchData() {
            this.$axios({
                method: 'GET',
                url: this.fileOperationsUrl
            })
            .then(json => {
                this.fileOperations = json.data;
            })
            .catch( error => { console.error(error); });
        },
        onRecover() {
            const items = document.querySelector('#ransomware-table').items;
            const selected = document.querySelector('#ransomware-table').selectedItems;
            for (var i = 0; i < selected.length; i++) {
                this.recover(selected[i].id);
			}
        },
        remove(id) {
            for (var i = 0; i < this.fileOperations.length; i++) {
                if (this.fileOperations[i].id === id) {
                    this.fileOperations.splice(i, 1);
                }
            }
        },
        async recover(id) {
            await this.$axios({
					method: 'PUT',
					url: this.recoverUrl + '/' + id + '/recover'
				})
					.then(response => {
						switch(response.status) {
							case 204:
								this.remove(id);
								break;
							default:
								console.log(response);
								break;
						}
					})
					.catch(error => {
                        console.error(error);
					});
        }
    }
}
</script>

<style scoped>
    #ransomware-table {
        height: calc(100% - 50px);
    }
    #recover {
        background-color: green;
        color: #fff;
    }
    iron-pages {
        height: 100%;
    }
    .page {
        height: 100%;
    }
    #loading {
		display: flex;
		align-items: center;
		height: 90vh;
		justify-content: center;
	}
</style>