SubwayTooter-Android-App/app/src/main/java/jp/juggler/subwaytooter/api/entity/TootAccount.java

230 lines
7.0 KiB
Java

package jp.juggler.subwaytooter.api.entity;
import android.content.Context;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.text.Spannable;
import android.text.TextUtils;
import jp.juggler.subwaytooter.util.DecodeOptions;
import org.json.JSONArray;
import org.json.JSONObject;
import java.util.ArrayList;
import java.util.regex.Pattern;
import jp.juggler.subwaytooter.util.LinkClickContext;
import jp.juggler.subwaytooter.util.LogCategory;
import jp.juggler.subwaytooter.util.Utils;
public class TootAccount {
private static final LogCategory log = new LogCategory( "TootAccount" );
public static final Pattern reAccountUrl = Pattern.compile( "\\Ahttps://([A-Za-z0-9.-]+)/@([A-Za-z0-9_]+)(?:\\z|[?#])" );
public static class List extends ArrayList< TootAccount > {
}
// The ID of the account
public long id;
// The username of the account /[A-Za-z0-9_]{1,30}/
public String username;
// Equals username for local users, includes @domain for remote ones
public String acct;
// The account's display name
public String display_name;
// The account's display name
public Spannable decoded_display_name;
//Boolean for when the account cannot be followed without waiting for approval first
public boolean locked;
// The time the account was created
// ex: "2017-04-13T11:06:08.289Z"
public String created_at;
// The number of followers for the account
public long followers_count;
//The number of accounts the given account is following
public long following_count;
// The number of statuses the account has made
public long statuses_count;
// Biography of user
// 説明文。改行は\r\n。リンクなどはHTMLタグで書かれている
public String note;
public Spannable decoded_note;
//URL of the user's profile page (can be remote)
// https://mastodon.juggler.jp/@tateisu
public String url;
// URL to the avatar image
public String avatar;
// URL to the avatar static image (gif)
public String avatar_static;
//URL to the header image
public String header;
// URL to the header static image (gif)
public String header_static;
public long time_created_at;
public static class Source {
// デフォルト公開範囲
@Nullable public String privacy;
// 添付画像をデフォルトでNSFWにする設定
// nullになることがある
public boolean sensitive;
// HTMLエンコードされていない、生のnote
@Nullable public String note;
}
@Nullable public Source source;
@Nullable public NicoProfileEmoji.Map profile_emojis;
@Nullable public TootAccount moved;
public TootAccount(){
}
// 疑似アカウントの作成
public TootAccount( String username ){
this.acct = username;
this.username = username;
}
public static TootAccount parse( @NonNull Context context, @NonNull LinkClickContext account, @Nullable JSONObject src ){
return parse( context, account, src, new TootAccount() );
}
@Nullable
public static TootAccount parse( @NonNull Context context, @NonNull LinkClickContext account, @Nullable JSONObject src, @NonNull TootAccount dst ){
if( src == null ) return null;
try{
dst.id = Utils.optLongX( src, "id", - 1L );
dst.username = Utils.optStringX( src, "username" );
dst.acct = Utils.optStringX( src, "acct" );
if( dst.acct == null ){
dst.acct = "?@?";
}
// 絵文字データは先に読んでおく
dst.profile_emojis = NicoProfileEmoji.parseMap( src.optJSONArray( "profile_emojis" ) );
String sv = Utils.optStringX( src, "display_name" );
dst.setDisplayName( context, dst.username, sv );
dst.locked = src.optBoolean( "locked" );
dst.created_at = Utils.optStringX( src, "created_at" );
dst.followers_count = Utils.optLongX( src, "followers_count" );
dst.following_count = Utils.optLongX( src, "following_count" );
dst.statuses_count = Utils.optLongX( src, "statuses_count" );
dst.note = Utils.optStringX( src, "note" );
dst.decoded_note = new DecodeOptions()
.setShort( true )
.setDecodeEmoji( true )
.setProfileEmojis( dst.profile_emojis )
.decodeHTML( context, account, dst.note );
dst.url = Utils.optStringX( src, "url" );
dst.avatar = Utils.optStringX( src, "avatar" ); // "https:\/\/mastodon.juggler.jp\/system\/accounts\/avatars\/000\/000\/148\/original\/0a468974fac5a448.PNG?1492081886",
dst.avatar_static = Utils.optStringX( src, "avatar_static" ); // "https:\/\/mastodon.juggler.jp\/system\/accounts\/avatars\/000\/000\/148\/original\/0a468974fac5a448.PNG?1492081886",
dst.header = Utils.optStringX( src, "header" ); // "https:\/\/mastodon.juggler.jp\/headers\/original\/missing.png"
dst.header_static = Utils.optStringX( src, "header_static" ); // "https:\/\/mastodon.juggler.jp\/headers\/original\/missing.png"}
dst.time_created_at = TootStatus.parseTime( dst.created_at );
dst.source = parseSource( src.optJSONObject( "source" ) );
JSONObject o = src.optJSONObject( "moved" );
if( o != null ){
dst.moved = TootAccount.parse( context, account, o );
}
return dst;
}catch( Throwable ex ){
log.trace( ex );
log.e( ex, "TootAccount.parse failed." );
return null;
}
}
public static Source parseSource( JSONObject src ){
if( src == null ) return null;
Source dst = new Source();
dst.privacy = Utils.optStringX( src, "privacy" );
dst.note = Utils.optStringX( src, "note" );
// null,true,
dst.sensitive = src.optBoolean( "sensitive", false );
return dst;
}
@NonNull
public static List parseList( Context context, LinkClickContext account, JSONArray array ){
List result = new List();
if( array != null ){
int array_size = array.length();
result.ensureCapacity( array_size );
for( int i = 0 ; i < array_size ; ++ i ){
JSONObject src = array.optJSONObject( i );
if( src == null ) continue;
TootAccount item = parse( context, account, src );
if( item != null ) result.add( item );
}
}
return result;
}
private static final Pattern reWhitespace = Pattern.compile( "[\\s\\t\\x0d\\x0a]+" );
public Spannable decodeDisplayName( Context context ){
// remove white spaces
String sv = reWhitespace.matcher( display_name ).replaceAll( " " );
// decode emoji code
return new DecodeOptions().setProfileEmojis( profile_emojis ).decodeEmoji( context, sv );
}
public void setDisplayName( Context context, String username, String sv ){
if( TextUtils.isEmpty( sv ) ){
this.display_name = username;
}else{
this.display_name = Utils.sanitizeBDI( sv );
}
this.decoded_display_name = decodeDisplayName( context );
}
public String getAcctHost(){
try{
int pos = acct.indexOf( '@' );
if( pos != - 1 ) return acct.substring( pos + 1 );
}catch( Throwable ex ){
log.trace( ex );
}
return null;
}
}