Coder Social home page Coder Social logo

yii2-schema-org's Introduction

yii2-schema-org

Schema.org yii2 representation and helpers for json-ld generation.

Latest Stable Version Total Downloads Build Status License

Resources

Installation

The preferred way to install this extension is through composer.

Either run

$ php composer.phar require --prefer-dist simialbi/yii2-schema-org

or add

"simialbi/yii2-schema-org": "^2.0.0"

to the require section of your composer.json

Usage

In order to use this module, you will need to:

  1. Configure your application so that the module is available.
  2. Generate the Schemas you intend to use.

Setup Module

Configure the module named schema in the modules section of your Yii configuration file.

Remember to do this for console and for web application configuration file.

'modules' => [
	'schema' => [
		'class' => 'simialbi\yii2\schemaorg\Module',
		//'autoCreate' => false,
		//'autoRender' => false
	]
]

Also add the module schema to the bootstrap section of your configuration file:

'bootstrap' => ['log', 'schema']
Parameter Description
autoCreate Automatically create breadcrumbs json+ld data.
autoRender Automatically render json+ld data at the end of body section.
mergeModels Merge models into one script tag instead of rendering one for each of them.

If you don't use autoRender, be sure to manually call JsonLDHelper::render() in your layout file, like so:

<?php
/* @var $this \yii\web\View */
/* @var $content string */
use yii\helpers\Html;
use app\assets\AppAsset;
use simialbi\yii2\schemaorg\helpers\JsonLDHelper;

AppAsset::register($this);
?>
<?php $this->beginPage() ?>
<!DOCTYPE html>
<html lang="<?= Yii::$app->language ?>">
<head>
    <meta charset="<?= Yii::$app->charset ?>">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <?= Html::csrfMetaTags() ?>
    <title><?= Html::encode($this->title) ?></title>
    <?php JsonLDHelper::render(); ?>
    <?php $this->head() ?>
</head>

Model generation

Minimal (standard) configuration

Without passing any parameters all schemas will be generated in the folder @vendor/simialbi/yii2-schema-org/src/models. The namespace of the models will be simialbi\yii2\schemaorg\models.

$ php yii schema/models/generate

Customized

If you want to customize the namespace and path you can do it via --namespace and --folder parameters. E.g. to generate schemas Car and AutoDealer in common/schemas with common\schemas namespace:

$ php yii schema/models/generate 'latest' --schemas=Car,AutoDealer --namespace='common\schemas' --folder='@common/schemas/'
Parameter Description
version The schemas.org version to use. Defaults to latest
--schemas A comma separated list of schemas you intend to use. Empty means all. Defaults to []
--namespace The namespace to use for the generated classes and traits. Defaults to simialbi\yii2\schemaorg\models
--folder The folder where to put the generated files. Defaults to @simialbi/yii2/schemaorg/src/models
--remove-old Whether to remove old files before generating. Defaults to false

The console command will take care of computing schemas dependencies and will generate the classes based on your needs.

Automatic model update on composer update

If you'd like to always update your schema when you run composer update you can configure your composer.json like this:

{
  // [...]
  "require": {
    "yiisoft/yii2": "^2.0.13",
    "simialbi/yii2-schema-org": "^2.0.0"
  },
  "scripts": {
    "post-update-cmd": [
      "simialbi\\yii2\\schemaorg\\composer\\Installer::postInstallUpdate"
    ]
  },
  "extra": {
    "simialbi\\yii2\\schemaorg\\composer\\Installer::postInstallUpdate": {
      "generateModels": {
        "schemas": ["Car", "AutoDealer"], // optional
        "namespace": "common\\schemas", // optional
        "folder": "common/schema" // optional
      }
    }
  }
  // [...]
}

Example Usage

To e.g. add a person to json+ld, you can do the following:

use simialbi\yii2\schemaorg\helpers\JsonLDHelper;
use simialbi\yii2\schemaorg\models\Person;

$child = new Person();
$child->name = 'George W. Bush';
$child->disambiguatingDescription = '43rd President of the United States';
$person = new Person();
$person->name = 'George Bush';
$person->disambiguatingDescription = '41st President of the United States';
$person->children = [$child];

JsonLDHelper::add($person);

License

yii2-schema-org is released under MIT license. See bundled LICENSE for details.

yii2-schema-org's People

Contributors

amelexik avatar andruha avatar machour avatar simialbi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

yii2-schema-org's Issues

Missing field "query-input"

Hi,

I use below code to generate WebSite schema

$siteLinks->potentialAction = new SearchAction(['target' => Yii::$app->urlManager->createAbsoluteUrl(['/site/search/', 'q' => '{search_term_string}']), 'query' => 'required name=search_term_string']);

i got this error from Google Search Test:

Missing field "query-input"

And '@context' => 'http://schema.org' need to be '@context' => 'https://schema.org'

Any Advice?

Thanks

Models generator broken

Hi,

It seems that the schema.org changed a bit, and now when I try to update models the commands tries to fetch urls like this:

Load properties from 'http://schema.org../SubscribeAction'

and all requests fails

Breadcrumbs issues

hey :)

Noticed a few issues with breadcrumbs:

  1. Old classes are still used: https://github.com/simialbi/yii2-schema-org/blob/master/src/helpers/JsonLDHelper.php#L38

  2. The produced JSON LD is invalid, because all entries should contain an url.
    Currently the code looks like this:

if (is_array($breadcrumb)) {
    $listItem->item = [
        '@id' => Url::to(ArrayHelper::getValue($breadcrumb, 'url', ''), true),
        'name' => ArrayHelper::getValue($breadcrumb, 'label', '')
    ];
} else {
    $listItem->item = [ <- bogus item
        'name' => $breadcrumb // 
    ];
}

A fix could be to assume that the non-array item is always the one at the end, and set its url to the current URL ('@id' => Yii::$app->request->absoluteUrl)

Using this module in production & generated files

First off, thank you for this well thought module

I'm wondering about using this module on production, and what would be the best method to ensure that the generated models doesn't change.

For example, currently the Offer model for the git repo is missing the price attribute (at least), so I'm generating the files using the console utility.

I'm a little afraid about the next release of this library bringing back the problem in the Offer file, removing an attribute I'm relying on and causing exceptions on the web site.

I see some solutions for this:

  • Make composer install run the command utility when the package is installed/updated
  • Give the ability to host generated models in another namespace (so that I could commit them in my git repo)

What's your thoughts ? I'll be glad to help implement it

Сombining several objects into one.

Can you combine multiple objects into one?
I made small changes in the render() method.

The output code now looks like this.

    public static function render()
    {
        if (!empty(self::$_models))
        {
            $aModels = [];

            foreach (self::$_models as $model)
            {
                $aModels[] = $model->toJsonLDArray();
            }

            try
            {
                echo
                    Html::script
                    (
                        Json::encode($aModels),
                        [
                            'type' => 'application/ld+json'
                        ]
                    ) . "\n";
            }
            catch (InvalidArgumentException $e)
            {
                $logger = Yii::$app->log->logger;
                $logger->log($e->getMessage(), $logger::LEVEL_ERROR);
            }
        }
    }

Now when I call the methods:

            SchemaOrgJsonLDHelper::add($oBreadCrumbsList);
            SchemaOrgJsonLDHelper::add($oSingleFamilyResidence);

Output code:

[{"@context":"http://schema.org","itemListElement":[{"@type":"ListItem","position":1,"item":{"@id":"https://www.example.com/nassau-county-ny.html","name":"Nassau County"}},{"@type":"ListItem","position":2,"item":{"@id":"https://www.example.com/nassau-city-ny.html","name":"Hempstead"}}],"@type":"BreadcrumbList"},{"@context":"http://schema.org","numberOfBedrooms":4,"floorSize":1296,"geo":{"longitude":"-73.6093200","latitude":"40.7165140","@type":"GeoCoordinates"},"address":{"postalCode":"11550","streetAddress":"Fairview Blvd","addressLocality":"Hempstead","addressRegion":"NY","@type":"PostalAddress"},"url":"https://www.example.com/fairview-blvd-hempstead-ny-11550-4344.html","@type":"SingleFamilyResidence"}]

I checked the validity of the code here: https://validator.schema.org/
No errors were found.

Error generating the model

Hello, when generating the model with
#php yii schema/schema-org

I get this error:

Exception 'yii\base\UnknownPropertyException' with message 'Setting unknown property: yii\console\Application::schema'

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.