Welcome Guest, Not a member yet? Register   Sign In
[Myth Auth] php spark publish:auth, Entity probleme
#1

(This post was last modified: 09-11-2021, 03:43 AM by eelisland.)

I've used php spark auth:publish on the latest version of Myth Auth, folder and file app\Entities\User.php is properly created but modification of the file has no effect, modification of Entity file in Vendor folder works fine.

Did i miss something i have to do in the App\Entities\User.php file or the framework config ? the debugbar doesn"t show it loaded in the 'Files' section.

Modifications in published Config, Controller and Model works fine.

The published file:
PHP Code:
<?php namespace App\Entities;

use 
CodeIgniter\Entity;
use 
Myth\Auth\Authorization\GroupModel;
use 
Myth\Auth\Authorization\PermissionModel;
use 
Myth\Auth\Password;

class 
User extends Entity
{
    /**
    * Maps names used in sets and gets against unique
    * names within the class, allowing independence from
    * database column names.
    *
    * Example:
    *  $datamap = [
    *      'db_name' => 'class_name'
    *  ];
    */
    protected $datamap = [];

    /**
    * Define properties that are automatically converted to Time instances.
    */
    protected $dates = ['reset_at''reset_expires''created_at''updated_at''deleted_at''date'];

    /**
    * Array of field names and the type of value to cast them as
    * when they are accessed.
    */
    protected $casts = [
        'active'          => 'boolean',
        'force_pass_reset' => 'boolean',
    ];

    /**
    * Per-user permissions cache
    * @var array
    */
    protected $permissions = [];

    /**
    * Per-user roles cache
    * @var array
    */
    protected $roles = [];

 
/**
 * Automatically hashes the password when set.
 *
 * @see https://paragonie.com/blog/2015/04/secure-authentication-php-with-long-term-persistence
 *
 * @param string $password
 */
 
public function setPassword(string $password)
 {
        $this->attributes['password_hash'] = Password::hash($password);

        /*
            Set these vars to null in case a reset password was asked.
            Scenario:
                user (a *dumb* one with short memory) requests a
                reset-token and then does nothing => asks the
                administrator to reset his password.
            User would have a new password but still anyone with the
            reset-token would be able to change the password.
        */
        $this->attributes['reset_hash'] = null;
        $this->attributes['reset_at'] = null;
        $this->attributes['reset_expires'] = null;
 }

    /**
    * Force a user to reset their password on next page refresh
    * or login. Checked in the LocalAuthenticator's check() method.
    *
    * @throws \Exception
    *
    * @return $this
    */
    public function forcePasswordReset()
    {
        $this->generateResetHash();
        $this->attributes['force_pass_reset'] = 1;

        return $this;
    }

    /**
    * Generates a secure hash to use for password reset purposes,
    * saves it to the instance.
    *
    * @return $this
    * @throws \Exception
    */
 
public function generateResetHash()
 {
 
$this->attributes['reset_hash'] = bin2hex(random_bytes(16));
 
$this->attributes['reset_expires'] = date('Y-m-d H:i:s'time() + config('Auth')->resetTime);

 return 
$this;
 }

    /**
    * Generates a secure random hash to use for account activation.
    *
    * @return $this
    * @throws \Exception
    */
 
public function generateActivateHash()
 {
 
$this->attributes['activate_hash'] = bin2hex(random_bytes(16));

 return 
$this;
 }

    /**
    * Activate user.
    *
    * @return $this
    */
    public function activate()
    {
        $this->attributes['active'] = 1;
        $this->attributes['activate_hash'] = null;

        return $this;
    }

    /**
    * Unactivate user.
    *
    * @return $this
    */
    public function deactivate()
    {
        $this->attributes['active'] = 0;

        return $this;
    }

    /**
    * Checks to see if a user is active.
    *
    * @return bool
    */
    public function isActivated(): bool
    
{
        return isset($this->attributes['active']) && $this->attributes['active'] == true;
    }

 
/**
 * Bans a user.
 *
 * @param string $reason
 *
 * @return $this
 */
 
public function ban(string $reason)
 {
 
$this->attributes['status'] = 'banned';
 
$this->attributes['status_message'] = $reason;

 return 
$this;
 }

 
/**
 * Removes a ban from a user.
 *
 * @return $this
 */
 
public function unBan()
 {
 
$this->attributes['status'] = $this->status_message '';

 return 
$this;
 }

 
/**
 * Checks to see if a user has been banned.
 *
 * @return bool
 */
 
public function isBanned(): bool
 
{
 return isset(
$this->attributes['status']) && $this->attributes['status'] === 'banned';
 }

    /**
    * Determines whether the user has the appropriate permission,
    * either directly, or through one of it's groups.
    *
    * @param string $permission
    *
    * @return bool
    */
    public function can(string $permission)
    {
        return in_array(strtolower($permission), $this->getPermissions());
 }

    /**
    * Returns the user's permissions, formatted for simple checking:
    *
    * [
    *    id => name,
    *    id=> name,
    * ]
    *
    * @return array|mixed
    */
    public function getPermissions()
    {
        if (empty($this->id))
        {
            throw new \RuntimeException('Users must be created before getting permissions.');
        }

        if (empty($this->permissions))
        {
            $this->permissions model(PermissionModel::class)->getPermissionsForUser($this->id);
        }

        return $this->permissions;
    }

    /**
    * Returns the user's roles, formatted for simple checking:
    *
    * [
    *    id => name,
    *    id => name,
    * ]
    *
    * @return array|mixed
    */
    public function getRoles()
    {
        if (empty($this->id))
        {
            throw new \RuntimeException('Users must be created before getting roles.');
        }

        if (empty($this->roles))
        {
            $groups model(GroupModel::class)->getGroupsForUser($this->id);

            foreach ($groups as $group)
            {
                $this->roles[$group['group_id']] = strtolower($group['name']);
            }
        }

        return $this->roles;
 }

    /**
    * Warns the developer it won't work, so they don't spend
    * hours tracking stuff down.
    *
    * @param array $permissions
    *
    * @return $this
    */
    public function setPermissions(array $permissions null)
    {
        throw new \RuntimeException('User entity does not support saving permissions directly.');
 }

Reply
#2

Did you read the readme.md file on how to setup and configure Myth/Auth ?
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#3

Hello InsiteFx thanks for your answer,

yes every documents in the /docs folder from GitHub.

Do you think i should create an Entity myself like described here ? Extending.md

I 've ignored this part because the command publish create a copy of the User Entity file and folder and edit the namespace for me, and from my understanding i better edit the one created by the publish command.

p.s: sorry in advance if my english look strange, it's not my natural language.
Reply
#4

Your published Entity class must extend Myth's entity file, not codeigniter's core entity. Fix it and it will work.
Reply
#5

(This post was last modified: 09-11-2021, 03:08 AM by eelisland.)

Thanks it works as described in the link from my previous post

App\Entities\User
PHP Code:
<?php namespace App\Entities;

// use CodeIgniter\Entity;
// use Myth\Auth\Authorization\GroupModel;
// use Myth\Auth\Authorization\PermissionModel;
use Myth\Auth\Password;

use 
Myth\Auth\Entities\User as MythUser;

// class User extends Entity
class User extends MythUser
{
... 

App\Models\UserModel

PHP Code:
    protected $returnType 'App\Entities\User'//User::class; 


Maybe it can be a good thing if the publish script can take care of this
Reply




Theme © iAndrew 2016 - Forum software by © MyBB