1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-10 19:32:25 +00:00
seahub/frontend/src/pages/sys-admin/logs-page/file-access-logs.js

210 lines
5.9 KiB
JavaScript
Raw Normal View History

import React, { Component, Fragment } from 'react';
import { seafileAPI } from '../../../utils/seafile-api';
import { gettext, siteRoot } from '../../../utils/constants';
import { Utils } from '../../../utils/utils';
import EmptyTip from '../../../components/empty-tip';
import { Button } from 'reactstrap';
import moment from 'moment';
import Loading from '../../../components/loading';
import Paginator from '../../../components/paginator';
import LogsNav from './logs-nav';
import MainPanelTopbar from '../main-panel-topbar';
import UserLink from '../user-link';
import LogsExportExcelDialog from '../../../components/dialog/sysadmin-dialog/sysadmin-logs-export-excel-dialog';
import ModalPortal from '../../../components/modal-portal';
class Content extends Component {
constructor(props) {
super(props);
}
getPreviousPage = () => {
this.props.getLogsByPage(this.props.currentPage - 1);
}
getNextPage = () => {
this.props.getLogsByPage(this.props.currentPage + 1);
}
render() {
const { loading, errorMsg, items, perPage, currentPage, hasNextPage } = this.props;
if (loading) {
return <Loading />;
} else if (errorMsg) {
return <p className="error text-center">{errorMsg}</p>;
} else {
const emptyTip = (
<EmptyTip>
<h2>{gettext('No file access logs')}</h2>
</EmptyTip>
);
const table = (
<Fragment>
<table className="table-hover">
<thead>
<tr>
<th width="20%">{gettext('Name')}</th>
<th width="10%">{gettext('Type')}</th>
<th width="20%">{gettext('IP')}{' / '}{gettext('Device')}</th>
<th width="20%">{gettext('Date')}</th>
<th width="15%">{gettext('Library')}</th>
<th width="15%">{gettext('File')}{' / '}{gettext('Folder')}</th>
</tr>
</thead>
{items &&
<tbody>
{items.map((item, index) => {
return (<Item
key={index}
item={item}
/>);
})}
</tbody>
}
</table>
<Paginator
gotoPreviousPage={this.getPreviousPage}
gotoNextPage={this.getNextPage}
currentPage={currentPage}
hasNextPage={hasNextPage}
curPerPage={perPage}
resetPerPage={this.props.resetPerPage}
/>
</Fragment>
);
return items.length ? table : emptyTip;
}
}
}
class Item extends Component {
constructor(props) {
super(props);
this.state = {
isOpIconShown: false,
};
}
handleMouseOver = () => {
this.setState({
isOpIconShown: true
});
}
handleMouseOut = () => {
this.setState({
isOpIconShown: false
});
}
render() {
let { item } = this.props;
return (
<tr onMouseOver={this.handleMouseOver} onMouseOut={this.handleMouseOut}>
<td><UserLink email={item.email} name={item.name} /></td>
<td>{item.event_type}</td>
<td>{item.ip}{' / '}{item.device}</td>
<td>{moment(item.time).fromNow()}</td>
<td>{item.repo_name ? item.repo_name : gettext('Deleted')}</td>
<td>{item.file_or_dir_name}</td>
</tr>
);
}
}
class FileAccessLogs extends Component {
constructor(props) {
super(props);
this.state = {
loading: true,
errorMsg: '',
logList: [],
perPage: 25,
currentPage: 1,
hasNextPage: false,
isExportExcelDialogOpen: false,
};
this.initPage = 1;
}
toggleExportExcelDialog = () => {
this.setState({isExportExcelDialogOpen: !this.state.isExportExcelDialogOpen});
}
componentDidMount () {
let urlParams = (new URL(window.location)).searchParams;
const { currentPage, perPage } = this.state;
this.setState({
perPage: parseInt(urlParams.get('per_page') || perPage),
currentPage: parseInt(urlParams.get('page') || currentPage)
}, () => {
this.getLogsByPage(this.state.currentPage);
});
}
getLogsByPage = (page) => {
let { perPage } = this.state;
seafileAPI.sysAdminListFileAccessLogs(page, perPage).then((res) => {
this.setState({
logList: res.data.file_access_log_list,
loading: false,
currentPage: page,
hasNextPage: res.data.has_next_page,
});
}).catch((error) => {
this.setState({
loading: false,
errorMsg: Utils.getErrorMsg(error, true) // true: show login tip if 403
});
});
}
resetPerPage = (newPerPage) => {
this.setState({
perPage: newPerPage,
}, () => this.getLogsByPage(this.initPage));
}
render() {
let { logList, currentPage, perPage, hasNextPage, isExportExcelDialogOpen } = this.state;
return (
<Fragment>
<MainPanelTopbar>
<Button className="btn btn-secondary operation-item" onClick={this.toggleExportExcelDialog}>{gettext('Export Excel')}</Button>
</MainPanelTopbar>
<div className="main-panel-center flex-row">
<div className="cur-view-container">
<LogsNav currentItem="fileAccessLogs" />
<div className="cur-view-content">
<Content
loading={this.state.loading}
errorMsg={this.state.errorMsg}
items={logList}
currentPage={currentPage}
perPage={perPage}
hasNextPage={hasNextPage}
getLogsByPage={this.getLogsByPage}
resetPerPage={this.resetPerPage}
/>
</div>
</div>
</div>
{isExportExcelDialogOpen &&
<ModalPortal>
<LogsExportExcelDialog
logType={'fileAccess'}
toggle={this.toggleExportExcelDialog}
/>
</ModalPortal>
}
</Fragment>
);
}
}
export default FileAccessLogs;