0

みなさん、こんにちは、コードイグナイターの役割または許可について助けが必要です。私は1つのユーザーロール(管理者)を持っています:

データベース内のテーブル ユーザー:

id   int(11)    
email    varchar(100)   
password varchar(128)       
name     varchar(100)

私の管理パネルには、(page.php コントローラー)=ページ管理、ページの順序、(agent.php コントローラー) = 追加、編集、削除... 、(ジム) = 追加、編集、削除... 、(記事.php コントローラー)

そして、私には21のセクションがあり、各セクションには複数の治療法があります。私が望むのは、各セクションに自分のセクションのみを編集および表示できる管理者を割り当てることです。だから私はすべてを管理できるよりも21のsection_adminと1つ(またはそれ以上)のglobal_adminを持つことになります

type という名前の users テーブルに別のフィールドを追加します: type varchar(50) 2 つの値 section_admin または global_admin を持ちます。検索しましたが、その方法を示すチュートリアルは見つかりませんでした。

システムにロール管理を統合する方法がわかりません。誰かが私を助けることができますか?

コントローラー: user.php

    class User extends Admin_Controller
            {

                public function __construct ()
                {
                    parent::__construct();
                }

                public function index ()
                {
                    // Fetch all users
                    $this->data['users'] = $this->user_m->get();

                    // Load view
                    $this->data['subview'] = 'admin/user/index';
                    $this->load->view('admin/_layout_main', $this->data);
                }

                public function edit ($id = NULL)
                {
                    // Fetch a user or set a new one
                    if ($id) {
                        $this->data['user'] = $this->user_m->get($id);
                        count($this->data['user']) || $this->data['errors'][] = 'User could not be found';
                    }
                    else {
                        $this->data['user'] = $this->user_m->get_new();
                    }

                    // Set up the form
                    $rules = $this->user_m->rules_admin;
                    $id || $rules['password']['rules'] .= '|required';
                    $this->form_validation->set_rules($rules);

                    // Process the form
                    if ($this->form_validation->run() == TRUE) {
                        $data = $this->user_m->array_from_post(array('name', 'email', 'password'));
                        $data['password'] = $this->user_m->hash($data['password']);
                        $this->user_m->save($data, $id);
                        redirect('admin/user');
                    }

                    // Load the view
                    $this->data['subview'] = 'admin/user/edit';
                    $this->load->view('admin/_layout_main', $this->data);
                }

                public function delete ($id)
                {
                    $this->user_m->delete($id);
                    redirect('admin/user');
                }

                public function login ()
                {
                    // Redirect a user if he's already logged in
                    $dashboard = 'admin/dashboard';
                    $this->user_m->loggedin() == FALSE || redirect($dashboard);

                    // Set form
                    $rules = $this->user_m->rules;
                    $this->form_validation->set_rules($rules);

                    // Process form
                    if ($this->form_validation->run() == TRUE) {
                        // We can login and redirect
                        if ($this->user_m->login() == TRUE) {
                            redirect($dashboard);
                        }
                        else {
                            $this->session->set_flashdata('error', 'That email/password combination does not exist');
                            redirect('admin/user/login', 'refresh');
                        }
                    }

                    // Load view
                    $this->data['subview'] = 'admin/user/login';
                    $this->load->view('admin/_layout_modal', $this->data);
                }

                public function logout ()
                {
                    $this->user_m->logout();
                    redirect('admin/user/login');
                }

                public function _unique_email ($str)
                {
                    // Do NOT validate if email already exists
                    // UNLESS it's the email for the current user

                    $id = $this->uri->segment(4);
                    $this->db->where('email', $this->input->post('email'));
                    !$id || $this->db->where('id !=', $id);
                    $user = $this->user_m->get();

                    if (count($user)) {
                        $this->form_validation->set_message('_unique_email', '%s should be unique');
                        return FALSE;
                    }

                    return TRUE;
                }
            }

モデル user_m.php :

                protected $_table_name = 'users';
                protected $_order_by = 'name';
                public $rules = array(
                    'email' => array(
                        'field' => 'email', 
                        'label' => 'Email', 
                        'rules' => 'trim|required|valid_email|xss_clean'
                    ), 
                    'password' => array(
                        'field' => 'password', 
                        'label' => 'Password', 
                        'rules' => 'trim|required'
                    )
                );
                public $rules_admin = array(
                    'name' => array(
                        'field' => 'name', 
                        'label' => 'Name', 
                        'rules' => 'trim|required|xss_clean'
                    ), 
                    'email' => array(
                        'field' => 'email', 
                        'label' => 'Email', 
                        'rules' => 'trim|required|valid_email|callback__unique_email|xss_clean'
                    ), 
                    'password' => array(
                        'field' => 'password', 
                        'label' => 'Password', 
                        'rules' => 'trim|matches[password_confirm]'
                    ),
                    'password_confirm' => array(
                        'field' => 'password_confirm', 
                        'label' => 'Confirm password', 
                        'rules' => 'trim|matches[password]'
                    ),
                );

                function __construct ()
                {
                    parent::__construct();
                }

                public function login ()
                {
                    $user = $this->get_by(array(
                        'email' => $this->input->post('email'),
                        'password' => $this->hash($this->input->post('password')),
                    ), TRUE);

                    if (count($user)) {
                        // Log in user
                        $data = array(
                            'name' => $user->name,
                            'email' => $user->email,
                            'id' => $user->id,
                            'loggedin' => TRUE,
                        );
                        $this->session->set_userdata($data);
                    }
                }

                public function logout ()
                {
                    $this->session->sess_destroy();
                }

                public function loggedin ()
                {
                    return (bool) $this->session->userdata('loggedin');
                }

                public function get_new(){
                    $user = new stdClass();
                    $user->name = '';
                    $user->email = '';
                    $user->password = '';
                    return $user;
                }

                public function hash ($string)
                {
                    return hash('sha512', $string . config_item('encryption_key'));
                }
            }
4

4 に答える 4

0

あなたが何を達成しようとしているのか正確にはわかりませんが、私が何をするかを大まかに説明します。

1) URL スキームを定義する

たとえば、自動車愛好家向けの Web サイトがある場合、各ブランドは独自のセクションになる可能性があります。

somesite.com/section/honda
somesite.com/section/ford
somesite.com/section/toyota

これらの URL スラッグ (ホンダ、フォード、トヨタなど) は、アクセスしようとしているセクションの識別子になります。それぞれがユニークです。

/section/ の後の各スラッグが関数呼び出しではなくパラメーターであることを確認する必要があります。これを行うには、/application/config/routes.php に移動して、次のようにルートを定義します。

$route['section/(:any)'] = section_controller/$1; 
// $1 is the placeholder variable for the (:any) regex. So anything that comes after /section will be used as a parameter in the index() function of the section_controller class. 

2.「セクション」という新しいデータベースと、対応するモデルを作成します

ここでは、*section_id* と *section_name* の 2 つのフィールドを指定します。これにより、それぞれの固有のセクションが保存されます。モデルのコードは次のようになります。

class Section extends CI_Model
{
    public $section_name;
    public $section_id;

    public function loadByName($section_name)
    {
         $query = $this->db->select('section_id', 'section_name')
                        ->from('section')
                        ->where('section_name', $section_name);

         $row = $query->row();

         $this->section_name = $row->section_name;
         $this->section_id = $row->section_id;

         return $row;
    }

    public function loadById($section_id)
    {
         $query = $this->db->select('section_id', 'section_name')
                           ->from('section')
                           ->where('section_id', $section_id);

         $row = $query->row();

         $this->section_name = $row->section_name;
         $this->section_id = $row->section_id;

         return $row;
    }
}


3. ユーザー テーブルで、*section_id* という名前の追加フィールドを作成します。

これは、管理者であるセクションの ID への参照になります。たとえば、Toyota section_id が 381 の場合、user テーブルの section_id フィールドの数値として 381 を使用します。

4. ページが要求されたら、slug 名に基づいて section_id を検索します。

次に、コントローラ ファイルで、次のように index() メソッドのどこかにセクション モデルをロードする必要があります。

class Section_controller extends CI_Controller
{

    public function index($section_name)
    {
          // I will assume you've already loaded your logged in User somewhere

          $this->load->model('Section');
          $this->Section->loadByName($section_name);

          if ($this->User->section_id == $this->Section->section_id)
          {
              // Render the page with appropriate permissions
          }
          else
          {
              // Throw an error
          }
    }
}

そのすべての詳細については、これ以上説明しません。ルート、コントローラー、DB クエリなどの処理方法を把握するには、Codeigniter のドキュメントを読む必要があります。

于 2013-07-20T05:42:23.853 に答える