mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-02-18 02:54:21 +01:00
#2: Properly handle editing tracks and albums that you don't own.
This commit is contained in:
parent
46941b23d9
commit
b715422c24
15 changed files with 51 additions and 55 deletions
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
namespace Poniverse\Ponyfm\Commands;
|
namespace Poniverse\Ponyfm\Commands;
|
||||||
|
|
||||||
|
use Gate;
|
||||||
use Poniverse\Ponyfm\Models\Track;
|
use Poniverse\Ponyfm\Models\Track;
|
||||||
|
|
||||||
class DeleteTrackCommand extends CommandBase
|
class DeleteTrackCommand extends CommandBase
|
||||||
|
@ -41,9 +42,7 @@ class DeleteTrackCommand extends CommandBase
|
||||||
*/
|
*/
|
||||||
public function authorize()
|
public function authorize()
|
||||||
{
|
{
|
||||||
$user = \Auth::user();
|
return Gate::allows('delete', $this->_track);
|
||||||
|
|
||||||
return $this->_track && $user != null && $this->_track->user_id == $user->id;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -142,7 +142,7 @@ class EditTrackCommand extends CommandBase
|
||||||
} else {
|
} else {
|
||||||
if (isset($this->_input['cover'])) {
|
if (isset($this->_input['cover'])) {
|
||||||
$cover = $this->_input['cover'];
|
$cover = $this->_input['cover'];
|
||||||
$track->cover_id = Image::upload($cover, Auth::user())->id;
|
$track->cover_id = Image::upload($cover, $track->user_id)->id;
|
||||||
} else {
|
} else {
|
||||||
if ($this->_input['remove_cover'] == 'true') {
|
if ($this->_input['remove_cover'] == 'true') {
|
||||||
$track->cover_id = null;
|
$track->cover_id = null;
|
||||||
|
|
|
@ -141,13 +141,13 @@ class AlbumsController extends ApiControllerBase
|
||||||
200);
|
200);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getOwned($id)
|
public function getOwned(User $user)
|
||||||
{
|
{
|
||||||
$user = User::findOrFail($id);
|
|
||||||
$this->authorize('get-albums', $user);
|
$this->authorize('get-albums', $user);
|
||||||
|
|
||||||
$query = Album::summary()->where('user_id', $id)->orderBy('created_at', 'desc')->get();
|
$query = Album::summary()->where('user_id', $user->id)->orderBy('created_at', 'desc')->get();
|
||||||
$albums = [];
|
$albums = [];
|
||||||
|
|
||||||
foreach ($query as $album) {
|
foreach ($query as $album) {
|
||||||
$albums[] = [
|
$albums[] = [
|
||||||
'id' => $album->id,
|
'id' => $album->id,
|
||||||
|
|
|
@ -20,17 +20,21 @@
|
||||||
|
|
||||||
namespace Poniverse\Ponyfm\Http\Controllers\Api\Web;
|
namespace Poniverse\Ponyfm\Http\Controllers\Api\Web;
|
||||||
|
|
||||||
|
use Auth;
|
||||||
use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase;
|
use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase;
|
||||||
use Poniverse\Ponyfm\Models\Image;
|
use Poniverse\Ponyfm\Models\Image;
|
||||||
use Cover;
|
use Poniverse\Ponyfm\Models\User;
|
||||||
use Illuminate\Support\Facades\Response;
|
use Response;
|
||||||
|
|
||||||
class ImagesController extends ApiControllerBase
|
class ImagesController extends ApiControllerBase
|
||||||
{
|
{
|
||||||
public function getOwned()
|
public function getOwned(User $user)
|
||||||
{
|
{
|
||||||
$query = Image::where('uploaded_by', \Auth::user()->id);
|
$this->authorize('get-images', $user);
|
||||||
|
|
||||||
|
$query = Image::where('uploaded_by', $user->id);
|
||||||
$images = [];
|
$images = [];
|
||||||
|
|
||||||
foreach ($query->get() as $image) {
|
foreach ($query->get() as $image) {
|
||||||
$images[] = [
|
$images[] = [
|
||||||
'id' => $image->id,
|
'id' => $image->id,
|
||||||
|
|
|
@ -132,13 +132,12 @@ Route::group(['prefix' => 'api/web'], function() {
|
||||||
Route::group(['middleware' => 'auth'], function() {
|
Route::group(['middleware' => 'auth'], function() {
|
||||||
Route::get('/account/settings', 'Api\Web\AccountController@getSettings');
|
Route::get('/account/settings', 'Api\Web\AccountController@getSettings');
|
||||||
|
|
||||||
Route::get('/images/owned', 'Api\Web\ImagesController@getOwned');
|
|
||||||
|
|
||||||
Route::get('/tracks/owned', 'Api\Web\TracksController@getOwned');
|
Route::get('/tracks/owned', 'Api\Web\TracksController@getOwned');
|
||||||
Route::get('/tracks/edit/{id}', 'Api\Web\TracksController@getEdit');
|
Route::get('/tracks/edit/{id}', 'Api\Web\TracksController@getEdit');
|
||||||
|
|
||||||
Route::get('/users/{id}/albums', 'Api\Web\AlbumsController@getOwned')->where('id', '\d+');
|
Route::get('/users/{userId}/albums', 'Api\Web\AlbumsController@getOwned')->where('id', '\d+');
|
||||||
// Route::get('/albums/owned', 'Api\Web\AlbumsController@getOwned');
|
Route::get('/users/{userId}/images', 'Api\Web\ImagesController@getOwned')->where('id', '\d+');
|
||||||
|
|
||||||
Route::get('/albums/edit/{id}', 'Api\Web\AlbumsController@getEdit');
|
Route::get('/albums/edit/{id}', 'Api\Web\AlbumsController@getEdit');
|
||||||
|
|
||||||
Route::get('/playlists/owned', 'Api\Web\PlaylistsController@getOwned');
|
Route::get('/playlists/owned', 'Api\Web\PlaylistsController@getOwned');
|
||||||
|
|
|
@ -68,7 +68,7 @@ class Image extends Model
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param UploadedFile $file
|
* @param UploadedFile $file
|
||||||
* @param $user
|
* @param int|User $user
|
||||||
* @param bool $forceReupload forces the image to be re-processed even if a matching hash is found
|
* @param bool $forceReupload forces the image to be re-processed even if a matching hash is found
|
||||||
* @return Image
|
* @return Image
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
|
|
|
@ -27,4 +27,8 @@ class UserPolicy
|
||||||
public function getAlbums(User $userToAuthorize, User $user) {
|
public function getAlbums(User $userToAuthorize, User $user) {
|
||||||
return $userToAuthorize->id === $user->id || $userToAuthorize->hasRole('admin');
|
return $userToAuthorize->id === $user->id || $userToAuthorize->hasRole('admin');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getImages(User $userToAuthorize, User $user) {
|
||||||
|
return $userToAuthorize->id === $user->id || $userToAuthorize->hasRole('admin');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,7 @@ namespace Poniverse\Ponyfm\Providers;
|
||||||
|
|
||||||
use Illuminate\Routing\Router;
|
use Illuminate\Routing\Router;
|
||||||
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
|
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
|
||||||
|
use Poniverse\Ponyfm\Models\User;
|
||||||
|
|
||||||
class RouteServiceProvider extends ServiceProvider
|
class RouteServiceProvider extends ServiceProvider
|
||||||
{
|
{
|
||||||
|
@ -42,9 +43,9 @@ class RouteServiceProvider extends ServiceProvider
|
||||||
*/
|
*/
|
||||||
public function boot(Router $router)
|
public function boot(Router $router)
|
||||||
{
|
{
|
||||||
//
|
|
||||||
|
|
||||||
parent::boot($router);
|
parent::boot($router);
|
||||||
|
|
||||||
|
$router->model('userId', User::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -82,7 +82,7 @@
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
<div class="form-row span6" ng-class="{'has-error': errors.cover != null}">
|
<div class="form-row span6" ng-class="{'has-error': errors.cover != null}">
|
||||||
<label class="strong">Track Cover: </label>
|
<label class="strong">Track Cover: </label>
|
||||||
<pfm-image-upload set-image="setCover" image="track.cover_url" />
|
<pfm-image-upload set-image="setCover" image="track.cover_url" user-id="track.user_id"></pfm-image-upload>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-row span6" ng-class="{'has-error': errors.released_at != null}">
|
<div class="form-row span6" ng-class="{'has-error': errors.released_at != null}">
|
||||||
<label for="released_at" class="strong">Release Date:</label>
|
<label for="released_at" class="strong">Release Date:</label>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<div class="single-player">
|
<div class="single-player">
|
||||||
<a href="#" class="play-button" pfm-eat-click ng-click="play()">
|
<a href="#" class="play-button" pfm-eat-click ng-click="play()">
|
||||||
<i class="icon-play" ng-show="!track.isPlaying"></i>
|
<i class="icon-play" ng-if="!track.isPlaying"></i>
|
||||||
<i class="icon-pause" ng-hide="!track.isPlaying"></i>
|
<i class="icon-pause" ng-if="track.isPlaying"></i>
|
||||||
</a>
|
</a>
|
||||||
<img pfm-src-loader="::track.covers.thumbnail" pfm-src-size="thumbnail" />
|
<img pfm-src-loader="::track.covers.thumbnail" pfm-src-size="thumbnail" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
# Pony.fm - A community for pony fan music.
|
|
||||||
# Copyright (C) 2015 Peter Deltchev
|
|
||||||
#
|
|
||||||
# This program is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU Affero General Public License as published by
|
|
||||||
# the Free Software Foundation, either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU Affero General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU Affero General Public License
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
module.exports = angular.module('ponyfm').controller "account-image-select", [
|
|
||||||
'$scope'
|
|
||||||
($scope) ->
|
|
||||||
$scope.images = []
|
|
||||||
$scope.isLoading = true
|
|
||||||
|
|
||||||
$.getJSON('/api/web/images/owned').done (images) -> $scope.$apply ->
|
|
||||||
$scope.images = images
|
|
||||||
$scope.isLoading = false
|
|
||||||
]
|
|
|
@ -30,6 +30,11 @@ module.exports = angular.module('ponyfm').controller "track", [
|
||||||
$scope.$on 'track-updated', () ->
|
$scope.$on 'track-updated', () ->
|
||||||
updateTrackData(true)
|
updateTrackData(true)
|
||||||
|
|
||||||
|
$scope.$on 'track-deleted', () ->
|
||||||
|
# This is meant to take you back to whatever state you found
|
||||||
|
# this track from.
|
||||||
|
$window.history.go(-2)
|
||||||
|
|
||||||
$scope.playlists = []
|
$scope.playlists = []
|
||||||
|
|
||||||
if auth.data.isLogged
|
if auth.data.isLogged
|
||||||
|
|
|
@ -23,6 +23,8 @@ module.exports = angular.module('ponyfm').directive 'pfmImageUpload', () ->
|
||||||
scope:
|
scope:
|
||||||
setImage: '=setImage'
|
setImage: '=setImage'
|
||||||
image: '=image'
|
image: '=image'
|
||||||
|
# ID of the user to upload images on behalf of
|
||||||
|
userId: '=userId'
|
||||||
|
|
||||||
compile: (element) ->
|
compile: (element) ->
|
||||||
$image = element.find 'img'
|
$image = element.find 'img'
|
||||||
|
@ -31,6 +33,7 @@ module.exports = angular.module('ponyfm').directive 'pfmImageUpload', () ->
|
||||||
controller: [
|
controller: [
|
||||||
'images', '$scope', 'lightbox'
|
'images', '$scope', 'lightbox'
|
||||||
(images, $scope, lightbox) ->
|
(images, $scope, lightbox) ->
|
||||||
|
|
||||||
$scope.imageObject = null
|
$scope.imageObject = null
|
||||||
$scope.imageFile = null
|
$scope.imageFile = null
|
||||||
$scope.imageUrl = null
|
$scope.imageUrl = null
|
||||||
|
@ -40,7 +43,7 @@ module.exports = angular.module('ponyfm').directive 'pfmImageUpload', () ->
|
||||||
$scope.$watch 'image', (val) ->
|
$scope.$watch 'image', (val) ->
|
||||||
$scope.imageObject = $scope.imageFile = $scope.imageUrl = null
|
$scope.imageObject = $scope.imageFile = $scope.imageUrl = null
|
||||||
$scope.isImageLoaded = false
|
$scope.isImageLoaded = false
|
||||||
return if !val
|
return unless val?
|
||||||
|
|
||||||
$scope.imageUrl = val
|
$scope.imageUrl = val
|
||||||
$image.attr 'src', val
|
$image.attr 'src', val
|
||||||
|
@ -50,7 +53,9 @@ module.exports = angular.module('ponyfm').directive 'pfmImageUpload', () ->
|
||||||
$scope.isImageLoaded = true
|
$scope.isImageLoaded = true
|
||||||
window.setTimeout (() -> window.alignVertically($image)), 0
|
window.setTimeout (() -> window.alignVertically($image)), 0
|
||||||
|
|
||||||
images.refresh().done (images) -> $scope.images = images
|
$scope.$watch 'userId', (val)->
|
||||||
|
return unless val?
|
||||||
|
images.refresh(false, $scope.userId).done (images) -> $scope.images = images
|
||||||
|
|
||||||
$scope.previewImage = () ->
|
$scope.previewImage = () ->
|
||||||
return if !$scope.isImageLoaded
|
return if !$scope.isImageLoaded
|
||||||
|
|
|
@ -91,7 +91,7 @@ module.exports = angular.module('ponyfm').directive 'pfmTrackEditor', () ->
|
||||||
$scope.track.is_published = true
|
$scope.track.is_published = true
|
||||||
$scope.isDirty = false
|
$scope.isDirty = false
|
||||||
$scope.errors = {}
|
$scope.errors = {}
|
||||||
images.refresh true
|
images.refresh(true, track.user_id)
|
||||||
|
|
||||||
formData = new FormData();
|
formData = new FormData();
|
||||||
_.each $scope.track, (value, name) ->
|
_.each $scope.track, (value, name) ->
|
||||||
|
@ -129,6 +129,7 @@ module.exports = angular.module('ponyfm').directive 'pfmTrackEditor', () ->
|
||||||
# ========================================
|
# ========================================
|
||||||
tracks.getEdit($scope.trackId, true)
|
tracks.getEdit($scope.trackId, true)
|
||||||
.then (track)->
|
.then (track)->
|
||||||
|
images.refresh(true, track.user_id)
|
||||||
$.when(
|
$.when(
|
||||||
albums.refresh(false, track.user_id),
|
albums.refresh(false, track.user_id),
|
||||||
taxonomies.refresh()
|
taxonomies.refresh()
|
||||||
|
@ -139,6 +140,7 @@ module.exports = angular.module('ponyfm').directive 'pfmTrackEditor', () ->
|
||||||
for album in albums
|
for album in albums
|
||||||
albumsDb[album.id] = album
|
albumsDb[album.id] = album
|
||||||
$scope.albums.push album
|
$scope.albums.push album
|
||||||
|
$scope.selectedAlbum = if track.album_id then albumsDb[track.album_id] else null
|
||||||
|
|
||||||
|
|
||||||
# Update track data
|
# Update track data
|
||||||
|
@ -153,6 +155,7 @@ module.exports = angular.module('ponyfm').directive 'pfmTrackEditor', () ->
|
||||||
$scope.track =
|
$scope.track =
|
||||||
id: track.id
|
id: track.id
|
||||||
title: track.title
|
title: track.title
|
||||||
|
user_id: track.user_id
|
||||||
description: track.description
|
description: track.description
|
||||||
lyrics: track.lyrics
|
lyrics: track.lyrics
|
||||||
is_explicit: track.is_explicit
|
is_explicit: track.is_explicit
|
||||||
|
@ -169,7 +172,6 @@ module.exports = angular.module('ponyfm').directive 'pfmTrackEditor', () ->
|
||||||
is_published: track.is_published
|
is_published: track.is_published
|
||||||
is_listed: track.is_listed
|
is_listed: track.is_listed
|
||||||
|
|
||||||
$scope.selectedAlbum = if track.album_id then albumsDb[track.album_id] else null
|
|
||||||
$scope.selectedSongs = {}
|
$scope.selectedSongs = {}
|
||||||
$scope.selectedSongs[song.id] = song for song in track.show_songs
|
$scope.selectedSongs[song.id] = song for song in track.show_songs
|
||||||
updateSongDisplay()
|
updateSongDisplay()
|
||||||
|
|
|
@ -18,17 +18,21 @@ module.exports = angular.module('ponyfm').factory('images', [
|
||||||
'$rootScope'
|
'$rootScope'
|
||||||
($rootScope) ->
|
($rootScope) ->
|
||||||
def = null
|
def = null
|
||||||
|
currentlyLoadedUserId = null
|
||||||
|
|
||||||
self =
|
self =
|
||||||
images: []
|
images: []
|
||||||
isLoading: true
|
isLoading: true
|
||||||
refresh: (force) ->
|
|
||||||
return def if !force && def
|
refresh: (force, userId = window.pfm.auth.user.id) ->
|
||||||
|
return def if !force && def && userId == currentlyLoadedUserId
|
||||||
def = new $.Deferred()
|
def = new $.Deferred()
|
||||||
|
|
||||||
self.images = []
|
self.images = []
|
||||||
self.isLoading = true
|
self.isLoading = true
|
||||||
|
|
||||||
$.getJSON('/api/web/images/owned').done (images) -> $rootScope.$apply ->
|
$.getJSON("/api/web/users/#{userId}/images").done (images) -> $rootScope.$apply ->
|
||||||
|
currentlyLoadedUserId = userId
|
||||||
self.images = images
|
self.images = images
|
||||||
self.isLoading = false
|
self.isLoading = false
|
||||||
def.resolve images
|
def.resolve images
|
||||||
|
@ -38,4 +42,3 @@ module.exports = angular.module('ponyfm').factory('images', [
|
||||||
self.refresh()
|
self.refresh()
|
||||||
return self
|
return self
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue