#111: It's now possible for a logged-in user to follow another user from their public profile page
This commit is contained in:
parent
4ec23668ff
commit
245bfe546c
@ -13,6 +13,7 @@ use App\User;
|
||||
use App\UserActivity;
|
||||
use Illuminate\Support\Collection;
|
||||
use Illuminate\Support\Facades\App;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Mail;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
@ -39,6 +40,25 @@ class UserController extends Controller
|
||||
return redirect(route('userSettings'));
|
||||
}
|
||||
|
||||
public function followUser($idOrAlias)
|
||||
{
|
||||
$user = $this->loadUserProfilePage($idOrAlias);
|
||||
|
||||
$isFollowing = $this->getUser()->following()->where('following_user_id', $user->id)->count() > 0;
|
||||
if (!$isFollowing)
|
||||
{
|
||||
$this->getUser()->following()->attach(
|
||||
$user->id,
|
||||
[
|
||||
'created_at' => new \DateTime(),
|
||||
'updated_at' => new \DateTime()
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
return response()->json(true);
|
||||
}
|
||||
|
||||
public function resetEmailChangeState(Request $request)
|
||||
{
|
||||
$user = $this->getUser();
|
||||
@ -128,12 +148,24 @@ class UserController extends Controller
|
||||
|
||||
$daysInMonth = $this->getDaysInMonths();
|
||||
|
||||
// Only logged-in users can follow other users (and if it's not their own page!)
|
||||
$canFollow = !$this->getUser()->isAnonymous() && $this->getUser()->id != $user->id;
|
||||
$isFollowing = false;
|
||||
|
||||
if ($canFollow)
|
||||
{
|
||||
// Is the current user following this user?
|
||||
$isFollowing = $this->getUser()->following()->where('following_user_id', $user->id)->count() > 0;
|
||||
}
|
||||
|
||||
return Theme::render('gallery.user_profile', [
|
||||
'active_tab' => $request->get('tab'),
|
||||
'activity_taken' => $this->constructActivityGrid($activity['taken']),
|
||||
'activity_uploaded' => $this->constructActivityGrid($activity['uploaded']),
|
||||
'albums' => $albums,
|
||||
'cameras' => $cameras,
|
||||
'can_follow' => $canFollow,
|
||||
'is_following' => $isFollowing,
|
||||
'month_days' => $daysInMonth,
|
||||
'user' => $user
|
||||
]);
|
||||
@ -179,6 +211,19 @@ class UserController extends Controller
|
||||
return response()->json($result);
|
||||
}
|
||||
|
||||
public function unFollowUser($idOrAlias)
|
||||
{
|
||||
$user = $this->loadUserProfilePage($idOrAlias);
|
||||
|
||||
$isFollowing = $this->getUser()->following()->where('following_user_id', $user->id)->count() > 0;
|
||||
if ($isFollowing)
|
||||
{
|
||||
$this->getUser()->following()->detach($user->id);
|
||||
}
|
||||
|
||||
return response()->json(true);
|
||||
}
|
||||
|
||||
private function constructActivityGrid(Collection $collection)
|
||||
{
|
||||
$results = [];
|
||||
|
24
app/User.php
24
app/User.php
@ -62,6 +62,23 @@ class User extends Authenticatable
|
||||
]);
|
||||
}
|
||||
|
||||
public function followers()
|
||||
{
|
||||
return $this->belongsToMany(User::class, 'user_followers', 'following_user_id', 'user_id');
|
||||
}
|
||||
|
||||
public function following()
|
||||
{
|
||||
return $this->belongsToMany(User::class, 'user_followers', 'user_id', 'following_user_id');
|
||||
}
|
||||
|
||||
public function followUrl()
|
||||
{
|
||||
return route('followUser', [
|
||||
'idOrAlias' => (!empty($this->profile_alias) ? trim(strtolower($this->profile_alias)) : $this->id)
|
||||
]);
|
||||
}
|
||||
|
||||
public function groups()
|
||||
{
|
||||
return $this->belongsToMany(Group::class, 'user_groups');
|
||||
@ -83,4 +100,11 @@ class User extends Authenticatable
|
||||
{
|
||||
return trim(!empty($this->profile_alias) ? $this->profile_alias : $this->name);
|
||||
}
|
||||
|
||||
public function unFollowUrl()
|
||||
{
|
||||
return route('unFollowUser', [
|
||||
'idOrAlias' => (!empty($this->profile_alias) ? trim(strtolower($this->profile_alias)) : $this->id)
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class CreateUserFollowersTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('user_followers', function (Blueprint $table) {
|
||||
$table->unsignedInteger('user_id');
|
||||
$table->unsignedInteger('following_user_id');
|
||||
$table->timestamps();
|
||||
|
||||
$table->foreign('user_id')
|
||||
->references('id')->on('users')
|
||||
->onDelete('cascade');
|
||||
|
||||
$table->foreign('following_user_id')
|
||||
->references('id')->on('users')
|
||||
->onDelete('cascade');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('user_followers');
|
||||
}
|
||||
}
|
@ -41622,7 +41622,8 @@ function UserViewModel(urls)
|
||||
this.data = {
|
||||
feed_items: [],
|
||||
is_loading: true,
|
||||
selected_view: 'profile'
|
||||
selected_view: 'profile',
|
||||
user_id: 0
|
||||
};
|
||||
|
||||
this.computed = {
|
||||
@ -41635,6 +41636,16 @@ function UserViewModel(urls)
|
||||
};
|
||||
|
||||
this.methods = {
|
||||
followUser: function(e)
|
||||
{
|
||||
$.post(urls.follow_user_url, '', function(data)
|
||||
{
|
||||
window.location.reload(true);
|
||||
});
|
||||
|
||||
e.preventDefault();
|
||||
return false;
|
||||
},
|
||||
loadFeedItems: function(e)
|
||||
{
|
||||
var self = this;
|
||||
@ -41679,6 +41690,16 @@ function UserViewModel(urls)
|
||||
this.selected_view = 'profile';
|
||||
history.pushState('', '', urls.current_url + '?tab=profile');
|
||||
|
||||
e.preventDefault();
|
||||
return false;
|
||||
},
|
||||
unFollowUser: function(e)
|
||||
{
|
||||
$.post(urls.unfollow_user_url, '', function(data)
|
||||
{
|
||||
window.location.reload(true);
|
||||
});
|
||||
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
|
2
public/js/blue-twilight.min.js
vendored
2
public/js/blue-twilight.min.js
vendored
File diff suppressed because one or more lines are too long
@ -86,7 +86,8 @@ function UserViewModel(urls)
|
||||
this.data = {
|
||||
feed_items: [],
|
||||
is_loading: true,
|
||||
selected_view: 'profile'
|
||||
selected_view: 'profile',
|
||||
user_id: 0
|
||||
};
|
||||
|
||||
this.computed = {
|
||||
@ -99,6 +100,16 @@ function UserViewModel(urls)
|
||||
};
|
||||
|
||||
this.methods = {
|
||||
followUser: function(e)
|
||||
{
|
||||
$.post(urls.follow_user_url, '', function(data)
|
||||
{
|
||||
window.location.reload(true);
|
||||
});
|
||||
|
||||
e.preventDefault();
|
||||
return false;
|
||||
},
|
||||
loadFeedItems: function(e)
|
||||
{
|
||||
var self = this;
|
||||
@ -143,6 +154,16 @@ function UserViewModel(urls)
|
||||
this.selected_view = 'profile';
|
||||
history.pushState('', '', urls.current_url + '?tab=profile');
|
||||
|
||||
e.preventDefault();
|
||||
return false;
|
||||
},
|
||||
unFollowUser: function(e)
|
||||
{
|
||||
$.post(urls.unfollow_user_url, '', function(data)
|
||||
{
|
||||
window.location.reload(true);
|
||||
});
|
||||
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
|
@ -96,6 +96,8 @@ return [
|
||||
'albums' => 'Albums by :user_name',
|
||||
'cameras' => 'Cameras',
|
||||
'feed_tab' => 'Activity',
|
||||
'follow_button' => 'Follow',
|
||||
'following_button' => 'Following',
|
||||
'no_albums_p1' => 'No Photo Albums',
|
||||
'no_albums_p2' => ':user_name has not created any albums yet.',
|
||||
'no_feed_activity_p1' => 'No Activity',
|
||||
|
@ -14,6 +14,13 @@
|
||||
</div>
|
||||
|
||||
<div class="col-sm-8 col-md-9 col-xl-10">
|
||||
@if ($can_follow)
|
||||
@if ($is_following)
|
||||
<a class="pull-right btn btn-lg btn-outline-primary" href="#" v-on:click="unFollowUser"><i class="fa fa-check fa-fw"></i> @lang('gallery.user_profile.following_button')</a>
|
||||
@else
|
||||
<a class="pull-right btn btn-lg btn-primary" href="#" v-on:click="followUser">@lang('gallery.user_profile.follow_button')</a>
|
||||
@endif
|
||||
@endif
|
||||
<h1>{{ $user->name }}</h1>
|
||||
@if (!empty($user->profile_alias))
|
||||
<h2 class="text-muted">{{ $user->profile_alias }}</h2>
|
||||
@ -137,10 +144,13 @@
|
||||
<script type="text/javascript">
|
||||
var viewModel = new UserViewModel({
|
||||
current_url: '{{ url()->current() }}',
|
||||
feed_url: '{{ $user->feedJsonUrl() }}'
|
||||
feed_url: '{{ $user->feedJsonUrl() }}',
|
||||
follow_user_url: '{{ $user->followUrl() }}',
|
||||
unfollow_user_url: '{{ $user->unFollowUrl() }}'
|
||||
});
|
||||
|
||||
var app = new Vue(viewModel);
|
||||
app.user_id = '{{ $user->id }}';
|
||||
app.loadFeedItems();
|
||||
|
||||
@if ($active_tab == 'feed')
|
||||
|
@ -143,6 +143,12 @@ Route::get('label/{labelAlias}', 'Gallery\LabelController@show')
|
||||
Route::get('u/{idOrAlias}/feed.json', 'Gallery\UserController@showFeedJson')
|
||||
->name('viewUserFeedJson')
|
||||
->where('idOrAlias', '.*');
|
||||
Route::post('u/{idOrAlias}/follow', 'Gallery\UserController@followUser', ['middleware' => 'auth'])
|
||||
->name('followUser')
|
||||
->where('idOrAlias', '.*');
|
||||
Route::post('u/{idOrAlias}/unfollow', 'Gallery\UserController@unFollowUser', ['middleware' => 'auth'])
|
||||
->name('unFollowUser')
|
||||
->where('idOrAlias', '.*');
|
||||
Route::get('u/{idOrAlias}', 'Gallery\UserController@show')
|
||||
->name('viewUser')
|
||||
->where('idOrAlias', '.*');
|
||||
|
Loading…
Reference in New Issue
Block a user