2017 © Pedro Peláez
 

library guestpass

Flickr-like Guest Pass system for Laravel.

image

jeroen-g/guestpass

Flickr-like Guest Pass system for Laravel.

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

GuestPass for Laravel

Latest Version on Packagist ![Build Status][ico-travis] Quality Score, (*1)

Installation

Via Composer, (*2)

``` bash $ composer require jeroen-g/guestpass, (*3)


If you run Laravel 5.5, the service provider and facade are autodiscovered. If not then add them manually: ```php JeroenG\GuestPass\GuestPassServiceProvider::class, // ... 'GuestPass' => JeroenG\GuestPass\GuestPassFacade::class,

Usage

To use Guest Passes, you will need two models: one that is the owner granting guest access (typically a user) and another that is the object to which access is being granted. In the examples below, a photo is used for this., (*4)

Creating new Guest Passes

Requires the owner and object models., (*5)

GuestPass::create($user, $photo);

Returns true if successfull, false otherwise., (*6)

Retrieving Guest Pass data

A Guest Pass contains the following data: owner_model, owner_id; object_model, object_id; key (unique); view (nullable)., (*7)

Getting all keys of the owner

Requires the owner model., (*8)

GuestPass::getKeysOf($user);

Returns a collection of all Guest Pass keys and their corresponding data is attached as well., (*9)

Finding a Guest Pass for corresponding owner and object

Requires the owner and object model., (*10)

GuestPass::findGuestPass($user, $photo);

Returns an Eloquent model (or throws an exception)., (*11)

Get one specific Guest Pass by its key

Requires the key (string)., (*12)

GuestPass::getGuestPass($key);

Returns an Eloquent model (or throws an exception)., (*13)

Checking ownership

Requires the owner and Guest Pass models., (*14)

GuestPass::isOwner($user, $guestpass);

Returns true or false., (*15)

Access controller

The package ships with a controller that checks for the /gp/{owner id}/{key} route and when valid it returns the view (404 otherwise). Each view is passed the object and the Guest Pass models. The views will be sought in the resources/views/guests/ directory., (*16)

Custom views

When creating a Guest Pass it is possible to pass a custom view as the third parameter, (*17)

GuestPass::create($user, $photo, 'album');

In this case, the access controller will not use photo.blade.php (which would be the default) but album.blade.php but the directory remains the same and it is not necessary to add the file extension., (*18)

Changelog

Please see changelog.md for what has changed recently., (*19)

Contributing

Please see contributing.md for details., (*20)

Credits

License

The EU Public License. Please see license.md for more information., (*21)

The Versions

21/08 2017

dev-master

9999999-dev https://github.com/Jeroen-G/GuestPass

Flickr-like Guest Pass system for Laravel.

  Sources   Download

EUPL-1.1

The Requires

 

The Development Requires

jeroeng guestpass guest pass

16/08 2017

v1.0

1.0.0.0 https://github.com/Jeroen-G/GuestPass

Flickr-like Guest Pass system for Laravel.

  Sources   Download

EUPL-1.1

The Requires

 

The Development Requires

jeroeng guestpass guest pass