douqi3195 2015-04-07 07:21
浏览 84
已采纳

来自GitLab的私有存储库存档(tar.gz),通过GitLab的API使用PHP下载,似乎已被破坏 - 校验和无效

I want to download a private GitLab repository archive using their API. I'm using PHP and cURL to do that. I'm able to do so using the following code:

$ch = curl_init(http://example.com/api/v3/projects/64/repository/archive?private_token=private_token_goes_here);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);

$output = curl_exec($ch);
$fh = fopen("out.tar.gz", 'w');
fwrite($fh, $output);
fclose($fh);

The code itself is nothing complicated and pretty standard.

The issue I'm facing is that once I try to unpack, using the code bellow:

    // decompress from gz
    $p = new PharData($temp_archive . '.tar.gz');
    $p->decompress($temp_archive . '.tar');

    // unarchive from the tar
    $phar = new PharData($temp_archive . '.tar');
    $phar->extractTo($extract_path);

I receive the following error:

Fatal error: Uncaught exception 'UnexpectedValueException' with message ' in phpfile.php on line 294

UnexpectedValueException: phar error: "path/to/downloaded/archive/temp_archive.tar.gz" is a corrupted tar file (checksum mismatch of file "52 comment=01607149cd460cba6f1ac3003bb7b0c9cb0e2b94
") in phpfile.php on line 294

Yes, that is the whole error, I didn't cut out the error message. The ' is the error message.

The checksum for the downloaded file is, indeed, invalid. After a few good hours of Googling and forum browsing I'm back to square one. I have no idea what's wrong with it.

If I was to untar the archive using a terminal(I'm on MAC OS Build 12E55), it will unpack normally. The files are all there and I receive no errors what-so-ever.

I tried manually downloading the archive from GitLab and unpacking it using PHP(I get the same error).

I tried creating a *.tar.gz file using a terminal and unpacking it using PHP(I receive no errors and the unpacking proceeds normally).

I tried uploading a file created using the terminal and downloading it using PHP, after which I unpacked it, again using PHP, and I receive no errors.

I can only assume that I'm either:

  • Not using their API properly
  • Not setting the right headers - although I had tried setting:
    1. Content-Type: application/octet-stream
    2. Content-Type: application/x-tar
    3. Content-Transfer-Encoding: binary...and so on. When using the binary header, the file that I put the content in was set to 'wb'. Still, no luck.

And lastly it could be that their API may not be working properly, although I doubt it.

And nudging in the right direction is greatly appreciated.

  • 写回答

1条回答 默认 最新

  • duanjiaoxi4928 2015-04-07 08:39
    关注

    This appears to be a bug in the PharData class implementation that was fixed only very recently, see https://bugs.php.net/bug.php?id=64343.

    So it seems that Github uses the pax format for tar files, instead of the ustar format. For a description on tar formats, see: https://github.com/libarchive/libarchive/wiki/FormatTar

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀