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
4755ab3e
Commit
4755ab3e
authored
Oct 19, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] sftp 去掉windows资产
parent
0c3d0a45
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
10 deletions
+3
-10
sftp.py
coco/httpd/elfinder/volumes/sftp.py
+0
-7
elfinder.zh_CN.js
coco/httpd/static/plugins/elfinder/i18n/elfinder.zh_CN.js
+1
-1
models.py
coco/models.py
+0
-1
sftp.py
coco/sftp.py
+2
-1
No files found.
coco/httpd/elfinder/volumes/sftp.py
View file @
4755ab3e
...
...
@@ -88,7 +88,6 @@ class SFTPVolume(BaseVolume):
def
list
(
self
,
target
,
name_only
=
False
):
""" Returns a list of files/directories in the target directory. """
path
=
self
.
_path
(
target
)
print
(
"List {} {}"
.
format
(
target
,
path
))
with
self
.
lock
:
return
self
.
_list
(
path
)
...
...
@@ -96,7 +95,6 @@ class SFTPVolume(BaseVolume):
""" Get the sub directory of directory
"""
path
=
self
.
_path
(
target
)
print
(
"Tree {} {}"
.
format
(
target
,
path
))
with
self
.
lock
:
infos
=
self
.
_list
(
path
)
tree
=
list
(
filter
(
lambda
x
:
x
[
'mime'
]
==
'directory'
,
infos
))
...
...
@@ -107,7 +105,6 @@ class SFTPVolume(BaseVolume):
获取目录的父目录, 如果deep为0,则直到根
"""
path
=
self
.
_path
(
target
)
.
rstrip
(
self
.
path_sep
)
print
(
"Parents {} {}"
.
format
(
target
,
path
))
with
self
.
lock
:
return
self
.
_parents
(
path
,
depth
=
depth
)
...
...
@@ -173,7 +170,6 @@ class SFTPVolume(BaseVolume):
remote_path
=
self
.
_remote_path
(
path
)
try
:
data
=
self
.
sftp
.
lstat
(
remote_path
)
print
(
data
)
exist
=
True
except
FileNotFoundError
:
exist
=
False
...
...
@@ -188,7 +184,6 @@ class SFTPVolume(BaseVolume):
def
paste
(
self
,
targets
,
dest
,
cut
):
""" Moves/copies target files/directories from source to dest. """
print
(
"Paste {} {} {}"
.
format
(
targets
,
dest
,
cut
))
dest_parent_path
=
self
.
_path
(
dest
)
added
=
[]
removed
=
[]
...
...
@@ -198,9 +193,7 @@ class SFTPVolume(BaseVolume):
dest_path
=
self
.
_join
(
dest_parent_path
,
self
.
_base_name
(
src_path
))
if
self
.
is_dir
(
src_path
):
raise
OSError
(
"Copy folder unsupported now"
)
print
(
"Paste {} to => {}"
.
format
(
src_path
,
dest_parent_path
))
if
self
.
is_exist
(
dest_path
):
print
(
"Exist {}"
.
format
(
dest_path
))
continue
src_remote_path
=
self
.
_remote_path
(
src_path
)
dest_remote_path
=
self
.
_remote_path
(
dest_path
)
...
...
coco/httpd/static/plugins/elfinder/i18n/elfinder.zh_CN.js
View file @
4755ab3e
...
...
@@ -422,7 +422,7 @@
'minsLeft'
:
'剩余 $1 分钟'
,
// from v2.1.17 added 13.11.2016
'openAsEncoding'
:
'使用所选编码重新打开'
,
// from v2.1.19 added 2.12.2016
'saveAsEncoding'
:
'使用所选编码保存'
,
// from v2.1.19 added 2.12.2016
'selectFolder'
:
'选择目录'
,
// from v2.1.20 added 13.12.2016
'selectFolder'
:
'选择目录
(暂不支持)
'
,
// from v2.1.20 added 13.12.2016
'firstLetterSearch'
:
'首字母搜索'
,
// from v2.1.23 added 24.3.2017
'presets'
:
'预置'
,
// from v2.1.25 added 26.5.2017
'tooManyToTrash'
:
'项目太多,不能移动到回收站.'
,
// from v2.1.25 added 9.6.2017
...
...
coco/models.py
View file @
4755ab3e
...
...
@@ -332,7 +332,6 @@ class BaseServer:
return
self
.
_cmd_parser
.
parse_output
(
self
.
output_data
)
def
_parse_input
(
self
):
print
(
"Parse input: {}"
.
format
(
self
.
input_data
))
if
not
self
.
input_data
:
return
return
self
.
_cmd_parser
.
parse_input
(
self
.
input_data
)
...
...
coco/sftp.py
View file @
4755ab3e
...
...
@@ -73,6 +73,8 @@ class SFTPServer(paramiko.SFTPServerInterface):
self
.
server
.
connection
.
user
)
for
asset
in
assets
:
if
asset
.
protocol
!=
'ssh'
:
continue
value
=
{}
key
=
asset
.
hostname
if
asset
.
org_id
:
...
...
@@ -96,7 +98,6 @@ class SFTPServer(paramiko.SFTPServerInterface):
active_channels
=
[
c
for
c
in
trans
.
_channels
.
values
()
if
not
c
.
closed
]
if
not
active_channels
:
print
(
"CLose transport"
)
trans
.
close
()
if
proxy
:
proxy
.
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