Exemplo n.º 1
0
        //array("sec" => 2, "usec" => 0);
        public WhatsApp(string phoneNum, string imei, string nick, bool debug = false)
        {
            this.messageQueue = new List<ProtocolTreeNode>();
            //this.sysEncoding = Encoding.GetEncoding("ISO-8859-1");
            //this.challengeArray = new Dictionary<string, string>();

            this.phoneNumber = phoneNum;
            this.imei = imei;
            this.name = nick;
            WhatsApp.DEBUG = debug;
            string[] dict = DecodeHelper.getDictionary();
            this.writer = new BinTreeNodeWriter(dict);
            this.reader = new BinTreeNodeReader(dict);

            //this.loginStatus = disconnectedStatus;
            this.loginStatus = CONNECTION_STATUS.DISCONNECTED;

            //this.whatsNetwork = new WhatsNetwork(WhatsConstants.WhatsAppHost, WhatsConstants.WhatsPort, this.sysEncoding, this.timeout);
            //this.WhatsParser = new WhatsParser(this.whatsNetwork);
            this.whatsNetwork = new WhatsNetwork(WhatsConstants.WhatsAppHost, WhatsConstants.WhatsPort, this.timeout);
            this.WhatsParser = new WhatsParser(this.whatsNetwork, this.writer);
            this.WhatsSendHandler = this.WhatsParser.WhatsSendHandler;

            _incompleteBytes = new List<IncompleteMessageException>();
        }
Exemplo n.º 2
0
 protected void _constructBase(string phoneNum, string imei, string nick, bool debug, bool hidden)
 {
     this.messageQueue = new List<ProtocolTreeNode>();
     this.phoneNumber = phoneNum;
     this.password = imei;
     this.name = nick;
     this.hidden = hidden;
     WhatsApp.DEBUG = debug;
     this.reader = new BinTreeNodeReader();
     this.loginStatus = CONNECTION_STATUS.DISCONNECTED;
     this.BinWriter = new BinTreeNodeWriter();
     this.whatsNetwork = new WhatsNetwork(WhatsConstants.WhatsAppHost, WhatsConstants.WhatsPort, this.timeout);
 }
Exemplo n.º 3
0
 protected void _constructBase(string phoneNum, string imei, string nick, bool debug, bool hidden)
 {
     this.messageQueue = new List <ProtocolTreeNode>();
     this.phoneNumber  = phoneNum;
     this.password     = imei;
     this.name         = nick;
     this.hidden       = hidden;
     WhatsApp.DEBUG    = debug;
     this.reader       = new BinTreeNodeReader();
     this.loginStatus  = CONNECTION_STATUS.DISCONNECTED;
     this.BinWriter    = new BinTreeNodeWriter();
     this.whatsNetwork = new WhatsNetwork(WhatsConstants.WhatsAppHost, WhatsConstants.WhatsPort, this.timeout);
 }
Exemplo n.º 4
0
        /// <summary>
        /// Default class constructor
        /// </summary>
        /// <param name="phoneNum">The phone number</param>
        /// <param name="imei">The imei / mac</param>
        /// <param name="nick">User nickname</param>
        /// <param name="debug">Debug on or off, false by default</param>
        public WhatsApp(string phoneNum, string imei, string nick, bool debug = false)
        {
            this.messageQueue = new List <ProtocolTreeNode>();
            this.phoneNumber  = phoneNum;
            this.imei         = imei;
            this.name         = nick;
            WhatsApp.DEBUG    = debug;
            string[] dict = DecodeHelper.getDictionary();
            this.writer           = new BinTreeNodeWriter(dict);
            this.reader           = new BinTreeNodeReader(dict);
            this.loginStatus      = CONNECTION_STATUS.DISCONNECTED;
            this.whatsNetwork     = new WhatsNetwork(WhatsConstants.WhatsAppHost, WhatsConstants.WhatsPort, this.timeout);
            this.WhatsParser      = new WhatsParser(this.whatsNetwork, this.writer);
            this.WhatsSendHandler = this.WhatsParser.WhatsSendHandler;

            _incompleteBytes = new List <IncompleteMessageException>();
        }
Exemplo n.º 5
0
        //array("sec" => 2, "usec" => 0);
        public WhatsApp(string phoneNum, string imei, string nick, bool debug = false)
        {
            this.messageQueue   = new List <ProtocolTreeNode>();
            this.sysEncoding    = Encoding.GetEncoding("ISO-8859-1");
            this.challengeArray = new Dictionary <string, string>();

            this.phoneNumber = phoneNum;
            this.imei        = imei;
            this.name        = nick;
            this.debug       = debug;
            string[] dict = DecodeHelper.getDictionary();
            this.writer = new BinTreeNodeWriter(dict);
            this.reader = new BinTreeNodeReader(dict);

            this.loginStatus = disconnectedStatus;

            this.whatsNetwork     = new WhatsNetwork(WhatsConstants.WhatsAppHost, WhatsConstants.WhatsPort, this.sysEncoding, this.timeout);
            this.WhatsParser      = new WhatsParser(this.whatsNetwork);
            this.WhatsSendHandler = this.WhatsParser.WhatsSendHandler;
        }
Exemplo n.º 6
0
 /// <summary>
 /// Default class constructor
 /// </summary>
 /// <param name="net">An instance of the WhatsNetwork class</param>
 /// <param name="writer">An instance of the BinTreeNodeWriter</param>
 internal WhatsSendHandler(WhatsNetwork net, BinTreeNodeWriter writer)
 {
     this.whatsNetwork = net;
     this.BinWriter = writer;
 }
Exemplo n.º 7
0
 /// <summary>
 /// Default class constructor
 /// </summary>
 /// <param name="net">An instance of the WhatsNetwork class</param>
 /// <param name="writer">An instance of the BinTreeNodeWriter</param>
 internal WhatsSendHandler(WhatsNetwork net, BinTreeNodeWriter writer)
 {
     this.whatsNetwork = net;
     this._binWriter   = writer;
 }
Exemplo n.º 8
0
        /// <summary>
        /// Default class constructor
        /// </summary>
        /// <param name="phoneNum">The phone number</param>
        /// <param name="imei">The imei / mac</param>
        /// <param name="nick">User nickname</param>
        /// <param name="debug">Debug on or off, false by default</param>
        public WhatsApp(string phoneNum, string imei, string nick, bool debug = false, bool hidden = false)
        {
            this.messageQueue = new List<ProtocolTreeNode>();
            this.phoneNumber = phoneNum;
            this.imei = imei;
            this.name = nick;
            this.hidden = hidden;
            WhatsApp.DEBUG = debug;
            this.reader = new BinTreeNodeReader();
            this.loginStatus = CONNECTION_STATUS.DISCONNECTED;
            this.whatsNetwork = new WhatsNetwork(WhatsConstants.WhatsAppHost, WhatsConstants.WhatsPort, this.timeout);
            this.WhatsParser = new WhatsParser(this.whatsNetwork, new BinTreeNodeWriter());
            this.WhatsSendHandler = this.WhatsParser.WhatsSendHandler;

            _incompleteBytes = new List<IncompleteMessageException>();
        }
Exemplo n.º 9
0
 //this.Login.domain ??
 public WhatsSendHandler(WhatsNetwork net)
 {
     //this.TreeNodeWriter = new BinTreeNodeWriter(DecodeHelper.getDictionary());
     this.whatsNetwork = net;
 }
Exemplo n.º 10
0
 //this.Login.domain ??
 //public WhatsSendHandler(WhatsNetwork net)
 internal WhatsSendHandler(WhatsNetwork net, BinTreeNodeWriter writer)
 {
     //this.TreeNodeWriter = new BinTreeNodeWriter(DecodeHelper.getDictionary());
     this.whatsNetwork = net;
     this._binWriter = writer;
 }
Exemplo n.º 11
0
 //this.Login.domain ??
 public WhatsSendHandler(WhatsNetwork net)
 {
     //this.TreeNodeWriter = new BinTreeNodeWriter(DecodeHelper.getDictionary());
     this.whatsNetwork = net;
 }