mirror of
https://github.com/rclone/rclone
synced 2024-12-01 10:31:57 +01:00
drive: add support for apps-script to json export
This commit is contained in:
parent
80b25daac7
commit
15b1a1f909
@ -110,6 +110,9 @@ var (
|
||||
"application/x-link-url": ".url",
|
||||
"application/x-link-webloc": ".webloc",
|
||||
}
|
||||
_mimeTypeCustomTransform = map[string]string{
|
||||
"application/vnd.google-apps.script+json": "application/json",
|
||||
}
|
||||
partialFields = "id,name,size,md5Checksum,trashed,modifiedTime,createdTime,mimeType,parents,webViewLink"
|
||||
fetchFormatsOnce sync.Once // make sure we fetch the export/import formats only once
|
||||
_exportFormats map[string][]string // allowed export MIME type conversions
|
||||
@ -1135,7 +1138,10 @@ func (f *Fs) findExportFormatByMimeType(itemMimeType string) (
|
||||
}
|
||||
for _, emt := range exportMimeTypes {
|
||||
if emt == _mimeType {
|
||||
return _extension, _mimeType, true
|
||||
return _extension, emt, true
|
||||
}
|
||||
if _mimeType == _mimeTypeCustomTransform[emt] {
|
||||
return _extension, emt, true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -481,6 +481,7 @@ represent the currently available converions.
|
||||
| epub | application/epub+zip | E-book format |
|
||||
| html | text/html | An HTML Document |
|
||||
| jpg | image/jpeg | A JPEG Image File |
|
||||
| json | application/vnd.google-apps.script+json | JSON Text Format |
|
||||
| odp | application/vnd.oasis.opendocument.presentation | Openoffice Presentation |
|
||||
| ods | application/vnd.oasis.opendocument.spreadsheet | Openoffice Spreadsheet |
|
||||
| ods | application/x-vnd.oasis.opendocument.spreadsheet | Openoffice Spreadsheet |
|
||||
|
Loading…
Reference in New Issue
Block a user