1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
package WebService::Dropbox::Files;
use strict;
use warnings;
use parent qw(Exporter);
our @EXPORT = do {
no strict 'refs';
grep { $_ =~ qr{ \A [a-z] }xms } keys %{ __PACKAGE__ . '::' };
};
# https://www.dropbox.com/developers/documentation/http/documentation#files-copy
sub copy {
my ($self, $from_path, $to_path) = @_;
my $params = {
from_path => $from_path,
to_path => $to_path,
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/copy',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-create_folder
sub create_folder {
my ($self, $path) = @_;
my $params = {
path => $path,
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/create_folder',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-delete
sub delete {
my ($self, $path) = @_;
my $params = {
path => $path,
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/delete',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-delete_batch
sub delete_batch {
my ($self, $paths) = @_;
my $params = {
entries => [map {+{path => $_}} @$paths],
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/delete_batch',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-delete_batch-check
sub delete_batch_check {
my ($self, $job_id) = @_;
my $params = {
async_job_id => $job_id,
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/delete_batch/check',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-download
sub download {
my ($self, $path, $output, $opts) = @_;
$self->api({
url => 'https://content.dropboxapi.com/2/files/download',
params => { path => $path },
output => $output,
%{ $opts || +{} },
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-get_metadata
sub get_metadata {
my ($self, $path, $optional_params) = @_;
my $params = {
path => $path,
%{ $optional_params || {} },
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/get_metadata',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-get_preview
sub get_preview {
my ($self, $path, $output, $opts) = @_;
my $params = {
path => $path,
};
$self->api({
url => 'https://content.dropboxapi.com/2/files/get_preview',
params => $params,
output => $output,
%{ $opts || +{} },
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-get_temporary_link
sub get_temporary_link {
my ($self, $path) = @_;
my $params = {
path => $path,
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/get_temporary_link',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail
sub get_thumbnail {
my ($self, $path, $output, $optional_params, $opts) = @_;
my $params = {
path => $path,
%{ $optional_params || {} },
};
$self->api({
url => 'https://content.dropboxapi.com/2/files/get_thumbnail',
params => $params,
output => $output,
%{ $opts || +{} },
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-list_revisions
sub list_revisions {
my ($self, $path, $optional_params) = @_;
my $params = {
path => $path,
%{ $optional_params || {} },
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/list_revisions',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-move
sub move {
my ($self, $from_path, $to_path) = @_;
my $params = {
from_path => $from_path,
to_path => $to_path,
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/move',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-permanently_delete
sub permanently_delete {
my ($self, $path) = @_;
my $params = {
path => $path,
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/permanently_delete',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-restore
sub restore {
my ($self, $path, $rev) = @_;
my $params = {
path => $path,
rev => $rev,
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/restore',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-save_url
sub save_url {
my ($self, $path, $url) = @_;
my $params = {
path => $path,
url => $url,
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/save_url',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-save_url-check_job_status
sub save_url_check_job_status {
my ($self, $async_job_id) = @_;
my $params = {
async_job_id => $async_job_id,
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/save_url/check_job_status',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-search
sub search {
my ($self, $path, $query, $optional_params) = @_;
my $params = {
path => $path,
query => $query,
%{ $optional_params || {} },
};
$self->api({
url => 'https://api.dropboxapi.com/2/files/search',
params => $params,
});
}
# https://www.dropbox.com/developers/documentation/http/documentation#files-upload
sub upload {
my ($self, $path, $content, $optional_params) = @_;
my $params = {
path => $path,
%{ $optional_params || {} },
};
$self->api({
url => 'https://content.dropboxapi.com/2/files/upload',
params => $params,
content => $content,
});
}
1;
|