I'm trying to get Code Closure to work, but unfortunately, there's always an error thrown.

Here's the code:

use LWP::UserAgent;
use HTTP::Request::Common;
use HTTP::Response;

my $name = 'test.js';
my $agent = new LWP::UserAgent();
$agent->agent("curl/7.21.0 (x86_64-pc-linux-gnu) libcurl/7.21.0 OpenSSL/0.9.8o zlib/1.2.3.4 libidn/1.18");

$res = $agent->request(POST 'http://closure-compiler.appspot.com/compile',
           content_type => 'multipart/form-data',
           content      => [
                   output_info => 'compiled_code',
                           compilation_level => 'SIMPLE_OPTIMIZATIONS',
                   output_format => 'text',
                   js_code => [File::Spec->rel2abs($name)]
                       ]);

if ($res->is_success) {
    $minified = $res->decoded_content;
    print $minified;die;
}

I get the following error:

Error(13): No output information to produce, yet compilation was requested.

Here's the api reference I used: http://code.google.com/intl/de-DE/closure/compiler/docs/api-ref.html

Hope anyone knows what's going wrong here. Thanks.

link|improve this question

38% accept rate
2  
Why are you faking user-agent? – Sinan Ünür Aug 14 '10 at 1:05
1  
If you are not averse to using more modules, search for 'Closure' on search.cpan.org, this task has been made into a module at least twice already. – MkV Aug 14 '10 at 1:13
feedback

2 Answers

up vote 1 down vote accepted

Pass as js_code the actual code to compile. Try (removing the form-data content_type header):

use File::Slurp "read_file";
...
     js_code => scalar( read_file($name) ),

I see you are trying to use POST's file upload feature; what in the API documentation do you see that makes you think that would work? If there is something there, I don't see it.

link|improve this answer
+1 Absolutely correct. In addition, multipart/form-data is incorrect. – Sinan Ünür Aug 14 '10 at 1:01
@Sinan Ünür: figured that out too. You don't need a content type at all; presumably it defaults correctly. – ysth Aug 14 '10 at 1:07
See HTTP::Request::Common for details of the [$filename] syntax. Sinan, absolutely correct in what way? Did either of you try using a different filename that didn't exist? Didn't you get an error message about your file name not being found? – MkV Aug 14 '10 at 1:09
Nice editing ysth, heh, you didn't see that just now. Previously this reply claimed that js_code => [$filename] would send the filename not the data. It does send the data, but in the format of a file upload, not as the google api requires it. – MkV Aug 14 '10 at 1:22
@MkV Absolutely correct in that js_code => scalar( read_file($name) ), is the right way to specify it. read_file will croak if the file in $name cannot be found. I put the file in the same directory as my example. BTW, the editing function on SO exists for a reason. The edit history is not secret. – Sinan Ünür Aug 14 '10 at 1:31
show 2 more comments
feedback
#!/usr/bin/perl

use strict; use warnings;

use File::Slurp;
use LWP::UserAgent;

my $agent = LWP::UserAgent->new;
my $script = 'test.js';

my $response = $agent->post(
    'http://closure-compiler.appspot.com/compile',
    content_type => 'application/x-www-form-urlencoded',
    content => [
        compilation_level => 'SIMPLE_OPTIMIZATIONS',
        output_info => 'compiled_code',
        output_format => 'text',
        js_code => scalar read_file($script),
    ],
);

if ($response->is_success) {
    my $minified = $response->decoded_content;
    print $minified;
}

Output:

C:\Temp> cat test.js
// ADD YOUR CODE HERE
function hello(name) {
  alert('Hello, ' + name);
}
hello('New user');



C:\Temp> t
function hello(a){alert("Hello, "+a)}hello("New user");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.