/* * Copyright (C) 2020 Emeric Poupon * * This file is part of LMS. * * LMS is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * LMS 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with LMS. If not, see . */ #include "database/TrackBookmark.hpp" #include "database/Session.hpp" #include "database/Track.hpp" #include "database/User.hpp" #include "Traits.hpp" namespace Database { TrackBookmark::TrackBookmark(ObjectPtr user, ObjectPtr track) : _user {getDboPtr(user)}, _track {getDboPtr(track)} { } TrackBookmark::pointer TrackBookmark::create(Session& session, ObjectPtr user, ObjectPtr track) { session.checkUniqueLocked(); TrackBookmark::pointer res {session.getDboSession().add(std::make_unique(user, track))}; session.getDboSession().flush(); return res; } std::vector TrackBookmark::getAll(Session& session) { session.checkSharedLocked(); auto res {session.getDboSession().find().resultList()}; return std::vector(std::cbegin(res), std::cend(res)); } std::vector TrackBookmark::getByUser(Session& session, User::pointer user) { session.checkSharedLocked(); auto res {session.getDboSession().find() .where("user_id = ?").bind(user->getId()) .resultList()}; return std::vector(std::cbegin(res), std::cend(res)); } TrackBookmark::pointer TrackBookmark::getByUser(Session& session, ObjectPtr user, ObjectPtr track) { session.checkSharedLocked(); return session.getDboSession().find() .where("user_id = ?").bind(user->getId()) .where("track_id = ?").bind(track->getId()) .resultValue(); } TrackBookmark::pointer TrackBookmark::getById(Session& session, TrackBookmarkId id) { session.checkSharedLocked(); return session.getDboSession().find() .where("id = ?").bind(id) .resultValue(); } } // namespace Database