This commit is contained in:
Xuan Sang LE 2018-03-22 11:11:56 +01:00
parent af542f32c4
commit 2438153c02
2 changed files with 8 additions and 0 deletions

View File

@ -148,6 +148,7 @@ class BaseFileHandler
meta: (f) ->
getlink: () -> @path
# for main action read, write, remove, execute
# must be implemented by subclasses
action: (n, p, f) ->
@ -164,6 +165,9 @@ class RemoteFileHandler extends self.OS.API.VFS.BaseFileHandler
meta: (f) ->
_API.handler.fileinfo @path, f
getlink: () ->
_API.handler.get + "/" + @path
action: (n, p, f) ->
me = @
switch n

View File

@ -144,6 +144,10 @@ class GoogleDriveHandler extends this.OS.API.VFS.BaseFileHandler
@sendB64 m, (data) ->
xhr.send data.replace /^data:[^;]+;base64,/g, ""
getlink: () ->
return @info.webContentLink if @ready
return undefined
action: (n, p, f) ->
me = @
q = _courrier.getMID()