承接 whikloj/bagittools 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

whikloj/bagittools

最新稳定版本:5.0.0

Composer 安装命令:

composer require whikloj/bagittools

包简介

A PHP library to manipulate and verify BagIt bags.

README 文档

README

Minimum PHP Version Github Actions LICENSE codecov

Introduction

BagItTools is a PHP implementation of the BagIt v1.0 specification (RFC-8493).

Features:

  • Create new bag
  • Load existing directory as a bag.
  • Load archive file (*.zip, *.tar, *.tar.gz, *.tgz, *.tar.bz2)
  • Validate a bag
  • Add/Remove files
  • Add/Remove fetch urls
  • Add/Remove hash algorithms (md5, sha1, sha224, sha256, sha384, sha512, sha3-224, sha3-256, sha3-384, sha3-512)
  • Generate payload for all data/ files for all hash algorithms (depending on PHP support)
  • Generate tag manifests for all root level files and any additional tag directories/files.
  • Add/Remove tags from bag-info.txt files, maintains ordering of tags loaded.
  • Generates/updates payload-oxum and bagging-date.
  • Passes all bagit-conformance-suite tests.
  • Create an archive (zip, tar, tar.gz, tgz, tar.bz2)
  • In-place upgrade of bag from v0.97 to v1.0

Change Log

Installation

Composer

composer require "whikloj/bagittools"

Clone from Github

git clone https://github.com/whikloj/BagItTools cd BagItTools composer install --no-dev

Dependencies

All dependencies are installed or identified by composer.

Some PHP extensions are required and this library will not install if they cannot be found in the default PHP installation (the one used by composer).

The required extensions are:

Usage

You can integrate BagItTools into your own code as a library using the API, or use the CLI commands for some simple functionality.

Command line

Validating a bag

./bin/console validate <path to bag>

This will output a message as to whether the bag is or is NOT valid. It will also respond with an appropriate exit code (0 == valid, 1 == invalid).

If you add the -v flag it will also print any errors or warnings.

This can command can be used with the bagit-conformance-suite like this

./test-harness <path to BagItTools>/bin/console -- -v validate

API

API Documentation

Create a new bag

As this is a v1.0 implementation, by default bags created use the UTF-8 file encoding and the SHA-512 hash algorithm.

require_once './vendor/autoload.php'; use \whikloj\BagItTools\Bag; $dir = "./newbag"; // Create new bag as directory $dir $bag = Bag::create($dir); // Add a file $bag->addFile('../README.md', 'data/documentation/myreadme.md'); // Add another algorithm $bag->addAlgorithm('sha1'); // Get the algorithms $algos = $bag->getAlgorithms(); var_dump($algos); // array( // 'sha512', // 'sha1', // ) // Add a fetch url $bag->addFetchFile('http://www.google.ca', 'data/mywebsite.html'); // Add some bag-info tags $bag->addBagInfoTag('Contact-Name', 'Jared Whiklo'); $bag->addBagInfoTag('CONTACT-NAME', 'Additional admins'); // Check for tags. if ($bag->hasBagInfoTag('contact-name')) { // Get tags $tags = $bag->getBagInfoByTag('contact-name'); var_dump($tags); // array( // 'Jared Whiklo', // 'Additional admins', // ) // Remove a specific tag value using array index from the above listing. $bag->removeBagInfoTagIndex('contact-name', 1); // Get tags $tags = $bag->getBagInfoByTag('contact-name'); var_dump($tags); // array( // 'Jared Whiklo', // ) $bag->addBagInfoTag('Contact-NAME', 'Bob Saget'); // Get tags $tags = $bag->getBagInfoByTag('contact-name'); var_dump($tags); // array( // 'Jared Whiklo', // 'Bob Saget', // ) // Without the case sensitive flag as true, you must be exact. $bag->removeBagInfoTagValue('contact-name', 'bob saget'); $tags = $bag->getBagInfoByTag('contact-name'); var_dump($tags); // array( // 'Jared Whiklo', // 'Bob Saget', // ) // With the case sensitive flag set to false, you can be less careful $bag->removeBagInfoTagValue('contact-name', 'bob saget', false); $tags = $bag->getBagInfoByTag('contact-name'); var_dump($tags); // array( // 'Jared Whiklo', // ) // Remove all values for the specified tag. $bag->removeBagInfoTag('contact-name'); } // Write the bag to the specified path and filename using the expected archiving method. $bag->package('./archive.tar.bz2');

Using a BagIt Profile

require_once './vendor/autoload.php'; use \whikloj\BagItTools\Bag; $dir = "./newbag"; // Create new bag as directory $dir $bag = Bag::create($dir); // Add a profile by URL $bag->addBagProfileByURL("https://some.example.com/bagit-profile.json"); // or add a profile by JSON $bag->addBagProfileByJson(file_get_contents("path/to/bagit-profile.json")); // Add a file $bag->addFile('../README.md', 'data/documentation/myreadme.md'); // Add another algorithm $bag->addAlgorithm('sha1'); // Write the bag to the specified path and filename using the expected archiving method. $bag->package('./archive.tar.bz2');

Maintainer

Jared Whiklo

License

MIT

统计信息

  • 总下载量: 19.06k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 11
  • 点击次数: 1
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 11
  • Watchers: 3
  • Forks: 6
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04