mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
feat: api support for playlist bookmarks
This commit is contained in:
parent
d67e50b5b8
commit
c09acaa841
9 changed files with 395 additions and 5 deletions
|
@ -11,10 +11,7 @@ import io.activej.launchers.http.MultithreadedHttpServerLauncher;
|
|||
import it.unimi.dsi.fastutil.objects.ObjectArrayList;
|
||||
import me.kavin.piped.consts.Constants;
|
||||
import me.kavin.piped.server.handlers.*;
|
||||
import me.kavin.piped.server.handlers.auth.AuthPlaylistHandlers;
|
||||
import me.kavin.piped.server.handlers.auth.FeedHandlers;
|
||||
import me.kavin.piped.server.handlers.auth.StorageHandlers;
|
||||
import me.kavin.piped.server.handlers.auth.UserHandlers;
|
||||
import me.kavin.piped.server.handlers.auth.*;
|
||||
import me.kavin.piped.utils.*;
|
||||
import me.kavin.piped.utils.resp.*;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
@ -453,6 +450,34 @@ public class ServerLauncher extends MultithreadedHttpServerLauncher {
|
|||
} catch (Exception e) {
|
||||
return getErrorResponse(e, request.getPath());
|
||||
}
|
||||
})).map(POST, "/user/bookmarks/create", AsyncServlet.ofBlocking(executor, request -> {
|
||||
try {
|
||||
var playlistId = mapper.readTree(request.loadBody().getResult().asArray()).get("playlistId").textValue();
|
||||
return getJsonResponse(PlaylistBookmarkHandlers.createPlaylistBookmarkResponse(request.getHeader(AUTHORIZATION), playlistId), "private");
|
||||
} catch (Exception e) {
|
||||
return getErrorResponse(e, request.getPath());
|
||||
}
|
||||
})).map(GET, "/user/bookmarks", AsyncServlet.ofBlocking(executor, request -> {
|
||||
try {
|
||||
return getJsonResponse(PlaylistBookmarkHandlers.playlistBookmarksResponse(request.getHeader(AUTHORIZATION)), "private");
|
||||
} catch (Exception e) {
|
||||
return getErrorResponse(e, request.getPath());
|
||||
}
|
||||
})).map(GET, "/user/bookmarks/bookmarked", AsyncServlet.ofBlocking(executor, request -> {
|
||||
try {
|
||||
return getJsonResponse(PlaylistBookmarkHandlers.isBookmarkedResponse(request.getHeader(AUTHORIZATION),
|
||||
request.getQueryParameter("playlistId")), "private");
|
||||
} catch (Exception e) {
|
||||
return getErrorResponse(e, request.getPath());
|
||||
}
|
||||
})).map(POST, "/user/bookmarks/delete", AsyncServlet.ofBlocking(executor, request -> {
|
||||
try {
|
||||
var json = mapper.readTree(request.loadBody().getResult().asArray());
|
||||
var playlistId = json.get("playlistId").textValue();
|
||||
return getJsonResponse(PlaylistBookmarkHandlers.deletePlaylistBookmarkResponse(request.getHeader(AUTHORIZATION), playlistId), "private");
|
||||
} catch (Exception e) {
|
||||
return getErrorResponse(e, request.getPath());
|
||||
}
|
||||
})).map(GET, "/registered/badge", AsyncServlet.ofBlocking(executor, request -> {
|
||||
try {
|
||||
return HttpResponse.ofCode(302).withHeader(LOCATION, GenericHandlers.registeredBadgeRedirect())
|
||||
|
|
|
@ -0,0 +1,122 @@
|
|||
package me.kavin.piped.server.handlers.auth;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||
import com.fasterxml.jackson.databind.node.ObjectNode;
|
||||
import it.unimi.dsi.fastutil.objects.ObjectArrayList;
|
||||
import me.kavin.piped.utils.DatabaseHelper;
|
||||
import me.kavin.piped.utils.DatabaseSessionFactory;
|
||||
import me.kavin.piped.utils.ExceptionHandler;
|
||||
import me.kavin.piped.utils.obj.db.PlaylistBookmark;
|
||||
import me.kavin.piped.utils.obj.db.User;
|
||||
import me.kavin.piped.utils.resp.AcceptedResponse;
|
||||
import me.kavin.piped.utils.resp.AuthenticationFailureResponse;
|
||||
import me.kavin.piped.utils.resp.BookmarkedStatusResponse;
|
||||
import me.kavin.piped.utils.resp.InvalidRequestResponse;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.hibernate.Session;
|
||||
import org.schabi.newpipe.extractor.exceptions.ExtractionException;
|
||||
import org.schabi.newpipe.extractor.playlist.PlaylistInfo;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import static me.kavin.piped.consts.Constants.mapper;
|
||||
import static me.kavin.piped.utils.URLUtils.*;
|
||||
|
||||
public class PlaylistBookmarkHandlers {
|
||||
public static byte[] createPlaylistBookmarkResponse(String session, String playlistId) throws IOException, ExtractionException {
|
||||
|
||||
if (StringUtils.isBlank(session) || StringUtils.isBlank(playlistId))
|
||||
ExceptionHandler.throwErrorResponse(new InvalidRequestResponse("session and name are required parameters"));
|
||||
|
||||
User user = DatabaseHelper.getUserFromSession(session);
|
||||
|
||||
if (user == null) ExceptionHandler.throwErrorResponse(new AuthenticationFailureResponse());
|
||||
|
||||
try (Session s = DatabaseSessionFactory.createSession()) {
|
||||
if (DatabaseHelper.isBookmarked(s, user, playlistId)) {
|
||||
var bookmark = DatabaseHelper.getPlaylistBookmarkFromPlaylistId(s, user, playlistId);
|
||||
return mapper.writeValueAsBytes(createPlaylistBookmarkResponseItem(bookmark));
|
||||
}
|
||||
|
||||
final PlaylistInfo info = PlaylistInfo.getInfo("https://www.youtube.com/playlist?list=" + playlistId);
|
||||
|
||||
var playlistBookmark = new PlaylistBookmark(playlistId, info.getName(), info.getDescription().getContent(), getLastThumbnail(info.getThumbnails()), info.getUploaderName(), substringYouTube(info.getUploaderUrl()), getLastThumbnail(info.getUploaderAvatars()), info.getStreamCount(), user);
|
||||
|
||||
var tr = s.beginTransaction();
|
||||
s.persist(playlistBookmark);
|
||||
tr.commit();
|
||||
|
||||
ObjectNode response = createPlaylistBookmarkResponseItem(playlistBookmark);
|
||||
|
||||
return mapper.writeValueAsBytes(response);
|
||||
}
|
||||
}
|
||||
|
||||
public static byte[] deletePlaylistBookmarkResponse(String session, String playlistId) throws IOException {
|
||||
|
||||
if (StringUtils.isBlank(session) || StringUtils.isBlank(playlistId))
|
||||
ExceptionHandler.throwErrorResponse(new InvalidRequestResponse("session and playlistId are required parameters"));
|
||||
|
||||
User user = DatabaseHelper.getUserFromSession(session);
|
||||
|
||||
if (user == null) ExceptionHandler.throwErrorResponse(new AuthenticationFailureResponse());
|
||||
|
||||
try (Session s = DatabaseSessionFactory.createSession()) {
|
||||
|
||||
DatabaseHelper.deletePlaylistBookmark(s, user, playlistId);
|
||||
|
||||
return mapper.writeValueAsBytes(new AcceptedResponse());
|
||||
}
|
||||
}
|
||||
|
||||
public static byte[] playlistBookmarksResponse(String session) throws IOException {
|
||||
|
||||
if (StringUtils.isBlank(session))
|
||||
ExceptionHandler.throwErrorResponse(new InvalidRequestResponse("session is a required parameter"));
|
||||
|
||||
User user = DatabaseHelper.getUserFromSession(session);
|
||||
|
||||
if (user == null) ExceptionHandler.throwErrorResponse(new AuthenticationFailureResponse());
|
||||
|
||||
try (Session s = DatabaseSessionFactory.createSession()) {
|
||||
|
||||
var responseArray = new ObjectArrayList<>();
|
||||
var playlistBookmarks = DatabaseHelper.getPlaylistBookmarks(s, user);
|
||||
|
||||
for (PlaylistBookmark bookmark : playlistBookmarks) {
|
||||
responseArray.add(createPlaylistBookmarkResponseItem(bookmark));
|
||||
}
|
||||
|
||||
return mapper.writeValueAsBytes(responseArray);
|
||||
}
|
||||
}
|
||||
|
||||
public static byte[] isBookmarkedResponse(String session, String playlistId) throws IOException {
|
||||
|
||||
if (StringUtils.isBlank(session) || StringUtils.isBlank(playlistId))
|
||||
ExceptionHandler.throwErrorResponse(new InvalidRequestResponse("session and playlistId are required parameters"));
|
||||
|
||||
User user = DatabaseHelper.getUserFromSession(session);
|
||||
|
||||
if (user == null) ExceptionHandler.throwErrorResponse(new AuthenticationFailureResponse());
|
||||
|
||||
try (Session s = DatabaseSessionFactory.createSession()) {
|
||||
boolean isBookmarked = DatabaseHelper.isBookmarked(s, user, playlistId);
|
||||
|
||||
return mapper.writeValueAsBytes(new BookmarkedStatusResponse(isBookmarked));
|
||||
}
|
||||
}
|
||||
|
||||
private static ObjectNode createPlaylistBookmarkResponseItem(PlaylistBookmark bookmark) {
|
||||
ObjectNode node = mapper.createObjectNode();
|
||||
node.put("playlistId", String.valueOf(bookmark.getPlaylistId()));
|
||||
node.put("name", bookmark.getName());
|
||||
node.put("shortDescription", bookmark.getShortDescription());
|
||||
node.put("thumbnailUrl", rewriteURL(bookmark.getThumbnailUrl()));
|
||||
node.put("uploader", bookmark.getUploader());
|
||||
node.put("uploaderUrl", bookmark.getUploaderUrl());
|
||||
node.put("uploaderAvatar", rewriteURL(bookmark.getUploaderAvatar()));
|
||||
node.put("videos", bookmark.getVideoCount());
|
||||
return node;
|
||||
}
|
||||
}
|
|
@ -6,8 +6,10 @@ import jakarta.persistence.criteria.JoinType;
|
|||
import jakarta.persistence.criteria.Root;
|
||||
import me.kavin.piped.consts.Constants;
|
||||
import me.kavin.piped.utils.obj.db.*;
|
||||
import me.kavin.piped.utils.resp.InvalidRequestResponse;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.commons.lang3.exception.ExceptionUtils;
|
||||
import org.hibernate.Session;
|
||||
import org.hibernate.SharedSessionContract;
|
||||
import org.hibernate.StatelessSession;
|
||||
import org.schabi.newpipe.extractor.channel.ChannelInfo;
|
||||
|
@ -236,4 +238,47 @@ public class DatabaseHelper {
|
|||
|
||||
return channel;
|
||||
}
|
||||
|
||||
public static List<PlaylistBookmark> getPlaylistBookmarks(SharedSessionContract s, User user) {
|
||||
CriteriaBuilder cb = s.getCriteriaBuilder();
|
||||
CriteriaQuery<PlaylistBookmark> cr = cb.createQuery(PlaylistBookmark.class);
|
||||
Root<PlaylistBookmark> root = cr.from(PlaylistBookmark.class);
|
||||
cr.select(root).where(cb.equal(root.get("owner"), user));
|
||||
|
||||
return s.createQuery(cr).getResultList();
|
||||
}
|
||||
|
||||
public static boolean isBookmarked(SharedSessionContract s, User user, String playlistId) {
|
||||
CriteriaBuilder cb = s.getCriteriaBuilder();
|
||||
|
||||
CriteriaQuery<Long> cr = cb.createQuery(Long.class);
|
||||
Root<PlaylistBookmark> root = cr.from(PlaylistBookmark.class);
|
||||
cr.select(cb.count(root)).where(cb.and(
|
||||
cb.equal(root.get("owner"), user)),
|
||||
cb.equal(root.get("playlist_id"), playlistId)
|
||||
);
|
||||
|
||||
return s.createQuery(cr).getSingleResult() > 0;
|
||||
}
|
||||
|
||||
public static PlaylistBookmark getPlaylistBookmarkFromPlaylistId(SharedSessionContract s, User user, String playlistId) {
|
||||
CriteriaBuilder cb = s.getCriteriaBuilder();
|
||||
|
||||
CriteriaQuery<PlaylistBookmark> cr = cb.createQuery(PlaylistBookmark.class);
|
||||
Root<PlaylistBookmark> root = cr.from(PlaylistBookmark.class);
|
||||
cr.select(root).where(cb.and(
|
||||
cb.equal(root.get("owner"), user)),
|
||||
cb.equal(root.get("playlist_id"), playlistId)
|
||||
);
|
||||
|
||||
return s.createQuery(cr).uniqueResult();
|
||||
}
|
||||
|
||||
public static void deletePlaylistBookmark(Session s, User user, String playlistId) {
|
||||
var playlistBookmark = DatabaseHelper.getPlaylistBookmarkFromPlaylistId(s, user, playlistId);
|
||||
|
||||
var tr = s.beginTransaction();
|
||||
s.remove(playlistBookmark);
|
||||
tr.commit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,7 +20,8 @@ public class DatabaseSessionFactory {
|
|||
|
||||
sessionFactory = configuration.addAnnotatedClass(User.class).addAnnotatedClass(Channel.class)
|
||||
.addAnnotatedClass(Video.class).addAnnotatedClass(PubSub.class).addAnnotatedClass(Playlist.class)
|
||||
.addAnnotatedClass(PlaylistVideo.class).addAnnotatedClass(UnauthenticatedSubscription.class).buildSessionFactory();
|
||||
.addAnnotatedClass(PlaylistVideo.class).addAnnotatedClass(UnauthenticatedSubscription.class)
|
||||
.addAnnotatedClass(PlaylistBookmark.class).buildSessionFactory();
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
|
|
135
src/main/java/me/kavin/piped/utils/obj/db/PlaylistBookmark.java
Normal file
135
src/main/java/me/kavin/piped/utils/obj/db/PlaylistBookmark.java
Normal file
|
@ -0,0 +1,135 @@
|
|||
package me.kavin.piped.utils.obj.db;
|
||||
|
||||
import jakarta.persistence.*;
|
||||
|
||||
@Entity
|
||||
@Table(name = "playlist_bookmarks", indexes = {@Index(columnList = "playlist_id", name = "playlist_bookmarks_playlist_id_idx"), @Index(columnList = "owner", name = "playlist_bookmarks_owner_idx")})
|
||||
public class PlaylistBookmark {
|
||||
|
||||
public PlaylistBookmark() {
|
||||
}
|
||||
|
||||
public PlaylistBookmark(String playlist_id, String name, String short_description, String thumbnail_url, String uploader, String uploader_url, String uploader_avatar, long video_count, User owner) {
|
||||
this.playlist_id = playlist_id;
|
||||
this.name = name;
|
||||
this.short_description = short_description;
|
||||
this.thumbnail_url = thumbnail_url;
|
||||
this.uploader = uploader;
|
||||
this.uploader_url = uploader_url;
|
||||
this.uploader_avatar = uploader_avatar;
|
||||
this.video_count = video_count;
|
||||
this.owner = owner;
|
||||
}
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||
private long id;
|
||||
|
||||
@Column(name = "playlist_id", nullable = false)
|
||||
private String playlist_id;
|
||||
|
||||
@Column(name = "name", length = 200)
|
||||
private String name;
|
||||
|
||||
@Column(name = "short_description", length = 300)
|
||||
private String short_description;
|
||||
|
||||
@Column(name = "thumbnail_url", length = 300)
|
||||
private String thumbnail_url;
|
||||
|
||||
@Column(name = "uploader", length = 100)
|
||||
private String uploader;
|
||||
|
||||
@Column(name = "uploader_url", length = 100)
|
||||
private String uploader_url;
|
||||
|
||||
@Column(name = "uploader_avatar", length = 150)
|
||||
private String uploader_avatar;
|
||||
|
||||
@Column(name = "video_count")
|
||||
private long video_count;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@JoinColumn(name = "owner", nullable = false)
|
||||
private User owner;
|
||||
|
||||
public long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getPlaylistId() {
|
||||
return playlist_id;
|
||||
}
|
||||
|
||||
public void setPlaylistId(String playlist_id) {
|
||||
this.playlist_id = playlist_id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getShortDescription() {
|
||||
return short_description;
|
||||
}
|
||||
|
||||
public void setShortDescription(String short_description) {
|
||||
this.short_description = short_description;
|
||||
}
|
||||
|
||||
public String getThumbnailUrl() {
|
||||
return thumbnail_url;
|
||||
}
|
||||
|
||||
public void setThumbnailUrl(String thumbnailUrl) {
|
||||
this.thumbnail_url = thumbnailUrl;
|
||||
}
|
||||
|
||||
public String getUploader() {
|
||||
return uploader;
|
||||
}
|
||||
|
||||
public void setUploader(String uploader) {
|
||||
this.uploader = uploader;
|
||||
}
|
||||
|
||||
public String getUploaderUrl() {
|
||||
return uploader_url;
|
||||
}
|
||||
|
||||
public void setUploaderUrl(String uploaderUrl) {
|
||||
this.uploader_url = uploaderUrl;
|
||||
}
|
||||
|
||||
public String getUploaderAvatar() {
|
||||
return uploader_avatar;
|
||||
}
|
||||
|
||||
public void setUploaderAvatar(String uploaderAvatar) {
|
||||
this.uploader_avatar = uploaderAvatar;
|
||||
}
|
||||
|
||||
public long getVideoCount() {
|
||||
return video_count;
|
||||
}
|
||||
|
||||
public void setVideoCount(long videoCount) {
|
||||
this.video_count = videoCount;
|
||||
}
|
||||
|
||||
public User getOwner() {
|
||||
return owner;
|
||||
}
|
||||
|
||||
public void setOwner(User owner) {
|
||||
this.owner = owner;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
package me.kavin.piped.utils.resp;
|
||||
|
||||
public class BookmarkedStatusResponse {
|
||||
public boolean bookmarked;
|
||||
|
||||
public BookmarkedStatusResponse(boolean bookmarked) {
|
||||
this.bookmarked = bookmarked;
|
||||
}
|
||||
}
|
|
@ -6,4 +6,5 @@
|
|||
|
||||
<include file="version/0-init.xml" relativeToChangelogFile="true"/>
|
||||
<include file="version/1-fix-subs.xml" relativeToChangelogFile="true"/>
|
||||
<include file="version/2-playlist-bookmarks.xml" relativeToChangelogFile="true"/>
|
||||
</databaseChangeLog>
|
||||
|
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<databaseChangeLog
|
||||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
|
||||
https://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">
|
||||
|
||||
<changeSet id="create-playlist-bookmarks-table" author="bnyro">
|
||||
<createTable tableName="playlist_bookmarks">
|
||||
<column name="id" type="BIGINT" autoIncrement="true">
|
||||
<constraints primaryKey="true" nullable="false"/>
|
||||
</column>
|
||||
<column name="playlist_id" type="VARCHAR(255)">
|
||||
<constraints nullable="false"/>
|
||||
</column>
|
||||
<column name="name" type="VARCHAR(200)"/>
|
||||
<column name="short_description" type="VARCHAR(300)"/>
|
||||
<column name="thumbnail_url" type="VARCHAR(300)"/>
|
||||
<column name="uploader" type="VARCHAR(100)"/>
|
||||
<column name="uploader_url" type="VARCHAR(100)"/>
|
||||
<column name="uploader_avatar" type="VARCHAR(150)"/>
|
||||
<column name="video_count" type="BIGINT"/>
|
||||
<column name="owner" type="BIGINT">
|
||||
<constraints nullable="false" referencedColumnNames="id" referencedTableName="users" foreignKeyName="id"/>
|
||||
</column>
|
||||
</createTable>
|
||||
|
||||
<createIndex indexName="playlist_bookmarks_playlist_id_idx" tableName="playlist_bookmarks">
|
||||
<column name="playlist_id"/>
|
||||
</createIndex>
|
||||
|
||||
<createIndex indexName="playlist_bookmarks_owner_idx" tableName="playlist_bookmarks">
|
||||
<column name="owner"/>
|
||||
</createIndex>
|
||||
</changeSet>
|
||||
</databaseChangeLog>
|
|
@ -147,6 +147,22 @@ curl "${CURLOPTS[@]}" $HOST/user/playlists/delete -X POST -H "Content-Type: appl
|
|||
# Import Playlist Test
|
||||
curl "${CURLOPTS[@]}" $HOST/import/playlist -X POST -H "Content-Type: application/json" -H "Authorization: $AUTH_TOKEN" -d "$(jq -n --compact-output --arg playlistId "PLQSoWXSpjA3-egtFq45DcUydZ885W7MTT" '{"playlistId": $playlistId}')" || exit 1
|
||||
|
||||
PLAYLIST_ID="PLQSoWXSpjA3-egtFq45DcUydZ885W7MTT"
|
||||
# Create bookmark test
|
||||
curl "${CURLOPTS[@]}" $HOST/user/bookmarks/create -X POST -H "Content-Type: application/json" -H "Authorization: $AUTH_TOKEN" -d "$(jq -n --compact-output --arg playlistId "$PLAYLIST_ID" '{"playlistId": $playlistId}')" || exit 1
|
||||
|
||||
# See created bookmarks
|
||||
curl "${CURLOPTS[@]}" $HOST/user/bookmarks -H "Authorization: $AUTH_TOKEN" || exit 1
|
||||
|
||||
# Check bookmarked status of playlist
|
||||
curl "${CURLOPTS[@]}" $HOST/user/bookmarks/bookmarked -G --data-urlencode "playlistId=$PLAYLIST_ID" -H "Authorization: $AUTH_TOKEN" || exit 1
|
||||
|
||||
# Delete bookmark
|
||||
curl "${CURLOPTS[@]}" $HOST/user/bookmarks/delete -X POST -H "Content-Type: application/json" -H "Authorization: $AUTH_TOKEN" -d "$(jq -n --compact-output --arg playlistId "$PLAYLIST_ID" '{"playlistId": $playlistId}')" || exit 1
|
||||
|
||||
# See created bookmarks
|
||||
curl "${CURLOPTS[@]}" $HOST/user/bookmarks -H "Authorization: $AUTH_TOKEN" || exit 1
|
||||
|
||||
# Delete User Test
|
||||
curl "${CURLOPTS[@]}" $HOST/user/delete -X POST -H "Content-Type: application/json" -H "Authorization: $AUTH_TOKEN" -d "$(jq -n --compact-output --arg password "$PASS" '{"password": $password}')" || exit 1
|
||||
|
||||
|
|
Loading…
Reference in a new issue