package app.fedilab.android.drawers; /* Copyright 2019 Thomas Schneider * * This file is a part of Fedilab * * This program 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. * * Fedilab 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 Fedilab; if not, * see . */ import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.os.Build; import android.os.Bundle; import android.text.Html; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.RelativeLayout; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.core.content.ContextCompat; import androidx.recyclerview.widget.RecyclerView; import java.util.List; import app.fedilab.android.R; import app.fedilab.android.activities.PeertubeActivity; import app.fedilab.android.activities.ShowAccountActivity; import app.fedilab.android.client.Entities.PeertubeAccountNotification; import app.fedilab.android.client.Entities.PeertubeNotification; import app.fedilab.android.client.Entities.PeertubeVideoNotification; import app.fedilab.android.fragments.DisplayPeertubeNotificationsFragment; import app.fedilab.android.helper.Helper; /** * Created by Thomas on 23/01/2019. * Adapter for Peertube notifications */ public class PeertubeNotificationsListAdapter extends RecyclerView.Adapter { private Context context; private List notifications; public PeertubeNotificationsListAdapter(List notifications) { this.notifications = notifications; } @NonNull @Override public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { context = parent.getContext(); LayoutInflater layoutInflater = LayoutInflater.from(this.context); return new ViewHolder(layoutInflater.inflate(R.layout.drawer_peertube_notification, parent, false)); } @Override public void onBindViewHolder(@NonNull RecyclerView.ViewHolder viewHolder, int position) { ViewHolder holder = (ViewHolder) viewHolder; PeertubeNotification notification = notifications.get(position); SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE); int theme = sharedpreferences.getInt(Helper.SET_THEME, Helper.THEME_DARK); if (theme == Helper.THEME_DARK) { holder.main_container_trans.setBackgroundColor(ContextCompat.getColor(context, R.color.notif_dark_1)); holder.main_container_trans.setAlpha(.5f); } else if (theme == Helper.THEME_BLACK) { holder.main_container_trans.setBackgroundColor(ContextCompat.getColor(context, R.color.notif_black_1)); holder.main_container_trans.setAlpha(.5f); } else { holder.main_container_trans.setBackgroundColor(ContextCompat.getColor(context, R.color.notif_light_1)); holder.main_container_trans.setAlpha(.5f); } //Follow Notification PeertubeAccountNotification accountAction = null; PeertubeVideoNotification videoAction; if (notification.getPeertubeActorFollow() != null) { String profileUrl = Helper.getLiveInstanceWithProtocol(context) + notification.getPeertubeActorFollow().getFollower().getAvatar(); Helper.loadGiF(context, profileUrl, holder.peertube_notif_pp); accountAction = notification.getPeertubeActorFollow().getFollower(); String type = notification.getPeertubeActorFollow().getFollowing().getType(); String message; if (type != null && type.equals("account")) { message = context.getString(R.string.peertube_follow_channel, notification.getPeertubeActorFollow().getFollower().getDisplayName(), notification.getPeertubeActorFollow().getFollowing().getDisplayName()); } else { message = context.getString(R.string.peertube_follow_account, accountAction.getDisplayName()); } if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) holder.peertube_notif_message.setText(Html.fromHtml(message, Html.FROM_HTML_MODE_LEGACY)); else holder.peertube_notif_message.setText(Html.fromHtml(message)); PeertubeAccountNotification finalAccountAction1 = accountAction; holder.peertube_notif_pp.setOnClickListener(v -> { Intent intent = new Intent(context, ShowAccountActivity.class); Bundle b = new Bundle(); b.putBoolean("peertubeaccount", true); b.putString("accountId", finalAccountAction1.getName()); intent.putExtras(b); context.startActivity(intent); }); } else if (notification.getPeertubeComment() != null) { //Comment Notification String profileUrl = Helper.getLiveInstanceWithProtocol(context) + notification.getPeertubeComment().getPeertubeAccountNotification().getAvatar(); Helper.loadGiF(context, profileUrl, holder.peertube_notif_pp); accountAction = notification.getPeertubeComment().getPeertubeAccountNotification(); videoAction = notification.getPeertubeComment().getPeertubeVideoNotification(); String message = context.getString(R.string.peertube_comment_on_video, accountAction.getDisplayName(), videoAction.getName()); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) holder.peertube_notif_message.setText(Html.fromHtml(message, Html.FROM_HTML_MODE_LEGACY)); else holder.peertube_notif_message.setText(Html.fromHtml(message)); PeertubeVideoNotification finalVideoAction1 = videoAction; holder.peertube_notif_message.setOnClickListener(v -> { Intent intent = new Intent(context, PeertubeActivity.class); Bundle b = new Bundle(); b.putString("peertube_instance", Helper.getLiveInstance(context)); b.putString("video_id", finalVideoAction1.getUuid()); intent.putExtras(b); context.startActivity(intent); }); } else {//Other Notifications if (notification.getPeertubeVideoNotification() != null && notification.getPeertubeVideoNotification().getPeertubeAccountNotification() != null) { String profileUrl = Helper.getLiveInstanceWithProtocol(context) + notification.getPeertubeVideoNotification().getPeertubeAccountNotification().getAvatar(); Helper.loadGiF(context, profileUrl, holder.peertube_notif_pp); accountAction = notification.getPeertubeVideoNotification().getPeertubeAccountNotification(); videoAction = notification.getPeertubeVideoNotification(); String message = ""; if (notification.getType() == DisplayPeertubeNotificationsFragment.MY_VIDEO_PUBLISHED) { message = context.getString(R.string.peertube_video_published, videoAction.getName()); } else if (notification.getType() == DisplayPeertubeNotificationsFragment.MY_VIDEO_IMPORT_ERROR) { message = context.getString(R.string.peertube_video_import_error, videoAction.getName()); } else if (notification.getType() == DisplayPeertubeNotificationsFragment.MY_VIDEO_IMPORT_SUCCESS) { message = context.getString(R.string.peertube_video_import_success, videoAction.getName()); } else if (notification.getType() == DisplayPeertubeNotificationsFragment.NEW_VIDEO_FROM_SUBSCRIPTION) { message = context.getString(R.string.peertube_video_from_subscription, accountAction.getDisplayName(), videoAction.getName()); } else if (notification.getType() == DisplayPeertubeNotificationsFragment.BLACKLIST_ON_MY_VIDEO) { message = context.getString(R.string.peertube_video_blacklist, videoAction.getName()); } else if (notification.getType() == DisplayPeertubeNotificationsFragment.UNBLACKLIST_ON_MY_VIDEO) { message = context.getString(R.string.peertube_video_unblacklist, videoAction.getName()); } if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) holder.peertube_notif_message.setText(Html.fromHtml(message, Html.FROM_HTML_MODE_LEGACY)); else holder.peertube_notif_message.setText(Html.fromHtml(message)); PeertubeVideoNotification finalVideoAction = videoAction; holder.peertube_notif_message.setOnClickListener(v -> { Intent intent = new Intent(context, PeertubeActivity.class); Bundle b = new Bundle(); b.putString("peertube_instance", Helper.getLiveInstance(context)); b.putString("video_id", finalVideoAction.getUuid()); intent.putExtras(b); context.startActivity(intent); }); } } holder.peertube_notif_date.setText(Helper.dateDiff(context, notification.getCreatedAt())); PeertubeAccountNotification finalAccountAction = accountAction; holder.peertube_notif_pp.setOnClickListener(v -> { if (finalAccountAction != null) { Intent intent = new Intent(context, ShowAccountActivity.class); Bundle b = new Bundle(); b.putBoolean("peertubeaccount", true); b.putString("accountId", finalAccountAction.getName() + "@" + finalAccountAction.getHost()); intent.putExtras(b); context.startActivity(intent); } }); } @Override public long getItemId(int position) { return position; } @Override public int getItemCount() { return notifications.size(); } static class ViewHolder extends RecyclerView.ViewHolder { ImageView peertube_notif_pp; TextView peertube_notif_message, peertube_notif_date; RelativeLayout main_container_trans; public ViewHolder(View itemView) { super(itemView); peertube_notif_pp = itemView.findViewById(R.id.peertube_notif_pp); peertube_notif_message = itemView.findViewById(R.id.peertube_notif_message); peertube_notif_date = itemView.findViewById(R.id.peertube_notif_date); main_container_trans = itemView.findViewById(R.id.container_trans); } public View getView() { return itemView; } } }