CarrotChat v2.8.60.240131版本的 MD5 值为:2baf8b9f31830b86b5c5a85ae6b47e05

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


package ak.smack;

import ak.im.utils.Log;
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 l6 extends b {
    private final String a;
    private boolean f4482b;
    private String f4483c;
    private String f4484d;
    private Akeychat.VoipEndResponse f4485e;

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

    public l6(String str, q1 q1Var) {
        super("voipend", "http://akey.im/protocol/xmpp/iq/voipend", q1Var);
        this.a = "VoIPEndExtension";
        this.f4482b = false;
        this.f4482b = true;
        setType(IQ.Type.get);
        this.f4484d = str;
    }

    @Override
    protected IQ.IQChildElementXmlStringBuilder getIQChildElementBuilder(IQ.IQChildElementXmlStringBuilder iQChildElementXmlStringBuilder) {
        iQChildElementXmlStringBuilder.append(">");
        if (this.f4482b) {
            Akeychat.VoipEndRequest.b newBuilder = Akeychat.VoipEndRequest.newBuilder();
            newBuilder.setVoipSessionId(this.f4484d);
            iQChildElementXmlStringBuilder.optElement(HiAnalyticsConstant.Direction.REQUEST, ak.comm.d.encodeBytes(newBuilder.build().toByteArray()));
        } else {
            iQChildElementXmlStringBuilder.optElement("result", this.f4483c);
        }
        return iQChildElementXmlStringBuilder;
    }

    public Akeychat.VoipEndResponse getmResponse() {
        return this.f4485e;
    }

    protected void parseResults(XmlPullParser xmlPullParser) throws Exception {
        try {
            String text = xmlPullParser.getText();
            this.f4483c = text;
            this.f4485e = Akeychat.VoipEndResponse.parseFrom(ak.comm.d.decode(text));
            Log.i("VoIPEndExtension", "we get VoipEndResponse result:" + this.f4485e);
        } catch (Exception e2) {
            e2.printStackTrace();
        }
    }

    public l6() {
        super("voipend", "http://akey.im/protocol/xmpp/iq/voipend", null);
        this.a = "VoIPEndExtension";
        this.f4482b = false;
    }
}