ccharz/laravel-openfoodfacts-reader 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

ccharz/laravel-openfoodfacts-reader

最新稳定版本:v0.1.0

Composer 安装命令:

composer require ccharz/laravel-openfoodfacts-reader

包简介

Get Openfoodfacts Product Infos

README 文档

README

Introduction

Get product data from openfoodsfacts with a local driver and an api driver.

Requirements

Laravel Openfoodfacts Reader requires PHP 8.2+ and Laravel 10.

If you use the local driver currently around 50 GB of disk space are required.

Installation

Install the package by

composer require ccharz/laravel-openfoodfacts-reader

Drivers

Local

This driver uses data imported from the official jsonl export from openfoodfacts. Keep in mind that the decompressed files has ~3.5 Million Products and take up to 50GB of storage at the moment.

Setup

First publish the migrations using

php artisan vendor:publish --tag openfoodfactsreader-migrations

Run php artisan migrate to migrate your database.

Import Database

  1. Download the current database jsonl from https://static.openfoodfacts.org/data/openfoodfacts-products.jsonl.gz.
  2. Decompress the downloaded file (for example using gunzip gunzip openfoodfacts-products.jsonl.gz)
  3. Import the file into the database using the artisan command
php artisan openfoodfactsreader:import openfoodfacts-products.jsonl

(asserting the decompressed file exists in the root folder of your application).

Using your own model

namespace App\Models;

use Ccharz\LaravelOpenfoodfactsReader\Driver\Local\OpenfoodfactsProduct as BaseOpenfoodfactsProduct;

class OpenfoodfactsProduct extends BaseOpenfoodfactsProduct
{
...

In the config file of the package you can specify your class:

// config/openfoodfactsreader.php
...
   'model' => App\Models\OpenfoodfactsProduct::class
...

API V2

This driver uses the official v2 api.

Setup

Publish the configuration using

php artisan vendor:publish --tag openfoodfactsreader-config

and set the user agent. The User-Agent should be in the form of AppName/Version (ContactEmail). For example, MyApp/1.0 (contact@myapp.com).

Usage

Get Product Data By Barcode

/** @var Ccharz\LaravelOpenfoodfactsReader\Driver\Local\OpenfoodfactsProduct $product */
$product = app(LaravelOpenfoodfactsReader::class)->product('737628064502');

You can access the product data via the data method of the OpenfoodfactsProduct Model.

Driver Selection

You can either use the default driver configured in the config file or specify it using the driver method.

app(LaravelOpenfoodfactsReader::class)->driver('local')->product('737628064502');
app(LaravelOpenfoodfactsReader::class)->driver('v2')->product('737628064502');

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-01-07