spacek / feed-generator
Feed generator
2.0.0
2022-07-08 16:43 UTC
Requires
- php: >=8.1
- nette/utils: ^3.1
Suggests
- nette/application: For integration with Nette
This package is not auto-updated.
Last update: 2024-10-26 03:55:54 UTC
README
Installation
Download a latest package or use Composer:
composer require spacek/feed-generator
Feed Generator requires PHP 7.4.0 or later.
Usage
-
Feeds
-
Outputs
-
Integrations
Feeds
Google Merchant
use Inteve\FeedGenerator\Feeds\GoogleMerchant; $feed = new GoogleMerchant\GoogleMerchantFeed; $feed->setTitle('Products'); $feed->setWebsiteUrl('http://www.example.com/'); $feed->setUpdated(new DateTime('2017-01-01 00:00:00 UTC')); $feed->setAuthor('Example.com'); $items = array(); foreach ($products as $product) { $item = new GoogleMerchant\GoogleMerchantItem; $item->setId($product->id) ->setTitle($product->title) ->setDescription($product->description) ->setUrl('https://www.example.com/product/' . $product->url) ->setImageUrl('https://www.example.com/images/product/' . $product->id) ->setAvailability($product->qty > 0 ? $item::AVAILABILITY_IN_STOCK : $item::AVAILABILITY_OUT_OF_STOCK) ->setPrice($product->price, 'USD'); $items[] = $item; } $feed->setItems($items); $feed->generate(new Inteve\FeedGenerator\Outputs\FileOutput(__DIR__ . '/feeds/google.xml'));
Heureka.cz
use Inteve\FeedGenerator\Feeds\Heureka; $feed = new Heureka\HeurekaFeed; $items = array(); foreach ($products as $product) { $items[] = Heureka\HeurekaItem::create() ->setId($product->id) ->setProductName($product->name) ->setDescription($product->description) ->setCategoryText($product->categoryName) ->setUrl('http://www.example.com/product/' . $product->url) ->setImageUrl('https://www.example.com/images/product/' . $product->id) ->setPrice($product->price) ->setDeliveryDate($product->qty > 0 ? 0 : 10); // number of days or DateTime } $feed->setItems($items); $feed->generate(new Inteve\FeedGenerator\Outputs\FileOutput(__DIR__ . '/feeds/heureka.xml'));
Zbozi.cz
use Inteve\FeedGenerator\Feeds\Zbozi; $feed = new Zbozi\ZboziFeed; $items = array(); foreach ($products as $product) { $items[] = Zbozi\ZboziItem::create() ->setId($product->id) ->setProductName($product->name) ->setDescription($product->description) ->setUrl('http://www.example.com/product/' . $product->url) ->setImageUrl('https://www.example.com/images/product/' . $product->id) ->setPrice($product->price) ->setDeliveryDate($product->qty > 0 ? 0 : 10); // number of days or DateTime } $feed->setItems($items); $feed->generate(new Inteve\FeedGenerator\Outputs\FileOutput(__DIR__ . '/feeds/zbozi.xml'));
Outputs
FileOutput
Sends output to file.
$output = new Inteve\FeedGenerator\Outputs\FileOutput('/path/to/destination/feed.xml'); $feed->generate($output);
DirectOutput
Sends output to STDIN.
$output = new Inteve\FeedGenerator\Outputs\DirectOutput; $feed->generate($output);
MemoryOutput
Saves output in memory.
$output = new Inteve\FeedGenerator\Outputs\MemoryOutput; $feed->generate($output); echo $output->getOutput();
Integrations
Nette
Requires package nette/application
.
$response = new FeedGenerator\Responses\NetteDownloadResponse($feed, 'filename'); $presenter->sendResponse($response);
For example:
class FeedPresenter extends Nette\Application\UI\Presenter { public function actionGoogle() { $feed = new FeedGenerator\Feeds\GoogleMerchant\GoogleMerchantFeed; // prepare feed & items $response = new FeedGenerator\Responses\NetteDownloadResponse($feed, 'google.xml'); $this->sendResponse($response); } }
License: New BSD License
Original author: Jan Pecha, https://www.janpecha.cz/
Fork author: Jiri Spacek