Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-24 | CLOUD: Update Dropbox Requests | Alexander Tkachev | |
Adding more JSON checks there. | |||
2016-08-24 | CLOUD: Update BoxUploadRequest | Alexander Tkachev | |
More JSON checks there. | |||
2016-08-24 | CLOUD: Update TokenRefreshers | Alexander Tkachev | |
Box's, Google Drive's and OneDrive's token refreshing requests have more JSON checks now. | |||
2016-08-24 | CLOUD: Add JSON-related checks in BoxStorage | Alexander Tkachev | |
2016-08-24 | CLOUD: Minor TODO fix | Alexander Tkachev | |
2016-08-24 | CLOUD: Add KEY/SECRET override code | Alexander Tkachev | |
The following constants must be defined if ENABLE_RELEASE is: * RELEASE_DROPBOX_KEY, * RELEASE_DROPBOX_SECRET, * RELEASE_ONEDRIVE_KEY, * RELEASE_ONEDRIVE_SECRET, * RELEASE_GOOGLE_DRIVE_KEY, * RELEASE_GOOGLE_DRIVE_SECRET, * RELEASE_BOX_KEY, * RELEASE_BOX_SECRET. | |||
2016-08-24 | ALL: Fix debug, warning and error usage | Alexander Tkachev | |
Added prefixes, used debug(9). | |||
2016-08-24 | CLOUD: #define all OAuth2/API-related URLs | Alexander Tkachev | |
2016-08-24 | CLOUD: Upload ListDirectory Requests | Alexander Tkachev | |
Lots of checks to avoid JSON-related segfaults added. | |||
2016-08-24 | CLOUD: JANITORIAL: More whitespace fixes | Eugene Sandulenko | |
2016-08-24 | CLOUD: Fix warning | Eugene Sandulenko | |
2016-08-24 | CLOUD: JANITORIAL: Fix code formatting | Eugene Sandulenko | |
2016-08-24 | CLOUD: Update BoxListDirectoryByIdRequest | Alexander Tkachev | |
It now uses special CurlJsonRequest static methods to check whether JSON is an object, has a string or integer parameter. | |||
2016-08-24 | CLOUD: Updated BoxListDirectoryByIdRequest | Alexander Tkachev | |
It now checks for all keys in JSON to avoid segfaults and prints warnings if passed keys are missing or have wrong types. | |||
2016-08-24 | CLOUD: Fix format warning | Eugene Sandulenko | |
2016-08-24 | CLOUD: Fix FolderDownloadRequest TODO | Alexander Tkachev | |
2016-08-24 | CLOUD: Update DownloadRequest's TODO | Alexander Tkachev | |
We need a way to reopen DumpFile if we want DownloadRequest to support restarting. | |||
2016-08-24 | CLOUD: Fix HTTP response code TODOs | Alexander Tkachev | |
2016-08-24 | CLOUD: Fix some TODOs in CloudManager | Alexander Tkachev | |
"No Storage connected!" error message is passed to the error callback now when there is no Storage connected to the CloudManager. | |||
2016-08-24 | CLOUD: Remove remove() from BoxStorage | Peter Bozsó | |
2016-08-24 | CLOUD: Remove DropboxStorage::remove() | Alexander Tkachev | |
2016-08-24 | CLOUD: Fix code formatting | Peter Bozsó | |
2016-08-24 | CLOUD: Fix `redirect_uri` selection code | Alexander Tkachev | |
Now it's not hardcoded based on USE_SDL_NET, but one or another value is used depending on currently selected LocalWebserver's port. | |||
2016-08-24 | JANITORIAL: Remove spaces at the end of the line | Alexander Tkachev | |
I knew there were some, but I wanted to fix them once, instead of doing it all the time. | |||
2016-08-24 | CLOUD: Do some refactoring/cleanup | Alexander Tkachev | |
Nothing really major. | |||
2016-08-24 | CLOUD: Fix Cppcheck warnings | Alexander Tkachev | |
2016-08-24 | CLOUD: Check whether Storage is working when replacing it | Alexander Tkachev | |
We do that in CloudManager::replaceStorage(), but I've tried to eliminate such possibility by adding a check in the StorageWizardDialog. | |||
2016-08-24 | CLOUD: Fix CloudManager::connectStorage() memory leak | Alexander Tkachev | |
2016-08-24 | CLOUD: Fix Dropbox and Google Drive UploadRequests | Alexander Tkachev | |
Possible segfault there too. | |||
2016-08-24 | CLOUD: Fix OneDriveUploadRequest | Alexander Tkachev | |
Segfault when given stream is nullptr. | |||
2016-08-24 | CLOUD: Add default SavesSync callbacks | Alexander Tkachev | |
With OSD messages indicating whether saves sync is complete, cancelled or failed. | |||
2016-08-24 | CLOUD: Fix OneDriveUploadRequest | Alexander Tkachev | |
OneDrive doesn't accept empty files, so UploadRequest just skips such. | |||
2016-08-24 | CLOUD: Fix DropboxCreateDirectoryRequest | Alexander Tkachev | |
It now calls success callback with `false` on Dropbox's "path/conflict/folder", indicating that the directory already exists. | |||
2016-08-24 | CLOUD: Move Dropbox to API v2 | Alexander Tkachev | |
We had a few places where their deprecated API v1 was used. | |||
2016-08-24 | CLOUD: Calculate FolderDownload download speed | Alexander Tkachev | |
2016-08-24 | CLOUD: Update FolderDownloadRequest::getProgress() | Alexander Tkachev | |
It now is based on downloaded size, not number of files. | |||
2016-08-24 | CLOUD: Fix IdDownloadRequest | Alexander Tkachev | |
Wrong value was returned in getProgress() on nullptr there. | |||
2016-08-24 | CLOUD: Update FolderDownloadRequest | Alexander Tkachev | |
It now keeps track of downloaded bytes. | |||
2016-08-24 | CLOUD: Fix FolderDownloadRequest | Alexander Tkachev | |
It now sends kDownloadEndedCmd on success without waiting to be destructed. | |||
2016-08-24 | CLOUD: Fix FolderDownloadRequest::getProgress() | Alexander Tkachev | |
Now it doesn't stop on 100 % on last file and it ignores the directories, so it doesn't "jump" suddenly as there are no directories to skip. | |||
2016-08-24 | CLOUD: Rename _files to _pendingFiles in FolderDownloadRequest | Peter Bozsó | |
2016-08-24 | CLOUD: Upgrade FolderDownloadRequest::getProgress() | Alexander Tkachev | |
Now NetworkReadStream, which is used in DownloadRequest, which is used in FolderDownloadRequest, returns progress information provided by libcurl. | |||
2016-08-24 | CLOUD: Update DownloadRequest | Alexander Tkachev | |
It now uses a dynamically allocated 1 MB buffer. | |||
2016-08-24 | CLOUD: Cleanup in Storages | Alexander Tkachev | |
2016-08-24 | CLOUD: Update GoogleDriveStorage | Alexander Tkachev | |
It now derives from IdStorage, so lots of GoogleDrive*Request classes are removed and replaced with generic IdStorage*Request ones. | |||
2016-08-24 | CLOUD: Add Storage::uploadStreamSupported() | Alexander Tkachev | |
Box uses POST multipart/form requests for uploading. Such requests could be sent with libcurl if we either have a file available or a buffer with this file's contents. SavesSyncRequest was using Storage::upload(ReadStream *), which couldn't be implemented in BoxStorage. Thus I've added a method to test whether such upload is supported and, if it's not, SavesSyncRequest uses the other. | |||
2016-08-24 | CLOUD: Add BoxUploadRequest | Alexander Tkachev | |
2016-08-24 | CLOUD: Remove BoxStorage::streamFileById debug() call | Alexander Tkachev | |
2016-08-24 | CLOUD: Add IdDownloadRequest and IdStreamFileRequest | Alexander Tkachev | |
Used for downloading files in Box. | |||
2016-08-24 | CLOUD: Fix Storage::streamFile() | Alexander Tkachev | |