Example #1
0
 static void Main()
 {
     ServiceLayer.LoadTasksFromFile();
     ServiceLayer.InitiateTimer();
     try
     {
         IPAddress   localIP  = IPAddress.Parse("0.0.0.0");
         TcpListener listener = new TcpListener(localIP, 6000);
         listener.Start();
         while (true)
         {
             ControlClient user = new ControlClient(listener.AcceptTcpClient());
         }
     }
     catch { }
 }
Example #2
0
        private void ReceiveMessage(IAsyncResult ar)
        {
            int bytesRead;

            try
            {
                lock (_client.GetStream())
                {
                    bytesRead = _client.GetStream().EndRead(ar);
                }
                if (bytesRead < 1)
                {
                    AllClients.Remove(_clientIP);
                    return;
                }
                else
                {
                    string messageReceived = Encoding.UTF8.GetString(data, 0, bytesRead);
                    #region MessageHandler
                    try
                    {
                        if (messageReceived.StartsWith("recvfile|"))
                        {
                            string   fileName   = messageReceived.Split('|')[1];
                            long     totalBytes = Convert.ToInt64(messageReceived.Split('|')[2]);
                            DateTime startTime  = DateTime.Now;
                            SendMessage("begin to receive file|" + fileName + "|" + totalBytes.ToString());
                            ReceiveFile(fileName, totalBytes);
                            SendMessage("transfered " + totalBytes + " Bytes in " + DateTime.Now.Subtract(startTime).TotalMilliseconds.ToString() + " milliseconds");
                        }
                        else if (messageReceived.StartsWith("addtask|"))
                        {
                            SendMessage(ServiceLayer.AddTask(ITCTask.ToITCTask_ShortName(messageReceived.Substring(8))));
                        }
                        else if (messageReceived.StartsWith("removetask|"))
                        {
                            SendMessage(ServiceLayer.RemoveTask(messageReceived.Split('|')[1]));
                        }
                        else if (messageReceived == "gettasks")
                        {
                            SendMessage(ServiceLayer.GetAllTasks());
                        }
                        else if (messageReceived.StartsWith("start|"))
                        {
                            SendMessage(ServiceLayer.Start(messageReceived.Split('|')[1]));
                            SendMessage(ServiceLayer.GetAllTasks());
                        }
                        else if (messageReceived == "stop")
                        {
                            SendMessage(ServiceLayer.Stop());
                            SendMessage(ServiceLayer.GetAllTasks());
                        }
                        else if (messageReceived == "savetasks")
                        {
                            SendMessage(ServiceLayer.SaveTasksToFile());
                        }
                        else if (messageReceived == "loadtasks")
                        {
                            SendMessage(ServiceLayer.LoadTasksFromFile());
                        }
                        else if (messageReceived == "cleartasks")
                        {
                            SendMessage(ServiceLayer.ClearTasks());
                        }
                        else if (messageReceived == "deltasksfile")
                        {
                            SendMessage(ServiceLayer.DeleteTasksFile());
                        }
                        else if (messageReceived == "enable autoboot")
                        {
                            SendMessage(SetAutoBootStatus(true));
                        }
                        else if (messageReceived == "disable autoboot")
                        {
                            SendMessage(SetAutoBootStatus(false));
                        }
                        else if (messageReceived == "delete mp3")
                        {
                            try
                            {
                                string[] allMusic = Directory.GetFiles(ServiceLayer.AppPath, "*.mp3");
                                foreach (string file in allMusic)
                                {
                                    FileInfo fi = new FileInfo(file);
                                    fi.Delete();
                                }
                                SendMessage("operation complete: all mp3 deleted");
                            }
                            catch (Exception ex)
                            {
                                SendMessage("operation failed: " + ex.ToString());
                            }
                        }
                        else if (messageReceived.StartsWith("cmd|"))
                        {
                            Process p = new Process();
                            p.StartInfo.FileName               = "cmd.exe";
                            p.StartInfo.UseShellExecute        = false;
                            p.StartInfo.RedirectStandardInput  = true;
                            p.StartInfo.RedirectStandardOutput = true;
                            p.StartInfo.CreateNoWindow         = true;
                            p.Start();
                            p.StandardInput.WriteLine(messageReceived.Split('|')[1]);
                            p.StandardInput.Flush();
                            p.StandardInput.WriteLine("exit");
                            p.StandardInput.Flush();
                            SendMessage("operation done: " + p.StandardOutput.ReadToEnd());
                        }
                        else if (messageReceived == "exit")
                        {
                            SendMessage("server stopped.");
                            Environment.Exit(0);
                        }
                        else if (messageReceived == "info")
                        {
                            SendMessage("Version: CastStation Server " + Application.ProductVersion + Environment.NewLine
                                        + "StartTime: " + ServiceLayer.startTime.ToString("g") + Environment.NewLine
                                        + "SysTime: " + DateTime.Now.ToString("g") + Environment.NewLine
                                        + "AppPath: " + Application.StartupPath + Environment.NewLine
                                        + Environment.NewLine
                                        + "   #####       ####   " + Environment.NewLine
                                        + "  #     #     #    #  " + Environment.NewLine
                                        + " #       #   ##     # " + Environment.NewLine
                                        + " #            ##      " + Environment.NewLine
                                        + " #             #####  " + Environment.NewLine
                                        + " #                 ## " + Environment.NewLine
                                        + " #       #   #      ##" + Environment.NewLine
                                        + "  #     #     #     # " + Environment.NewLine
                                        + "   #####       #####  ");
                        }
                        else
                        {
                            SendMessage("unknown command: " + messageReceived);
                        }
                    }
                    catch (Exception ex)
                    {
                        SendMessage("operation failed: " + ex.ToString());
                    }
                    #endregion
                }
                lock (_client.GetStream())
                {
                    _client.GetStream().BeginRead(data, 0, _client.ReceiveBufferSize, ReceiveMessage, null);
                }
            }
            catch
            {
                AllClients.Remove(_clientIP);
            }
        }