Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More options for file uploads #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions lib/Net/Google/Drive/Simple.pm
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ sub folder_create {
###########################################
sub file_upload {
###########################################
my( $self, $file, $parent_id, $file_id ) = @_;
my( $self, $file, $parent_id, $file_id, $opts ) = @_;

$opts = {} if !defined $opts;

# Since a file upload can take a long time, refresh the token
# just in case.
Expand All @@ -215,9 +217,10 @@ sub file_upload {
$url = URI->new( $self->{ api_file_url } );

my $data = $self->http_json( $url,
{ mimeType => $mime_type,
parents => [ { id => $parent_id } ],
title => $title,
{ mimeType => $mime_type,
parents => [ { id => $parent_id } ],
title => $opts->{ title } ? $opts->{ title } : $title,
description => $opts->{ description },
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

description should be optional too
defined $opts->{ description } ? ( description => $opts->{ description } ) : ()

}
);

Expand Down