-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
196 lines (180 loc) · 5.01 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
package main
import (
"fmt"
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api"
"github.com/kardianos/service"
"github.com/kbinani/screenshot"
"image/png"
"io/fs"
"io/ioutil"
"log"
"os"
"os/exec"
"path"
"strings"
)
type program struct{}
var bot *tgbotapi.BotAPI
func (p *program) Start(s service.Service) error {
go p.run()
return nil
}
var folderPath string
func (p *program) run() {
folderPath, _ = os.Getwd()
data, err := ioutil.ReadFile(path.Join(folderPath, "botToken.txt"))
bot, err = tgbotapi.NewBotAPI(string(data))
if err != nil {
log.Panic(err)
}
bot.Debug = false
u := tgbotapi.NewUpdate(0)
u.Timeout = 60
updates := bot.GetUpdatesChan(u)
for update := range updates {
if update.Message == nil {
continue
}
userName := update.Message.From.UserName
if !(userName == "EnsPzr") {
MesajGonder(update.Message.Chat.ID, "Yetkiniz Bulunmamaktadır.")
continue
}
gelenMesaj := update.Message.Text
if gelenMesaj == "/ekranresmi" {
DosyalariSil()
n := screenshot.NumActiveDisplays()
for i := 0; i < n; i++ {
EkranResmiAlVeGonder(update.Message.Chat.ID, i)
}
} else if gelenMesaj == "/kilitle" {
sonuc := KomutCalistir("/C", "kilitle.bat")
if sonuc == nil {
MesajGonder(update.Message.Chat.ID, "Kilitlendi...")
} else {
MesajGonder(update.Message.Chat.ID, "Kilitleme İşlemi Sırasında Hata Oluştu."+sonuc.Error())
}
} else if gelenMesaj == "/kapat" {
sonuc := KomutCalistir("/C", "shutdown", "/s")
if sonuc == nil {
MesajGonder(update.Message.Chat.ID, "30 Saniye İçerisinde Bilgisayar Kapatılıyor...")
} else {
MesajGonder(update.Message.Chat.ID, "Kapatma İşlemi Sırasında Hata Oluştu."+err.Error())
}
} else if strings.HasPrefix(gelenMesaj, "/kapat ") {
sure := strings.Replace(gelenMesaj, "/kapat ", "", -1)
sonuc := KomutCalistir("/C", "shutdown", "/s", "/t", sure)
if sonuc == nil {
MesajGonder(update.Message.Chat.ID, sure+" Saniye İçerisinde Bilgisayar Kapatılıyor...")
} else {
MesajGonder(update.Message.Chat.ID, "Kapatma İşlemi Sırasında Hata Oluştu."+err.Error())
}
} else if gelenMesaj == "/yenidenbaslat" {
sonuc := KomutCalistir("/C", "shutdown", "/r")
if sonuc == nil {
MesajGonder(update.Message.Chat.ID, "Bilgisayar Yeniden Başlatılıyor...")
} else {
MesajGonder(update.Message.Chat.ID, "Yeniden Başlatma İşlemi Sırasında Hata Oluştu."+err.Error())
}
} else if gelenMesaj == "/iptal" {
sonuc := KomutCalistir("/C", "shutdown", "/a")
if sonuc == nil {
MesajGonder(update.Message.Chat.ID, "İşlemler İptal Edildi...")
} else {
MesajGonder(update.Message.Chat.ID, "İşlem İptali Sırasında Hata Oluştu."+err.Error())
}
} else {
MesajGonder(update.Message.Chat.ID, "Komut Bulunamadı...")
}
}
}
func (p *program) Stop(s service.Service) error {
return nil
}
func main() {
svcConfig := &service.Config{
Name: "uzaktankontrolbot",
DisplayName: "Uzaktan Kontrol Telegram Bot",
Description: "Bilgisayarı Uzaktan Kontrol Etmeye Yarayan Bot",
}
prg := &program{}
s, err := service.New(prg, svcConfig)
if err != nil {
log.Fatal(err)
}
var argsWithoutProgName = os.Args[1:]
for _, param := range argsWithoutProgName {
if param == "install" {
err = s.Install()
if err != nil {
fmt.Println("Elhamdülillah")
}
return
} else if param == "uninstall" {
err = s.Uninstall()
if err != nil {
fmt.Println("hata")
} else {
fmt.Println("Elhamdülillah")
}
return
}
}
err = s.Run()
if err != nil {
log.Fatal(err)
}
}
func DosyalariSil() {
files, err := ioutil.ReadDir(path.Join(folderPath, "resimler"))
if err != nil {
fmt.Println(err)
}
for _, f := range files {
fmt.Println("%s", f.Name())
os.Remove(path.Join(folderPath, "resimler", f.Name()))
}
fmt.Println("Resimler Silindi")
}
func MesajGonder(chatId int64, metin string) {
if metin == "" {
return
}
msg := tgbotapi.NewMessage(chatId, metin)
bot.Send(msg)
}
func ResimUploadEt(chatId int64, resimYolu string) {
resim := tgbotapi.NewDocument(chatId, tgbotapi.FilePath(resimYolu))
bot.Send(resim)
}
func EkranResmiAlVeGonder(chatId int64, ekranNo int) {
bounds := screenshot.GetDisplayBounds(ekranNo)
img, err := screenshot.CaptureRect(bounds)
if err != nil {
MesajGonder(chatId, "Ekran resim alımı sırasında hata=>"+err.Error())
}
folder := path.Join(folderPath, "resimler")
if _, err = os.Stat(folder); os.IsNotExist(err) {
os.MkdirAll(folder, fs.ModeDir)
}
fileName := path.Join(folder, fmt.Sprintf("%d_%dx%d.png", ekranNo, bounds.Dx(), bounds.Dy()))
file, err := os.Create(fileName)
if err != nil {
MesajGonder(chatId, "Ekran resim gönderimi sırasında hata=>"+err.Error())
} else {
defer file.Close()
png.Encode(file, img)
ResimUploadEt(chatId, fileName)
}
}
func KomutCalistir(komutlar ...string) (cevap error) {
var komut string
for i := 0; i < len(komutlar); i++ {
komut = komut + " " + komutlar[i]
}
cmd := exec.Command("cmd.exe", komut)
if err := cmd.Run(); err != nil {
return err
}
return nil
}