Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-25 | CLOUD: Make Network::ErrorResponse messages more verbose | Alexander Tkachev | |
This commit updates all usages of Network::ErrorResponse to specify at least method name if not precise reason why operation failed. | |||
2016-09-03 | JANITORIAL: Make GPL headers uniform | Eugene Sandulenko | |
2016-08-24 | CLOUD: Remove unused includes | Peter Bozsó | |
2016-08-24 | CLOUD: Update DropboxUploadRequest | Alexander Tkachev | |
JSON checks. | |||
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: JANITORIAL: Fix code formatting | Eugene Sandulenko | |
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: Fix Dropbox and Google Drive UploadRequests | Alexander Tkachev | |
Possible segfault there too. | |||
2016-08-24 | CLOUD: Fix finishSuccess() warning | Alexander Tkachev | |
2016-08-24 | CLOUD: Fix "signed/unsigned integers" warning | Alexander Tkachev | |
The "comparison between signed and unsigned integer expressions" one. Note that in UploadRequests size() and pos() are acutally signed, because they could return -1. This commit implies that Requests are working with such Streams which doesn't. | |||
2016-08-24 | CLOUD: Minor fixes | Alexander Tkachev | |
2016-08-24 | CLOUD: Add GoogleDriveStorage | Alexander Tkachev | |
It has its own GoogleDriveTokenRefresher and knows how to do info(). This commit also contains JSON int -> long long int fix and CurlJsonRequest '\n' -> ' ' fix. | |||
2016-08-24 | CLOUD: Refactor Request | Alexander Tkachev | |
Added ErrorResponse and ErrorCallback. Each Request now has an ErrorCallback, which should be called instead of usual callback in case of failure. | |||
2016-08-24 | CLOUD: Add ListDirectoryStatus struct | Alexander Tkachev | |
It contains flags to indicate whether Request was interrupted or failed, so dependent Requests may see that list is incomplete. | |||
2016-08-24 | CLOUD: Make DropboxUploadRequest use "/upload" too | Alexander Tkachev | |
If file could be uploaded in one API call, no need to create a session (which requires at least two calls: to start and then to finish it). | |||
2016-08-24 | CLOUD: Add UploadStatus struct | Alexander Tkachev | |
It contains not just "success" flag, but also "file" struct, so the caller can find out some information about uploaded file - like timestamp. | |||
2016-08-24 | CLOUD: Add DropboxUploadRequest | Alexander Tkachev | |