Inheritance: extends Base, implements Illuminate\Contracts\Auth\Authenticatable, implements FluxBB\Models\HasPermissions
示例#1
0
文件: GetPost.php 项目: fluxbb/core
 protected function run()
 {
     $id = $this->get('id');
     $post = $this->conversations->findPostById($id);
     $page = $this->conversations->getPageOfPost($post, User::current()->dispPosts());
     return ['post' => $post, 'page' => $page];
 }
示例#2
0
 public function get_index()
 {
     // TODO: Get list of forums and topics with new posts since last visit & get all topics that were marked as read
     // Fetch the categories and forums
     $categories = Category::allForGroup(User::current()->group_id);
     $view = \View::make('fluxbb::index');
     $view['categories'] = $categories;
     return $view;
 }
示例#3
0
 protected function run()
 {
     $tid = $this->get('id');
     $topic = Topic::findOrFail($tid);
     $user = User::current();
     if (!$topic->subscribers->contains($user)) {
         $topic->subscribers()->attach($user);
         $this->raise(new UserSubscribed($topic, $user));
     }
 }
示例#4
0
文件: Reply.php 项目: fluxbb/core
 protected function run()
 {
     $id = $this->get('id');
     $conversation = $this->conversations->findById($id);
     $creator = User::current();
     $post = new Post(['poster' => $creator->username, 'poster_id' => $creator->id, 'message' => $this->get('message'), 'posted' => Carbon::now()]);
     $this->conversations->addReply($conversation, $post);
     $this->raise(new UserHasPosted($creator, $post));
     return ['post' => $post];
 }
示例#5
0
文件: EditPost.php 项目: fluxbb/core
 protected function run()
 {
     $pid = $this->get('id');
     $post = Post::with('author', 'topic')->findOrFail($pid);
     $creator = User::current();
     $post->fill(['message' => $this->get('message'), 'edited' => Carbon::now(), 'edited_by' => $creator->username]);
     $post->save();
     $this->raise(new PostWasEdited($post, $creator));
     return ['post' => $post];
 }
示例#6
0
 protected function handleRequest(Request $request)
 {
     $pid = \Route::input('id');
     // If a post ID is specified we determine topic ID and page number so we can show the correct message
     $this->post = Post::findOrFail($pid);
     // Determine on which page the post is located
     $numPosts = Post::where('topic_id', '=', $this->post->topic_id)->where('posted', '<', $this->post->posted)->count('id') + 1;
     $dispPosts = User::current()->dispPosts();
     $this->page = ceil($numPosts / $dispPosts);
 }
示例#7
0
 /**
  * Run the action and return a response for the user.
  *
  * @throws Exception\ValidationException
  * @return void
  */
 protected function run()
 {
     $creator = User::current();
     $this->post->fill(['message' => $this->message, 'edited' => Carbon::now(), 'edited_by' => $creator->username]);
     if (!$this->validator->isValid($this->post)) {
         throw new ValidationException();
     }
     $this->post->save();
     $this->trigger('post.edited', [$this->post, $creator]);
 }
示例#8
0
 /**
  * Run the action and return a response for the user.
  *
  * @return void
  */
 protected function run()
 {
     $rules = $this->getValidationRules();
     $validation = $this->validator->make($this->input, $rules);
     if ($validation->fails()) {
         return $this->mergeErrors($validation->errors());
     }
     $userData = array('username' => $this->input['user'], 'group_id' => Config::get('o_default_user_group'), 'password' => $this->input['password'], 'email' => $this->input['email'], 'email_setting' => Config::get('o_default_email_setting'), 'timezone' => Config::get('o_default_timezone'), 'dst' => Config::get('o_default_dst'), 'language' => Config::get('o_default_lang'), 'style' => Config::get('o_default_style'), 'registration_ip' => $this->request->getClientIp(), 'last_visit' => $this->request->server('REQUEST_TIME', time()));
     $user = User::create($userData);
     $this->trigger('user.registered', array($user));
 }
示例#9
0
 /**
  * Run the action and return a response for the user.
  *
  * @throws Exception\ValidationException
  * @return void
  */
 protected function run()
 {
     $creator = User::current();
     $this->post = new Post(['poster' => $creator->username, 'poster_id' => $creator->id, 'message' => $this->message, 'posted' => Carbon::now()]);
     if (!$this->validator->isValid($this->post)) {
         throw new ValidationException();
     }
     $this->topic->addReply($this->post);
     $this->post->save();
     $this->trigger('user.posted', [$creator, $this->post]);
 }
示例#10
0
文件: NewTopic.php 项目: fluxbb/core
 /**
  * Run the action and return a response for the user.
  *
  * @return array
  */
 protected function run()
 {
     $slug = $this->get('slug');
     $category = $this->categories->findBySlug($slug);
     $creator = User::current();
     $now = Carbon::now();
     $conversation = (object) ['poster' => $creator->username, 'title' => $this->get('subject'), 'posted' => $now, 'last_post' => $now, 'last_poster' => $creator->username, 'category_slug' => $category->slug];
     $post = new Post(['poster' => $creator->username, 'poster_id' => $creator->id, 'message' => $this->get('message'), 'posted' => $now]);
     $this->categories->addNewTopic($category, $conversation, $post->toArray());
     $this->raise(new UserHasPosted($creator, $post));
 }
示例#11
0
 public function subscribe($subscribe = true)
 {
     // To subscribe or not to subscribe, that ...
     if (!Config::enabled('o_topic_subscriptions') || !Auth::check()) {
         return false;
     }
     if ($subscribe && !$this->isUserSubscribed()) {
         $this->subscription()->insert(array('user_id' => User::current()->id));
     } elseif (!$subscribe && $this->isUserSubscribed()) {
         $this->subscription()->delete();
     }
 }
示例#12
0
 public function admin($arguments = array())
 {
     if (count($arguments) != 3) {
         throw new BadMethodCallException('Exactly three arguments expected.');
     }
     $username = $arguments[0];
     $password = $arguments[1];
     $email = $arguments[2];
     // Create admin user
     $admin_user = User::create(array('username' => $username, 'password' => $password, 'email' => $email, 'language' => Laravel\Config::get('application.language'), 'style' => 'Air', 'last_post' => Request::time(), 'registered' => Request::time(), 'registration_ip' => Request::ip(), 'last_visit' => Request::time()));
     $admin_group = Group::find(Group::ADMIN);
     if (is_null($admin_group)) {
         throw new LogicException('Could not find admin group.');
     }
     $admin_group->users()->insert($admin_user);
 }
示例#13
0
 public function post_register()
 {
     $rules = array('user' => 'Required|Between:2,25|username_not_guest|no_ip|username_not_reserved|no_bbcode|not_censored|Unique:users,username|username_not_banned');
     // If email confirmation is enabled
     if (Config::enabled('o_regs_verify')) {
         $rules['email'] = 'Required|Email|Confirmed|unique:users,email|email_not_banned';
     } else {
         $rules['password'] = '******';
         $rules['email'] = 'Required|Email|Unique:users,email';
     }
     // Agree to forum rules
     if (Config::enabled('o_rules')) {
         $rules['rules'] = 'Accepted';
     }
     $validation = $this->make_validator(\Input::all(), $rules);
     if ($validation->fails()) {
         return \Redirect::route('register')->withInput(\Input::all())->with('errors', $validation->getMessages());
     }
     $user_data = array('username' => \Input::get('user'), 'group_id' => Config::enabled('o_regs_verify') ? Group::UNVERIFIED : Config::get('o_default_user_group'), 'password' => \Input::get('password'), 'email' => \Input::get('email'), 'email_setting' => Config::get('o_default_email_setting'), 'timezone' => Config::get('o_default_timezone'), 'dst' => Config::get('o_default_dst'), 'language' => Config::get('o_default_lang'), 'style' => Config::get('o_default_style'), 'registered' => \Request::time(), 'registration_ip' => \Request::ip(), 'last_visit' => \Request::time());
     $user = User::create($user_data);
     return \Redirect::action('fluxbb::home@index')->with('message', trans('fluxbb::register.reg_complete'));
 }
示例#14
0
 public function user()
 {
     return User::current();
 }
示例#15
0
 public function get_list()
 {
     $users = u::paginate(20);
     return \View::make('fluxbb::user.list')->with('users', $users);
 }
示例#16
0
 public function handle(User $user)
 {
     $user->last_post = Carbon::now();
     $user->num_posts += 1;
     $user->save();
 }
示例#17
0
文件: Guest.php 项目: fluxbb/core
 public function __construct($attributes = array())
 {
     parent::__construct($attributes);
     $this->id = 1;
     $this->group_id = 1;
 }
示例#18
0
 /**
  * Run the action and return a response for the user.
  *
  * @return void
  */
 protected function run()
 {
     $user = new User(['username' => $this->get('username'), 'group_id' => $this->config->get('o_default_user_group'), 'password' => $this->get('password'), 'email' => $this->get('email'), 'email_setting' => $this->config->get('o_default_email_setting'), 'timezone' => $this->config->get('o_default_timezone'), 'dst' => $this->config->get('o_default_dst'), 'language' => $this->config->get('o_default_lang'), 'style' => $this->config->get('o_default_style'), 'registration_ip' => $this->get('ip')]);
     $user->save();
     $this->raise(new UserHasRegistered($user));
 }
示例#19
0
 protected function handleRequest(Request $request)
 {
     $users = User::paginate(20);
     $this->data['users'] = $users;
 }
示例#20
0
 protected function handleRequest(Request $request)
 {
     $group_id = User::current()->group_id;
     $categories = Category::allForGroup($group_id);
     $this->data['categories'] = $categories;
 }
示例#21
0
 /**
  * Delete all expired sessions from persistent storage.
  *
  * @param  int   $expiration
  * @return void
  */
 public function sweep($expiration)
 {
     $expiration = Request::time() - Config::get('o_timeout_online');
     // Fetch all sessions that are older than o_timeout_online
     $result = $this->table()->where('user_id', '!=', 1)->where('last_visit', '<', $expiration)->get();
     $delete_ids = array();
     foreach ($result as $cur_session) {
         $delete_ids[] = $cur_session->id;
         $result = $this->connection->table('users')->where_id($cur_session->user_id)->update(array('last_visit' => $cur_session->last_visit));
     }
     // Make sure logged-in users have no more than ten sessions alive
     if (Auth::check()) {
         $uid = User::current()->id;
         $session_ids = $this->table()->where_user_id($uid)->order_by('last_visit', 'desc')->lists('id');
         $prune_ids = array_slice($session_ids, 10);
         $delete_ids = array_merge($delete_ids, $prune_ids);
     }
     if (!empty($delete_ids)) {
         $this->table()->where_in('id', $delete_ids)->or_where('last_visit', '<', $expiration)->delete();
     }
 }
示例#22
0
 protected function handleRequest(Request $request)
 {
     $uid = \Route::input('id');
     $user = User::findOrFail($uid);
     $this->data['user'] = $user;
 }
示例#23
0
 public function put_topic($fid)
 {
     $forum = Forum::with(array('perms'))->where('id', '=', $fid)->first();
     if ($forum === NULL) {
         return \Event::first('404');
     }
     // TODO: Flood protection
     $rules = array('req_subject' => 'required|max:70', 'req_message' => 'required');
     // TODO: More validation
     if (\Auth::isGuest()) {
         if (Config::enabled('p_force_guest_email') || \Input::get('email') != '') {
             $rules['req_email'] = 'required|email';
         }
         // TODO: banned email
     }
     $validation = $this->make_validator(Input::all(), $rules);
     if ($validation->fails()) {
         return \Redirect::to_action('fluxbb::posting@topic', array($fid))->with_input()->with_errors($validation);
     }
     $topic_data = array('poster' => User::current()->username, 'subject' => \Input::get('req_subject'), 'posted' => \Request::time(), 'last_post' => \Request::time(), 'last_poster' => User::current()->username, 'sticky' => \Input::get('stick_topic') ? '1' : '0', 'forum_id' => $fid);
     if (\Auth::isGuest()) {
         $topic_data['poster'] = $topic_data['last_poster'] = \Input::get('req_username');
     }
     // Create the topic
     $topic = Topic::create($topic_data);
     // To subscribe or not to subscribe
     $topic->subscribe(\Input::get('subscribe'));
     $post_data = array('poster' => User::current()->username, 'poster_id' => User::current()->id, 'poster_ip' => \Request::ip(), 'message' => \Input::get('req_message'), 'hide_smilies' => \Input::get('hide_smilies') ? '1' : '0', 'posted' => \Request::time(), 'topic_id' => $topic->id);
     if (\Auth::isGuest()) {
         $post_data['poster'] = \Input::get('req_username');
         $post_data['poster_email'] = Config::enabled('p_force_guest_email') ? \Input::get('req_email') : \Input::get('email');
     }
     // Create the post ("topic post")
     $post = Post::create($post_data);
     // Update the topic with last_post_id
     $topic->last_post_id = $topic->first_post_id = $post->id;
     $topic->save();
     // Update forum (maybe $forum->update_forum() ?)
     $forum->num_posts += 1;
     $forum->num_topics += 1;
     $forum->last_post = $topic->last_post;
     $forum->last_post_id = $topic->last_post_id;
     $forum->last_poster = $topic->last_poster;
     $forum->save();
     // TODO: update_search_index();
     // If the posting user is logged in, increment his/her post count
     $user = User::current();
     if (\Auth::isAuthed()) {
         $user->num_posts += 1;
         $user->last_post = \Request::time();
         $user->save();
         // TODO: Promote this user to a new group if enabled
     } else {
         $user->online()->update(array('last_post' => \Request::time()));
     }
     return \Redirect::to_action('fluxbb::topic', array($topic->id))->with('message', trans('fluxbb::topic.topic_added'));
 }
示例#24
0
 protected function user()
 {
     return User::current();
 }