acadea/fullsite-search

Laravel package to perform full site search based on Laravel Scout

v1.0.2 2021-10-05 00:24 UTC

This package is auto-updated.

Last update: 2024-04-27 07:48:34 UTC


README

Latest Version on Packagist GitHub Tests Action Status Total Downloads

Laravel package to perform full site search based on Laravel Scout. Bringing the search everything box to live in a laravel app.

Support us

Learn the idea behind this package in my:

Follow us on Youtube: https://www.youtube.com/channel/acadeaio

Buy us a coffee: https://www.buymeacoffee.com/acadea

Paypal: https://www.paypal.com/donate/?hosted_button_id=HPD9HHN3HBPDC

Quick Start

// Expect a collection of models in the search result
$results = \Acadea\FullSite\FullSiteSearch::search('in');

Each model returned has 3 additional attributes:

  • a. match -- the match + neighbouring text found from our DB records
  • b. model -- the related model name
  • c. view_link -- the URL for the user to navigate in the frontend to view the resource

To return the results as an API response:

// Controller
return \Acadea\FullSite\Resources\SiteSearchResource::collection($results);

For your convenience, we have bootstrapped the API endpoint for you. You can disable this in the config file. Just set the fullsite-search.api.disabled config to true.

Example:

URL: /api/site-search?search=in

We get:

{
    "data": [
        {
            "id": 2,
            "match": "...ER happen in a frighte...",
            "model": "Post",
            "view_link": "http://127.0.0.1:8000/posts/2"
        },
        {
            "id": 4,
            "match": "Drawling, Stretching, ...",
            "model": "Post",
            "view_link": "http://127.0.0.1:8000/posts/4"
        },
        {
            "id": 6,
            "match": "...ed to her in the dista...",
            "model": "Post",
            "view_link": "http://127.0.0.1:8000/posts/6"
        }
    ]
}

Installation

You can install the package via composer:

composer require acadea/fullsite-search

You can publish the config file with:

php artisan vendor:publish --provider="Acadea\FullSite\FullSiteServiceProvider" --tag="config"

This is the contents of the published config file:

return [
    // path to your models directory, relative to /app
    'model_path' => 'Models',

    'api' => [
        // enable api endpoint
        'disabled' => false,
        // the api endpoint uri
        'url' => '/api/site-search',
    ],

    // you can put any models that you want to exclude from the search here
    'exclude' => [
        // example:
        // \App\Models\Comment::class
    ],

    // the number of neighbouring characters that you want to include in the match field of API response
    'buffer' => 10,

    // this is where you define where should the search result leads to.
    // the link should navigate to the resource view page
    // by default, we use `/<model-name>/<model-id>` , you can define anything here
    // We will replace `{id}` or `{ id }` with the model id
    'view_mapping' => [
        // \App\Models\Comment::class => '/comments/view/{id}'
    ],
];

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.