All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.telegram.api.auth.TLAuthorization Maven / Gradle / Ivy

The newest version!
/*
 * This is the source code of Telegram Bot v. 2.0
 * It is licensed under GNU GPL v. 3 or later.
 * You should have received a copy of the license in this archive (see LICENSE).
 *
 * Copyright Ruben Bermudez, 13/11/14.
 */
package org.telegram.api.auth;

import org.telegram.api.user.TLAbsUser;
import org.telegram.tl.StreamingUtils;
import org.telegram.tl.TLContext;
import org.telegram.tl.TLObject;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

/**
 * Authorization of a user
 * @author Ruben Bermudez
 * @version 2.0
 * @date 13 /11/14
 */
public class TLAuthorization extends TLObject {
    /**
     * The constant CLASS_ID.
     */
    public static final int CLASS_ID = 0xcd050916;

    private static final int FLAG_TMP_SESSIONS     = 0x00000001; // 0

    private int flags;
    private TLAbsUser user; ///< Authorized user

    /**
     * Instantiates a new TL authorization.
     */
    public TLAuthorization() {
        super();
    }

    public int getClassId() {
        return CLASS_ID;
    }

    /**
     * Gets user.
     *
     * @return the user
     */
    public TLAbsUser getUser() {
        return this.user;
    }

    public boolean isTemporalSession() {
        return (flags & FLAG_TMP_SESSIONS) != 0;
    }

    public void serializeBody(OutputStream stream) throws IOException {
        StreamingUtils.writeInt(flags, stream);
        StreamingUtils.writeTLObject(user, stream);
    }

    public void deserializeBody(InputStream stream, TLContext context) throws IOException {
        flags = StreamingUtils.readInt(stream);
        user = ((TLAbsUser) StreamingUtils.readTLObject(stream, context));
    }

    public String toString() {
        return "auth.authorization#cd050916";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy