/* * Copyright (C) 2008-2020, Juick * * 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 . */ package com.juick.service; import com.juick.model.User; import com.juick.model.AnonymousUser; import org.springframework.beans.factory.annotation.Value; import org.springframework.dao.DuplicateKeyException; import org.springframework.stereotype.Repository; import org.springframework.transaction.annotation.Transactional; import org.springframework.web.util.UriComponents; import org.springframework.web.util.UriComponentsBuilder; import javax.annotation.Nonnull; import javax.inject.Inject; import java.util.List; @Repository public class ActivityPubService extends BaseJdbcService implements SocialService { @Value("${ap_base_uri:http://localhost:8080/}") private String baseUri; @Inject private UserService userService; @Transactional(readOnly = true) @Override public @Nonnull User getUserByAccountUri(String acct) { UriComponents baseUriComponents = UriComponentsBuilder.fromUriString(baseUri).build(); UriComponents acctComponents = UriComponentsBuilder.fromUriString(acct).build(); if (acctComponents.getHost().equals(baseUriComponents.getHost())) { // /u/ugnich -> ugnich String userName = acctComponents.getPath().substring(3); return userService.getUserByName(userName); } return AnonymousUser.INSTANCE; } @Transactional(readOnly = true) @Override public @Nonnull List getFollowers(User user) { return getJdbcTemplate().queryForList("SELECT acct FROM followers WHERE user_id=?", String.class, user.getUid()); } @Transactional @Override public void addFollower(User user, String acct) { try { getJdbcTemplate().update("INSERT INTO followers(user_id, acct) " + "VALUES(?, ?)", user.getUid(), acct); } catch (DuplicateKeyException e) { // ignore } } @Transactional @Override public void removeFollower(User user, String acct) { getJdbcTemplate().update("DELETE FROM followers WHERE user_id=? AND acct=?", user.getUid(), acct); } @Transactional @Override public void removeAccount(String acct) { getJdbcTemplate().update("DELETE FROM followers WHERE acct=?", acct); } }