Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
coco
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
coco
Commits
ee60ec7d
Commit
ee60ec7d
authored
Sep 28, 2018
by
广宏伟
Browse files
Options
Browse Files
Download
Plain Diff
Merged in dev (pull request #111)
[Update] 修改文件显示
parents
7ef09f36
f5879bce
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
31 additions
and
27 deletions
+31
-27
connector.py
coco/httpd/elfinder/connector.py
+2
-4
sftp.py
coco/httpd/elfinder/volumes/sftp.py
+14
-8
file_manager.html
coco/httpd/templates/elfinder/file_manager.html
+2
-3
utils.py
coco/httpd/utils.py
+5
-5
view.py
coco/httpd/view.py
+6
-5
ws.py
coco/httpd/ws.py
+2
-2
No files found.
coco/httpd/elfinder/connector.py
View file @
ee60ec7d
...
...
@@ -25,7 +25,7 @@ class ElFinderConnector:
'paste'
:
(
'__paste'
,
{
'targets[]'
:
True
,
'dst'
:
True
,
'cut'
:
True
}),
'rm'
:
(
'__remove'
,
{
'targets[]'
:
True
}),
'upload'
:
(
'__upload'
,
{
'target'
:
True
}),
'size'
:
(
'__size'
,
{
'targets[
0
]'
:
True
}),
'size'
:
(
'__size'
,
{
'targets[]'
:
True
}),
}
_allowed_args
=
[
...
...
@@ -213,9 +213,7 @@ class ElFinderConnector:
volume
=
list
(
self
.
volumes
.
values
())[
0
]
else
:
volume
=
self
.
get_volume
(
target
)
self
.
response
[
'cwd'
]
=
volume
.
info
(
target
)
files
=
volume
.
list
(
target
)
if
'tree'
in
self
.
data
or
'reload'
in
self
.
data
:
parents
=
volume
.
parents
(
target
,
depth
=
0
)
...
...
@@ -285,6 +283,6 @@ class ElFinderConnector:
self
.
response
.
update
(
volume
.
upload
(
self
.
request
.
files
,
parent
))
def
__size
(
self
):
target
=
self
.
data
[
'target'
]
target
=
self
.
data
[
'target
s[]
'
]
volume
=
self
.
get_volume
(
target
)
self
.
response
[
'size'
]
=
volume
.
size
(
target
)
coco/httpd/elfinder/volumes/sftp.py
View file @
ee60ec7d
...
...
@@ -53,7 +53,7 @@ class SFTPVolume(BaseVolume):
"phash"
:
self
.
_hash
(
parent_path
),
"ts"
:
attr
.
st_mtime
,
"size"
:
attr
.
st_size
,
"mime"
:
"directory"
if
stat
.
S_ISDIR
(
attr
.
st_mode
)
else
""
,
"mime"
:
"directory"
if
stat
.
S_ISDIR
(
attr
.
st_mode
)
else
"
file
"
,
"locked"
:
0
,
"hidden"
:
0
,
"read"
:
1
,
...
...
@@ -67,7 +67,6 @@ class SFTPVolume(BaseVolume):
data
[
'name'
]
=
self
.
root_name
data
[
'locked'
]
=
1
data
[
'volume_id'
]
=
self
.
get_volume_id
()
# print("_Get stat info end")
return
data
def
_list
(
self
,
path
,
name_only
=
False
):
...
...
@@ -89,23 +88,26 @@ class SFTPVolume(BaseVolume):
""" Returns a list of files/directories in the target directory. """
path
=
self
.
_path
(
target
)
# print("List {}-{}".format(target, path))
return
self
.
_list
(
path
)
with
self
.
lock
:
return
self
.
_list
(
path
)
def
tree
(
self
,
target
):
""" Get the sub directory of directory
"""
path
=
self
.
_path
(
target
)
print
(
"Tree {} {}"
.
format
(
target
,
path
))
infos
=
self
.
list
(
target
)
tree
=
list
(
filter
(
lambda
x
:
x
[
'mime'
]
==
'directory'
,
infos
))
return
tree
with
self
.
lock
:
infos
=
self
.
_list
(
path
)
tree
=
list
(
filter
(
lambda
x
:
x
[
'mime'
]
==
'directory'
,
infos
))
return
tree
def
parents
(
self
,
target
,
depth
=
0
):
"""
获取目录的父目录, 如果deep为0,则直到根
"""
path
=
self
.
_path
(
target
)
.
rstrip
(
self
.
path_sep
)
return
self
.
_parents
(
path
,
depth
=
depth
)
with
self
.
lock
:
return
self
.
_parents
(
path
,
depth
=
depth
)
def
_parents
(
self
,
path
,
depth
=
0
):
path
=
self
.
path_sep
+
path
.
lstrip
(
self
.
path_sep
)
...
...
@@ -207,7 +209,11 @@ class SFTPVolume(BaseVolume):
path
=
self
.
_path
(
target
)
remote_path
=
self
.
_remote_path
(
path
)
try
:
self
.
sftp
.
unlink
(
remote_path
)
info
=
self
.
info
(
target
)
if
info
[
'mime'
]
==
'directory'
:
self
.
sftp
.
rmdir
(
remote_path
)
else
:
self
.
sftp
.
unlink
(
remote_path
)
except
OSError
:
raise
OSError
(
"Delete {} failed"
.
format
(
self
.
_base_name
(
path
)))
return
target
...
...
coco/httpd/templates/elfinder/file_manager.html
View file @
ee60ec7d
...
...
@@ -31,7 +31,6 @@
cwd
:
{
oldSchool
:
true
}
},
customData
:
{
'sid'
:
sid
},
height
:
'100%'
,
width
:
'100%'
,
url
:
'{{ url_for("sftp_host_connector_view", host=host) }}'
,
resizable
:
false
,
...
...
@@ -102,7 +101,7 @@
if
(
!
$
(
'#elfinder'
).
hasClass
(
'elfinder-fullscreen'
))
{
resizeTimer
=
setTimeout
(
function
()
{
var
h
,
w
;
if
(
window
!=
parent
)
{
if
(
window
!=
=
parent
)
{
h
=
parseInt
(
parent
.
$
(
'.window.active'
).
height
());
w
=
parseInt
(
parent
.
$
(
'.window.active'
).
width
());
}
else
{
...
...
@@ -111,7 +110,7 @@
}
var
ori_h
=
parseInt
(
$
(
'#elfinder'
).
height
());
var
ori_w
=
parseInt
(
$
(
'#elfinder'
).
width
());
if
(
h
!==
ori_h
||
w
!=
ori_w
){
if
(
h
!==
ori_h
||
w
!=
=
ori_w
){
elf
.
resize
(
w
,
h
);
}
},
200
);
...
...
coco/httpd/utils.py
View file @
ee60ec7d
# -*- coding: utf-8 -*-
#
__
sftp
_cached
=
{}
__
volumes
_cached
=
{}
def
get_cached_
sftp
(
sid
):
return
__
sftp
_cached
.
get
(
sid
)
def
get_cached_
volume
(
sid
):
return
__
volumes
_cached
.
get
(
sid
)
def
set_cache_
sftp
(
sid
,
volume
):
__
sftp
_cached
[
sid
]
=
volume
def
set_cache_
volume
(
sid
,
volume
):
__
volumes
_cached
[
sid
]
=
volume
coco/httpd/view.py
View file @
ee60ec7d
...
...
@@ -9,7 +9,7 @@ from .elfinder import connector, volumes
from
..models
import
Connection
from
..sftp
import
InternalSFTPClient
from
.auth
import
login_required
from
.utils
import
get_cached_
sftp
,
set_cache_sftp
from
.utils
import
get_cached_
volume
,
set_cache_volume
from
..service
import
app_service
logger
=
get_logger
(
__file__
)
...
...
@@ -19,15 +19,16 @@ logger = get_logger(__file__)
@login_required
def
sftp_host_connector_view
(
host
):
sid
=
request
.
args
.
get
(
"sid"
)
or
request
.
values
.
get
(
'sid'
)
sftp
=
get_cached_sftp
(
sid
)
if
sid
else
None
if
not
sftp
:
volume
=
get_cached_volume
(
sid
)
if
sid
else
None
if
not
volume
:
logger
.
debug
(
"New sftp, sid: {} host: {}"
.
format
(
sid
,
host
))
user
=
request
.
current_user
connection
=
Connection
(
addr
=
(
request
.
real_ip
,
0
))
connection
.
user
=
user
sftp
=
InternalSFTPClient
(
connection
)
set_cache_sftp
(
sid
,
sftp
)
volume
=
volumes
.
SFTPVolume
(
sftp
)
volume
=
volumes
.
SFTPVolume
(
sftp
)
set_cache_volume
(
sid
,
volume
)
if
host
!=
'_'
:
asset
=
app_service
.
get_asset
(
host
)
if
not
asset
:
...
...
coco/httpd/ws.py
View file @
ee60ec7d
...
...
@@ -11,7 +11,7 @@ from ..proxy import ProxyServer
from
..utils
import
get_logger
from
..ctx
import
app_service
from
.base
import
BaseNamespace
from
.utils
import
get_cached_
sftp
from
.utils
import
get_cached_
volume
BASE_DIR
=
os
.
path
.
dirname
(
os
.
path
.
dirname
(
__file__
))
logger
=
get_logger
(
__file__
)
...
...
@@ -201,6 +201,6 @@ class ElfinderNamespace(BaseNamespace):
self
.
emit
(
'data'
,
{
"sid"
:
str
(
request
.
sid
)})
def
on_disconnect
(
self
):
sftp
=
get_cached_
sftp
(
request
.
sid
)
sftp
=
get_cached_
volume
(
request
.
sid
)
if
sftp
:
sftp
.
close
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment