CarrotChat v2.8.80.240429版本的 MD5 值为:fdf98761f01e715a89df24b85b0d206e

以下内容为反编译后的 t6.java 源代码,内容仅作参考


package y0;

import com.asim.protobuf.Akeychat;
import com.huawei.hms.support.hianalytics.HiAnalyticsConstant;
import org.jivesoftware.smack.packet.IQ;
import org.jivesoftware.smack.provider.IQProvider;
import org.xmlpull.v1.XmlPullParser;

public class t6 extends IQ {

    private final String f48866a;

    private Akeychat.OfflienTrustDeviceResponse f48867b;

    private String f48868c;

    private boolean f48869d;

    private String f48870e;

    public static class a extends IQProvider {
        @Override
        public IQ parse(XmlPullParser xmlPullParser, int i10) throws Exception {
            t6 t6Var = new t6();
            boolean z10 = false;
            while (!z10) {
                int next = xmlPullParser.next();
                if (next == 4) {
                    t6Var.parseResults(xmlPullParser);
                } else if (next == 3 && xmlPullParser.getName().equals("offlinetrustdevice")) {
                    z10 = true;
                }
            }
            return t6Var;
        }
    }

    public t6() {
        super("offlinetrustdevice", "http://akey.im/protocol/xmpp/iq/offlinetrustdevice");
        this.f48866a = t6.class.getSimpleName();
        this.f48869d = true;
        setType(IQ.Type.get);
        setTo(ak.im.sdk.manager.f1.getInstance().getServer().getXmppDomain());
    }

    @Override
    protected IQ.IQChildElementXmlStringBuilder getIQChildElementBuilder(IQ.IQChildElementXmlStringBuilder iQChildElementXmlStringBuilder) {
        iQChildElementXmlStringBuilder.append(">");
        if (this.f48869d) {
            Akeychat.OfflienTrustDeviceRequest.b newBuilder = Akeychat.OfflienTrustDeviceRequest.newBuilder();
            newBuilder.setDeviceId(this.f48870e);
            iQChildElementXmlStringBuilder.optElement(HiAnalyticsConstant.Direction.REQUEST, e.e.encodeBytes(newBuilder.build().toByteArray()));
        } else {
            iQChildElementXmlStringBuilder.optElement("result", this.f48868c);
        }
        return iQChildElementXmlStringBuilder;
    }

    public Akeychat.OfflienTrustDeviceResponse getmResponse() {
        return this.f48867b;
    }

    protected void parseResults(XmlPullParser xmlPullParser) throws Exception {
        try {
            String text = xmlPullParser.getText();
            this.f48868c = text;
            this.f48867b = Akeychat.OfflienTrustDeviceResponse.parseFrom(e.e.decode(text));
        } catch (Exception e10) {
            e10.printStackTrace();
        }
    }

    public t6(String str) {
        super("offlinetrustdevice", "http://akey.im/protocol/xmpp/iq/offlinetrustdevice");
        this.f48866a = t6.class.getSimpleName();
        this.f48869d = true;
        setType(IQ.Type.get);
        setTo(ak.im.sdk.manager.f1.getInstance().getServer().getXmppDomain());
        this.f48870e = str;
    }
}