]> git.r.bdr.sh - rbdr/mobius/blame - hotline/transaction_handlers.go
Update goreleaser config
[rbdr/mobius] / hotline / transaction_handlers.go
CommitLineData
6988a057
JH
1package hotline
2
3import (
4 "bytes"
5 "encoding/binary"
6 "errors"
7 "fmt"
0197c3f5 8 "gopkg.in/yaml.v3"
b129b7cb 9 "io"
6988a057
JH
10 "math/big"
11 "os"
00d1ef67 12 "path"
2e08be58 13 "path/filepath"
6988a057
JH
14 "sort"
15 "strings"
16 "time"
17)
18
d005ef04
JH
19type HandlerFunc func(*ClientConn, *Transaction) ([]Transaction, error)
20
6988a057 21type TransactionType struct {
d005ef04
JH
22 Handler HandlerFunc // function for handling the transaction type
23 Name string // Name of transaction as it will appear in logging
6988a057
JH
24 RequiredFields []requiredField
25}
26
27var TransactionHandlers = map[uint16]TransactionType{
28 // Server initiated
d005ef04
JH
29 TranChatMsg: {
30 Name: "TranChatMsg",
6988a057
JH
31 },
32 // Server initiated
d005ef04
JH
33 TranNotifyChangeUser: {
34 Name: "TranNotifyChangeUser",
6988a057 35 },
d005ef04
JH
36 TranError: {
37 Name: "TranError",
6988a057 38 },
d005ef04
JH
39 TranShowAgreement: {
40 Name: "TranShowAgreement",
6988a057 41 },
d005ef04
JH
42 TranUserAccess: {
43 Name: "TranUserAccess",
6988a057 44 },
d005ef04
JH
45 TranNotifyDeleteUser: {
46 Name: "TranNotifyDeleteUser",
5454019c 47 },
d005ef04
JH
48 TranAgreed: {
49 Name: "TranAgreed",
6988a057
JH
50 Handler: HandleTranAgreed,
51 },
d005ef04
JH
52 TranChatSend: {
53 Name: "TranChatSend",
d4c152a4 54 Handler: HandleChatSend,
6988a057
JH
55 RequiredFields: []requiredField{
56 {
d005ef04 57 ID: FieldData,
6988a057
JH
58 minLen: 0,
59 },
60 },
61 },
d005ef04
JH
62 TranDelNewsArt: {
63 Name: "TranDelNewsArt",
6988a057
JH
64 Handler: HandleDelNewsArt,
65 },
d005ef04
JH
66 TranDelNewsItem: {
67 Name: "TranDelNewsItem",
6988a057
JH
68 Handler: HandleDelNewsItem,
69 },
d005ef04
JH
70 TranDeleteFile: {
71 Name: "TranDeleteFile",
6988a057
JH
72 Handler: HandleDeleteFile,
73 },
d005ef04
JH
74 TranDeleteUser: {
75 Name: "TranDeleteUser",
6988a057
JH
76 Handler: HandleDeleteUser,
77 },
d005ef04
JH
78 TranDisconnectUser: {
79 Name: "TranDisconnectUser",
6988a057
JH
80 Handler: HandleDisconnectUser,
81 },
d005ef04
JH
82 TranDownloadFile: {
83 Name: "TranDownloadFile",
6988a057
JH
84 Handler: HandleDownloadFile,
85 },
d005ef04
JH
86 TranDownloadFldr: {
87 Name: "TranDownloadFldr",
6988a057
JH
88 Handler: HandleDownloadFolder,
89 },
d005ef04
JH
90 TranGetClientInfoText: {
91 Name: "TranGetClientInfoText",
df1ade54 92 Handler: HandleGetClientInfoText,
6988a057 93 },
d005ef04
JH
94 TranGetFileInfo: {
95 Name: "TranGetFileInfo",
6988a057
JH
96 Handler: HandleGetFileInfo,
97 },
d005ef04
JH
98 TranGetFileNameList: {
99 Name: "TranGetFileNameList",
6988a057
JH
100 Handler: HandleGetFileNameList,
101 },
d005ef04
JH
102 TranGetMsgs: {
103 Name: "TranGetMsgs",
6988a057
JH
104 Handler: HandleGetMsgs,
105 },
d005ef04
JH
106 TranGetNewsArtData: {
107 Name: "TranGetNewsArtData",
6988a057
JH
108 Handler: HandleGetNewsArtData,
109 },
d005ef04
JH
110 TranGetNewsArtNameList: {
111 Name: "TranGetNewsArtNameList",
6988a057
JH
112 Handler: HandleGetNewsArtNameList,
113 },
d005ef04
JH
114 TranGetNewsCatNameList: {
115 Name: "TranGetNewsCatNameList",
6988a057
JH
116 Handler: HandleGetNewsCatNameList,
117 },
d005ef04
JH
118 TranGetUser: {
119 Name: "TranGetUser",
6988a057
JH
120 Handler: HandleGetUser,
121 },
d005ef04 122 TranGetUserNameList: {
6988a057
JH
123 Name: "tranHandleGetUserNameList",
124 Handler: HandleGetUserNameList,
125 },
d005ef04
JH
126 TranInviteNewChat: {
127 Name: "TranInviteNewChat",
6988a057
JH
128 Handler: HandleInviteNewChat,
129 },
d005ef04
JH
130 TranInviteToChat: {
131 Name: "TranInviteToChat",
6988a057
JH
132 Handler: HandleInviteToChat,
133 },
d005ef04
JH
134 TranJoinChat: {
135 Name: "TranJoinChat",
6988a057
JH
136 Handler: HandleJoinChat,
137 },
d005ef04
JH
138 TranKeepAlive: {
139 Name: "TranKeepAlive",
6988a057
JH
140 Handler: HandleKeepAlive,
141 },
d005ef04
JH
142 TranLeaveChat: {
143 Name: "TranJoinChat",
6988a057
JH
144 Handler: HandleLeaveChat,
145 },
d005ef04
JH
146 TranListUsers: {
147 Name: "TranListUsers",
6988a057
JH
148 Handler: HandleListUsers,
149 },
d005ef04
JH
150 TranMoveFile: {
151 Name: "TranMoveFile",
6988a057
JH
152 Handler: HandleMoveFile,
153 },
d005ef04
JH
154 TranNewFolder: {
155 Name: "TranNewFolder",
6988a057
JH
156 Handler: HandleNewFolder,
157 },
d005ef04
JH
158 TranNewNewsCat: {
159 Name: "TranNewNewsCat",
6988a057
JH
160 Handler: HandleNewNewsCat,
161 },
d005ef04
JH
162 TranNewNewsFldr: {
163 Name: "TranNewNewsFldr",
6988a057
JH
164 Handler: HandleNewNewsFldr,
165 },
d005ef04
JH
166 TranNewUser: {
167 Name: "TranNewUser",
6988a057
JH
168 Handler: HandleNewUser,
169 },
d005ef04
JH
170 TranUpdateUser: {
171 Name: "TranUpdateUser",
d2810ae9
JH
172 Handler: HandleUpdateUser,
173 },
d005ef04
JH
174 TranOldPostNews: {
175 Name: "TranOldPostNews",
6988a057
JH
176 Handler: HandleTranOldPostNews,
177 },
d005ef04
JH
178 TranPostNewsArt: {
179 Name: "TranPostNewsArt",
6988a057
JH
180 Handler: HandlePostNewsArt,
181 },
d005ef04
JH
182 TranRejectChatInvite: {
183 Name: "TranRejectChatInvite",
6988a057
JH
184 Handler: HandleRejectChatInvite,
185 },
d005ef04
JH
186 TranSendInstantMsg: {
187 Name: "TranSendInstantMsg",
6988a057
JH
188 Handler: HandleSendInstantMsg,
189 RequiredFields: []requiredField{
190 {
d005ef04 191 ID: FieldData,
6988a057
JH
192 minLen: 0,
193 },
194 {
d005ef04 195 ID: FieldUserID,
6988a057
JH
196 },
197 },
198 },
d005ef04
JH
199 TranSetChatSubject: {
200 Name: "TranSetChatSubject",
6988a057
JH
201 Handler: HandleSetChatSubject,
202 },
d005ef04
JH
203 TranMakeFileAlias: {
204 Name: "TranMakeFileAlias",
decc2fbf
JH
205 Handler: HandleMakeAlias,
206 RequiredFields: []requiredField{
d005ef04
JH
207 {ID: FieldFileName, minLen: 1},
208 {ID: FieldFilePath, minLen: 1},
209 {ID: FieldFileNewPath, minLen: 1},
decc2fbf
JH
210 },
211 },
d005ef04
JH
212 TranSetClientUserInfo: {
213 Name: "TranSetClientUserInfo",
6988a057
JH
214 Handler: HandleSetClientUserInfo,
215 },
d005ef04
JH
216 TranSetFileInfo: {
217 Name: "TranSetFileInfo",
6988a057
JH
218 Handler: HandleSetFileInfo,
219 },
d005ef04
JH
220 TranSetUser: {
221 Name: "TranSetUser",
6988a057
JH
222 Handler: HandleSetUser,
223 },
d005ef04
JH
224 TranUploadFile: {
225 Name: "TranUploadFile",
6988a057
JH
226 Handler: HandleUploadFile,
227 },
d005ef04
JH
228 TranUploadFldr: {
229 Name: "TranUploadFldr",
6988a057
JH
230 Handler: HandleUploadFolder,
231 },
d005ef04
JH
232 TranUserBroadcast: {
233 Name: "TranUserBroadcast",
6988a057
JH
234 Handler: HandleUserBroadcast,
235 },
d005ef04
JH
236 TranDownloadBanner: {
237 Name: "TranDownloadBanner",
9067f234
JH
238 Handler: HandleDownloadBanner,
239 },
6988a057
JH
240}
241
242func HandleChatSend(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 243 if !cc.Authorize(accessSendChat) {
003a743e
JH
244 res = append(res, cc.NewErrReply(t, "You are not allowed to participate in chat."))
245 return res, err
246 }
247
6988a057 248 // Truncate long usernames
72dd37f1 249 trunc := fmt.Sprintf("%13s", cc.UserName)
d005ef04 250 formattedMsg := fmt.Sprintf("\r%.14s: %s", trunc, t.GetField(FieldData).Data)
6988a057
JH
251
252 // By holding the option key, Hotline chat allows users to send /me formatted messages like:
253 // *** Halcyon does stuff
d005ef04 254 // This is indicated by the presence of the optional field FieldChatOptions set to a value of 1.
2e43fd4e 255 // Most clients do not send this option for normal chat messages.
d005ef04
JH
256 if t.GetField(FieldChatOptions).Data != nil && bytes.Equal(t.GetField(FieldChatOptions).Data, []byte{0, 1}) {
257 formattedMsg = fmt.Sprintf("\r*** %s %s", cc.UserName, t.GetField(FieldData).Data)
6988a057
JH
258 }
259
361928c9
JH
260 // The ChatID field is used to identify messages as belonging to a private chat.
261 // All clients *except* Frogblast omit this field for public chat, but Frogblast sends a value of 00 00 00 00.
d005ef04 262 chatID := t.GetField(FieldChatID).Data
361928c9 263 if chatID != nil && !bytes.Equal([]byte{0, 0, 0, 0}, chatID) {
6988a057
JH
264 chatInt := binary.BigEndian.Uint32(chatID)
265 privChat := cc.Server.PrivateChats[chatInt]
266
481631f6
JH
267 clients := sortedClients(privChat.ClientConn)
268
6988a057 269 // send the message to all connected clients of the private chat
481631f6 270 for _, c := range clients {
6988a057 271 res = append(res, *NewTransaction(
d005ef04 272 TranChatMsg,
6988a057 273 c.ID,
d005ef04
JH
274 NewField(FieldChatID, chatID),
275 NewField(FieldData, []byte(formattedMsg)),
6988a057
JH
276 ))
277 }
278 return res, err
279 }
280
281 for _, c := range sortedClients(cc.Server.Clients) {
282 // Filter out clients that do not have the read chat permission
187d6dc5 283 if c.Authorize(accessReadChat) {
d005ef04 284 res = append(res, *NewTransaction(TranChatMsg, c.ID, NewField(FieldData, []byte(formattedMsg))))
6988a057
JH
285 }
286 }
287
288 return res, err
289}
290
291// HandleSendInstantMsg sends instant message to the user on the current server.
292// Fields used in the request:
33265393 293//
6988a057
JH
294// 103 User ID
295// 113 Options
296// One of the following values:
297// - User message (myOpt_UserMessage = 1)
298// - Refuse message (myOpt_RefuseMessage = 2)
299// - Refuse chat (myOpt_RefuseChat = 3)
300// - Automatic response (myOpt_AutomaticResponse = 4)"
301// 101 Data Optional
302// 214 Quoting message Optional
303//
aebc4d36 304// Fields used in the reply:
6988a057
JH
305// None
306func HandleSendInstantMsg(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
69c2fb50
JH
307 if !cc.Authorize(accessSendPrivMsg) {
308 res = append(res, cc.NewErrReply(t, "You are not allowed to send private messages."))
d0ba21fc 309 return res, errors.New("user is not allowed to send private messages")
69c2fb50
JH
310 }
311
d005ef04
JH
312 msg := t.GetField(FieldData)
313 ID := t.GetField(FieldUserID)
6988a057 314
aeec1015 315 reply := NewTransaction(
d005ef04 316 TranServerMsg,
5ae50876 317 &ID.Data,
d005ef04
JH
318 NewField(FieldData, msg.Data),
319 NewField(FieldUserName, cc.UserName),
320 NewField(FieldUserID, *cc.ID),
321 NewField(FieldOptions, []byte{0, 1}),
6988a057 322 )
6988a057 323
d005ef04 324 // Later versions of Hotline include the original message in the FieldQuotingMsg field so
5ae50876 325 // the receiving client can display both the received message and what it is in reply to
d005ef04
JH
326 if t.GetField(FieldQuotingMsg).Data != nil {
327 reply.Fields = append(reply.Fields, NewField(FieldQuotingMsg, t.GetField(FieldQuotingMsg).Data))
5ae50876
JH
328 }
329
d0ba21fc
JH
330 id, err := byteToInt(ID.Data)
331 if err != nil {
332 return res, errors.New("invalid client ID")
333 }
aeec1015
JH
334 otherClient, ok := cc.Server.Clients[uint16(id)]
335 if !ok {
336 return res, errors.New("invalid client ID")
6988a057
JH
337 }
338
38f710ec
JH
339 // Check if target user has "Refuse private messages" flag
340 flagBitmap := big.NewInt(int64(binary.BigEndian.Uint16(otherClient.Flags)))
1efbb15f 341 if flagBitmap.Bit(UserFlagRefusePM) == 1 {
38f710ec
JH
342 res = append(res,
343 *NewTransaction(
d005ef04 344 TranServerMsg,
38f710ec 345 cc.ID,
d005ef04
JH
346 NewField(FieldData, []byte(string(otherClient.UserName)+" does not accept private messages.")),
347 NewField(FieldUserName, otherClient.UserName),
348 NewField(FieldUserID, *otherClient.ID),
349 NewField(FieldOptions, []byte{0, 2}),
38f710ec
JH
350 ),
351 )
352 } else {
353 res = append(res, *reply)
354 }
355
6988a057 356 // Respond with auto reply if other client has it enabled
aebc4d36 357 if len(otherClient.AutoReply) > 0 {
6988a057
JH
358 res = append(res,
359 *NewTransaction(
d005ef04 360 TranServerMsg,
6988a057 361 cc.ID,
d005ef04
JH
362 NewField(FieldData, otherClient.AutoReply),
363 NewField(FieldUserName, otherClient.UserName),
364 NewField(FieldUserID, *otherClient.ID),
365 NewField(FieldOptions, []byte{0, 1}),
6988a057
JH
366 ),
367 )
368 }
369
370 res = append(res, cc.NewReply(t))
371
372 return res, err
373}
374
375func HandleGetFileInfo(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
d005ef04
JH
376 fileName := t.GetField(FieldFileName).Data
377 filePath := t.GetField(FieldFilePath).Data
6988a057 378
7cd900d6
JH
379 fullFilePath, err := readPath(cc.Server.Config.FileRoot, filePath, fileName)
380 if err != nil {
381 return res, err
382 }
383
384 fw, err := newFileWrapper(cc.Server.FS, fullFilePath, 0)
6988a057
JH
385 if err != nil {
386 return res, err
387 }
388
2e1aec0f
JH
389 encodedName, err := txtEncoder.String(fw.name)
390 if err != nil {
391 return res, fmt.Errorf("invalid filepath encoding: %w", err)
392 }
393
4a88189f 394 fields := []Field{
2e1aec0f 395 NewField(FieldFileName, []byte(encodedName)),
d005ef04
JH
396 NewField(FieldFileTypeString, fw.ffo.FlatFileInformationFork.friendlyType()),
397 NewField(FieldFileCreatorString, fw.ffo.FlatFileInformationFork.friendlyCreator()),
d005ef04
JH
398 NewField(FieldFileType, fw.ffo.FlatFileInformationFork.TypeSignature),
399 NewField(FieldFileCreateDate, fw.ffo.FlatFileInformationFork.CreateDate),
400 NewField(FieldFileModifyDate, fw.ffo.FlatFileInformationFork.ModifyDate),
4a88189f
JH
401 }
402
403 // Include the optional FileComment field if there is a comment.
404 if len(fw.ffo.FlatFileInformationFork.Comment) != 0 {
405 fields = append(fields, NewField(FieldFileComment, fw.ffo.FlatFileInformationFork.Comment))
406 }
407
408 // Include the FileSize field for files.
409 if !bytes.Equal(fw.ffo.FlatFileInformationFork.TypeSignature, []byte{0x66, 0x6c, 0x64, 0x72}) {
410 fields = append(fields, NewField(FieldFileSize, fw.totalSize()))
411 }
412
413 res = append(res, cc.NewReply(t, fields...))
6988a057
JH
414 return res, err
415}
416
417// HandleSetFileInfo updates a file or folder name and/or comment from the Get Info window
6988a057
JH
418// Fields used in the request:
419// * 201 File name
420// * 202 File path Optional
421// * 211 File new name Optional
422// * 210 File comment Optional
423// Fields used in the reply: None
424func HandleSetFileInfo(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
d005ef04
JH
425 fileName := t.GetField(FieldFileName).Data
426 filePath := t.GetField(FieldFilePath).Data
92a7e455
JH
427
428 fullFilePath, err := readPath(cc.Server.Config.FileRoot, filePath, fileName)
429 if err != nil {
430 return res, err
431 }
432
7cd900d6
JH
433 fi, err := cc.Server.FS.Stat(fullFilePath)
434 if err != nil {
435 return res, err
436 }
437
438 hlFile, err := newFileWrapper(cc.Server.FS, fullFilePath, 0)
439 if err != nil {
440 return res, err
441 }
d005ef04 442 if t.GetField(FieldFileComment).Data != nil {
7cd900d6
JH
443 switch mode := fi.Mode(); {
444 case mode.IsDir():
187d6dc5 445 if !cc.Authorize(accessSetFolderComment) {
7cd900d6
JH
446 res = append(res, cc.NewErrReply(t, "You are not allowed to set comments for folders."))
447 return res, err
448 }
449 case mode.IsRegular():
187d6dc5 450 if !cc.Authorize(accessSetFileComment) {
7cd900d6
JH
451 res = append(res, cc.NewErrReply(t, "You are not allowed to set comments for files."))
452 return res, err
453 }
454 }
455
d005ef04 456 if err := hlFile.ffo.FlatFileInformationFork.setComment(t.GetField(FieldFileComment).Data); err != nil {
67db911d
JH
457 return res, err
458 }
7cd900d6
JH
459 w, err := hlFile.infoForkWriter()
460 if err != nil {
461 return res, err
462 }
9cf66aea 463 _, err = io.Copy(w, &hlFile.ffo.FlatFileInformationFork)
7cd900d6
JH
464 if err != nil {
465 return res, err
466 }
467 }
468
d005ef04 469 fullNewFilePath, err := readPath(cc.Server.Config.FileRoot, filePath, t.GetField(FieldFileNewName).Data)
92a7e455
JH
470 if err != nil {
471 return nil, err
472 }
473
d005ef04 474 fileNewName := t.GetField(FieldFileNewName).Data
6988a057
JH
475
476 if fileNewName != nil {
6988a057
JH
477 switch mode := fi.Mode(); {
478 case mode.IsDir():
187d6dc5 479 if !cc.Authorize(accessRenameFolder) {
6988a057
JH
480 res = append(res, cc.NewErrReply(t, "You are not allowed to rename folders."))
481 return res, err
482 }
7cd900d6
JH
483 err = os.Rename(fullFilePath, fullNewFilePath)
484 if os.IsNotExist(err) {
485 res = append(res, cc.NewErrReply(t, "Cannot rename folder "+string(fileName)+" because it does not exist or cannot be found."))
486 return res, err
487 }
6988a057 488 case mode.IsRegular():
187d6dc5 489 if !cc.Authorize(accessRenameFile) {
6988a057
JH
490 res = append(res, cc.NewErrReply(t, "You are not allowed to rename files."))
491 return res, err
492 }
7cd900d6
JH
493 fileDir, err := readPath(cc.Server.Config.FileRoot, filePath, []byte{})
494 if err != nil {
495 return nil, err
496 }
2e1aec0f
JH
497 hlFile.name, err = txtDecoder.String(string(fileNewName))
498 if err != nil {
499 return res, fmt.Errorf("invalid filepath encoding: %w", err)
500 }
501
7cd900d6
JH
502 err = hlFile.move(fileDir)
503 if os.IsNotExist(err) {
504 res = append(res, cc.NewErrReply(t, "Cannot rename file "+string(fileName)+" because it does not exist or cannot be found."))
505 return res, err
506 }
507 if err != nil {
69af8ddb 508 return res, err
7cd900d6 509 }
6988a057
JH
510 }
511 }
512
513 res = append(res, cc.NewReply(t))
514 return res, err
515}
516
517// HandleDeleteFile deletes a file or folder
518// Fields used in the request:
519// * 201 File name
520// * 202 File path
521// Fields used in the reply: none
522func HandleDeleteFile(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
d005ef04
JH
523 fileName := t.GetField(FieldFileName).Data
524 filePath := t.GetField(FieldFilePath).Data
6988a057 525
92a7e455
JH
526 fullFilePath, err := readPath(cc.Server.Config.FileRoot, filePath, fileName)
527 if err != nil {
528 return res, err
529 }
6988a057 530
7cd900d6
JH
531 hlFile, err := newFileWrapper(cc.Server.FS, fullFilePath, 0)
532 if err != nil {
533 return res, err
534 }
6988a057 535
7cd900d6 536 fi, err := hlFile.dataFile()
6988a057 537 if err != nil {
92a7e455 538 res = append(res, cc.NewErrReply(t, "Cannot delete file "+string(fileName)+" because it does not exist or cannot be found."))
6988a057
JH
539 return res, nil
540 }
7cd900d6 541
6988a057
JH
542 switch mode := fi.Mode(); {
543 case mode.IsDir():
187d6dc5 544 if !cc.Authorize(accessDeleteFolder) {
6988a057
JH
545 res = append(res, cc.NewErrReply(t, "You are not allowed to delete folders."))
546 return res, err
547 }
548 case mode.IsRegular():
187d6dc5 549 if !cc.Authorize(accessDeleteFile) {
6988a057
JH
550 res = append(res, cc.NewErrReply(t, "You are not allowed to delete files."))
551 return res, err
552 }
553 }
554
7cd900d6 555 if err := hlFile.delete(); err != nil {
6988a057
JH
556 return res, err
557 }
558
559 res = append(res, cc.NewReply(t))
560 return res, err
561}
562
563// HandleMoveFile moves files or folders. Note: seemingly not documented
564func HandleMoveFile(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
d005ef04 565 fileName := string(t.GetField(FieldFileName).Data)
7cd900d6 566
d005ef04 567 filePath, err := readPath(cc.Server.Config.FileRoot, t.GetField(FieldFilePath).Data, t.GetField(FieldFileName).Data)
7cd900d6
JH
568 if err != nil {
569 return res, err
570 }
571
d005ef04 572 fileNewPath, err := readPath(cc.Server.Config.FileRoot, t.GetField(FieldFileNewPath).Data, nil)
7cd900d6
JH
573 if err != nil {
574 return res, err
575 }
6988a057 576
67db911d 577 cc.logger.Infow("Move file", "src", filePath+"/"+fileName, "dst", fileNewPath+"/"+fileName)
6988a057 578
7cd900d6 579 hlFile, err := newFileWrapper(cc.Server.FS, filePath, 0)
67db911d
JH
580 if err != nil {
581 return res, err
582 }
7cd900d6
JH
583
584 fi, err := hlFile.dataFile()
585 if err != nil {
586 res = append(res, cc.NewErrReply(t, "Cannot delete file "+fileName+" because it does not exist or cannot be found."))
587 return res, err
588 }
6988a057
JH
589 switch mode := fi.Mode(); {
590 case mode.IsDir():
187d6dc5 591 if !cc.Authorize(accessMoveFolder) {
6988a057
JH
592 res = append(res, cc.NewErrReply(t, "You are not allowed to move folders."))
593 return res, err
594 }
595 case mode.IsRegular():
187d6dc5 596 if !cc.Authorize(accessMoveFile) {
6988a057
JH
597 res = append(res, cc.NewErrReply(t, "You are not allowed to move files."))
598 return res, err
599 }
600 }
7cd900d6 601 if err := hlFile.move(fileNewPath); err != nil {
6988a057
JH
602 return res, err
603 }
7cd900d6 604 // TODO: handle other possible errors; e.g. fileWrapper delete fails due to fileWrapper permission issue
6988a057
JH
605
606 res = append(res, cc.NewReply(t))
607 return res, err
608}
609
610func HandleNewFolder(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 611 if !cc.Authorize(accessCreateFolder) {
d4c152a4
JH
612 res = append(res, cc.NewErrReply(t, "You are not allowed to create folders."))
613 return res, err
614 }
d005ef04 615 folderName := string(t.GetField(FieldFileName).Data)
00d1ef67
JH
616
617 folderName = path.Join("/", folderName)
6988a057 618
2e08be58
JH
619 var subPath string
620
d005ef04
JH
621 // FieldFilePath is only present for nested paths
622 if t.GetField(FieldFilePath).Data != nil {
72dd37f1 623 var newFp FilePath
d005ef04 624 _, err := newFp.Write(t.GetField(FieldFilePath).Data)
00d1ef67
JH
625 if err != nil {
626 return nil, err
627 }
2e08be58
JH
628
629 for _, pathItem := range newFp.Items {
630 subPath = filepath.Join("/", subPath, string(pathItem.Name))
631 }
6988a057 632 }
2e08be58 633 newFolderPath := path.Join(cc.Server.Config.FileRoot, subPath, folderName)
2e1aec0f
JH
634 newFolderPath, err = txtDecoder.String(newFolderPath)
635 if err != nil {
636 return res, fmt.Errorf("invalid filepath encoding: %w", err)
637 }
6988a057 638
00d1ef67
JH
639 // TODO: check path and folder name lengths
640
b196a50a 641 if _, err := cc.Server.FS.Stat(newFolderPath); !os.IsNotExist(err) {
00d1ef67
JH
642 msg := fmt.Sprintf("Cannot create folder \"%s\" because there is already a file or folder with that name.", folderName)
643 return []Transaction{cc.NewErrReply(t, msg)}, nil
644 }
645
b196a50a 646 if err := cc.Server.FS.Mkdir(newFolderPath, 0777); err != nil {
00d1ef67
JH
647 msg := fmt.Sprintf("Cannot create folder \"%s\" because an error occurred.", folderName)
648 return []Transaction{cc.NewErrReply(t, msg)}, nil
6988a057
JH
649 }
650
651 res = append(res, cc.NewReply(t))
652 return res, err
653}
654
655func HandleSetUser(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 656 if !cc.Authorize(accessModifyUser) {
d4c152a4
JH
657 res = append(res, cc.NewErrReply(t, "You are not allowed to modify accounts."))
658 return res, err
659 }
660
6699cff2 661 login := string(encodeString(t.GetField(FieldUserLogin).Data))
d005ef04 662 userName := string(t.GetField(FieldUserName).Data)
6988a057 663
d005ef04 664 newAccessLvl := t.GetField(FieldUserAccess).Data
6988a057
JH
665
666 account := cc.Server.Accounts[login]
180d6544
JH
667 if account == nil {
668 return append(res, cc.NewErrReply(t, "Account not found.")), nil
669 }
6988a057 670 account.Name = userName
187d6dc5 671 copy(account.Access[:], newAccessLvl)
6988a057
JH
672
673 // If the password field is cleared in the Hotline edit user UI, the SetUser transaction does
d005ef04
JH
674 // not include FieldUserPassword
675 if t.GetField(FieldUserPassword).Data == nil {
6988a057
JH
676 account.Password = hashAndSalt([]byte(""))
677 }
180d6544
JH
678
679 if !bytes.Equal([]byte{0}, t.GetField(FieldUserPassword).Data) {
d005ef04 680 account.Password = hashAndSalt(t.GetField(FieldUserPassword).Data)
6988a057
JH
681 }
682
6988a057
JH
683 out, err := yaml.Marshal(&account)
684 if err != nil {
685 return res, err
686 }
31658ca1 687 if err := os.WriteFile(filepath.Join(cc.Server.ConfigDir, "Users", login+".yaml"), out, 0666); err != nil {
6988a057
JH
688 return res, err
689 }
690
691 // Notify connected clients logged in as the user of the new access level
692 for _, c := range cc.Server.Clients {
693 if c.Account.Login == login {
694 // Note: comment out these two lines to test server-side deny messages
d005ef04 695 newT := NewTransaction(TranUserAccess, c.ID, NewField(FieldUserAccess, newAccessLvl))
6988a057
JH
696 res = append(res, *newT)
697
a7216f67 698 flagBitmap := big.NewInt(int64(binary.BigEndian.Uint16(c.Flags)))
43754e31 699 if c.Authorize(accessDisconUser) {
b1658a46 700 flagBitmap.SetBit(flagBitmap, UserFlagAdmin, 1)
6988a057 701 } else {
b1658a46 702 flagBitmap.SetBit(flagBitmap, UserFlagAdmin, 0)
6988a057 703 }
a7216f67 704 binary.BigEndian.PutUint16(c.Flags, uint16(flagBitmap.Int64()))
6988a057
JH
705
706 c.Account.Access = account.Access
707
708 cc.sendAll(
d005ef04
JH
709 TranNotifyChangeUser,
710 NewField(FieldUserID, *c.ID),
711 NewField(FieldUserFlags, c.Flags),
712 NewField(FieldUserName, c.UserName),
713 NewField(FieldUserIconID, c.Icon),
6988a057
JH
714 )
715 }
716 }
717
6988a057
JH
718 res = append(res, cc.NewReply(t))
719 return res, err
720}
721
722func HandleGetUser(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 723 if !cc.Authorize(accessOpenUser) {
003a743e
JH
724 res = append(res, cc.NewErrReply(t, "You are not allowed to view accounts."))
725 return res, err
726 }
727
d005ef04 728 account := cc.Server.Accounts[string(t.GetField(FieldUserLogin).Data)]
6988a057 729 if account == nil {
481631f6 730 res = append(res, cc.NewErrReply(t, "Account does not exist."))
6988a057
JH
731 return res, err
732 }
733
734 res = append(res, cc.NewReply(t,
d005ef04 735 NewField(FieldUserName, []byte(account.Name)),
76d0c1f6 736 NewField(FieldUserLogin, encodeString(t.GetField(FieldUserLogin).Data)),
d005ef04
JH
737 NewField(FieldUserPassword, []byte(account.Password)),
738 NewField(FieldUserAccess, account.Access[:]),
6988a057
JH
739 ))
740 return res, err
741}
742
743func HandleListUsers(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 744 if !cc.Authorize(accessOpenUser) {
481631f6
JH
745 res = append(res, cc.NewErrReply(t, "You are not allowed to view accounts."))
746 return res, err
747 }
748
6988a057 749 var userFields []Field
6988a057 750 for _, acc := range cc.Server.Accounts {
b129b7cb 751 b, err := io.ReadAll(acc)
926c7f55
JH
752 if err != nil {
753 return res, err
754 }
755
b129b7cb 756 userFields = append(userFields, NewField(FieldData, b))
6988a057
JH
757 }
758
759 res = append(res, cc.NewReply(t, userFields...))
760 return res, err
761}
762
d2810ae9
JH
763// HandleUpdateUser is used by the v1.5+ multi-user editor to perform account editing for multiple users at a time.
764// An update can be a mix of these actions:
765// * Create user
766// * Delete user
767// * Modify user (including renaming the account login)
768//
769// The Transaction sent by the client includes one data field per user that was modified. This data field in turn
770// contains another data field encoded in its payload with a varying number of sub fields depending on which action is
771// performed. This seems to be the only place in the Hotline protocol where a data field contains another data field.
772func HandleUpdateUser(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
773 for _, field := range t.Fields {
774 subFields, err := ReadFields(field.Data[0:2], field.Data[2:])
775 if err != nil {
776 return res, err
777 }
778
b8b0a6c9 779 // If there's only one subfield, that indicates this is a delete operation for the login in FieldData
d2810ae9 780 if len(subFields) == 1 {
187d6dc5 781 if !cc.Authorize(accessDeleteUser) {
d2810ae9
JH
782 res = append(res, cc.NewErrReply(t, "You are not allowed to delete accounts."))
783 return res, err
784 }
785
6699cff2 786 login := string(encodeString(getField(FieldData, &subFields).Data))
b8b0a6c9
JH
787 cc.logger.Infow("DeleteUser", "login", login)
788
d2810ae9
JH
789 if err := cc.Server.DeleteUser(login); err != nil {
790 return res, err
791 }
792 continue
793 }
794
b8b0a6c9
JH
795 // login of the account to update
796 var accountToUpdate, loginToRename string
797
798 // If FieldData is included, this is a rename operation where FieldData contains the login of the existing
799 // account and FieldUserLogin contains the new login.
800 if getField(FieldData, &subFields) != nil {
6699cff2 801 loginToRename = string(encodeString(getField(FieldData, &subFields).Data))
b8b0a6c9 802 }
6699cff2 803 userLogin := string(encodeString(getField(FieldUserLogin, &subFields).Data))
b8b0a6c9
JH
804 if loginToRename != "" {
805 accountToUpdate = loginToRename
806 } else {
807 accountToUpdate = userLogin
808 }
d2810ae9 809
b8b0a6c9
JH
810 // Check if accountToUpdate has an existing account. If so, we know we are updating an existing user.
811 if acc, ok := cc.Server.Accounts[accountToUpdate]; ok {
812 if loginToRename != "" {
813 cc.logger.Infow("RenameUser", "prevLogin", accountToUpdate, "newLogin", userLogin)
814 } else {
815 cc.logger.Infow("UpdateUser", "login", accountToUpdate)
816 }
d2810ae9 817
b33477b0 818 // account exists, so this is an update action
187d6dc5 819 if !cc.Authorize(accessModifyUser) {
d2810ae9 820 res = append(res, cc.NewErrReply(t, "You are not allowed to modify accounts."))
180d6544 821 return res, nil
d2810ae9
JH
822 }
823
b33477b0
JH
824 // This part is a bit tricky. There are three possibilities:
825 // 1) The transaction is intended to update the password.
826 // In this case, FieldUserPassword is sent with the new password.
827 // 2) The transaction is intended to remove the password.
828 // In this case, FieldUserPassword is not sent.
829 // 3) The transaction updates the users access bits, but not the password.
180d6544 830 // In this case, FieldUserPassword is sent with zero as the only byte.
d005ef04
JH
831 if getField(FieldUserPassword, &subFields) != nil {
832 newPass := getField(FieldUserPassword, &subFields).Data
b33477b0
JH
833 if !bytes.Equal([]byte{0}, newPass) {
834 acc.Password = hashAndSalt(newPass)
835 }
d2810ae9
JH
836 } else {
837 acc.Password = hashAndSalt([]byte(""))
838 }
839
d005ef04
JH
840 if getField(FieldUserAccess, &subFields) != nil {
841 copy(acc.Access[:], getField(FieldUserAccess, &subFields).Data)
d2810ae9
JH
842 }
843
844 err = cc.Server.UpdateUser(
6699cff2
JH
845 string(encodeString(getField(FieldData, &subFields).Data)),
846 string(encodeString(getField(FieldUserLogin, &subFields).Data)),
d005ef04 847 string(getField(FieldUserName, &subFields).Data),
d2810ae9 848 acc.Password,
187d6dc5 849 acc.Access,
d2810ae9
JH
850 )
851 if err != nil {
852 return res, err
853 }
854 } else {
187d6dc5 855 if !cc.Authorize(accessCreateUser) {
d2810ae9 856 res = append(res, cc.NewErrReply(t, "You are not allowed to create new accounts."))
180d6544 857 return res, nil
d2810ae9
JH
858 }
859
b8b0a6c9
JH
860 cc.logger.Infow("CreateUser", "login", userLogin)
861
187d6dc5 862 newAccess := accessBitmap{}
aeb97482 863 copy(newAccess[:], getField(FieldUserAccess, &subFields).Data)
187d6dc5 864
ecb1fcd9
JH
865 // Prevent account from creating new account with greater permission
866 for i := 0; i < 64; i++ {
867 if newAccess.IsSet(i) {
868 if !cc.Authorize(i) {
180d6544 869 return append(res, cc.NewErrReply(t, "Cannot create account with more access than yourself.")), nil
ecb1fcd9
JH
870 }
871 }
872 }
873
b8b0a6c9 874 err = cc.Server.NewUser(userLogin, string(getField(FieldUserName, &subFields).Data), string(getField(FieldUserPassword, &subFields).Data), newAccess)
d2810ae9 875 if err != nil {
180d6544 876 return append(res, cc.NewErrReply(t, "Cannot create account because there is already an account with that login.")), nil
d2810ae9
JH
877 }
878 }
879 }
880
881 res = append(res, cc.NewReply(t))
882 return res, err
883}
884
6988a057
JH
885// HandleNewUser creates a new user account
886func HandleNewUser(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 887 if !cc.Authorize(accessCreateUser) {
481631f6
JH
888 res = append(res, cc.NewErrReply(t, "You are not allowed to create new accounts."))
889 return res, err
890 }
891
6699cff2 892 login := string(encodeString(t.GetField(FieldUserLogin).Data))
6988a057 893
7cd900d6 894 // If the account already dataFile, reply with an error
6988a057
JH
895 if _, ok := cc.Server.Accounts[login]; ok {
896 res = append(res, cc.NewErrReply(t, "Cannot create account "+login+" because there is already an account with that login."))
897 return res, err
898 }
899
187d6dc5 900 newAccess := accessBitmap{}
aeb97482 901 copy(newAccess[:], t.GetField(FieldUserAccess).Data)
187d6dc5 902
ecb1fcd9
JH
903 // Prevent account from creating new account with greater permission
904 for i := 0; i < 64; i++ {
905 if newAccess.IsSet(i) {
906 if !cc.Authorize(i) {
907 res = append(res, cc.NewErrReply(t, "Cannot create account with more access than yourself."))
908 return res, err
909 }
910 }
911 }
912
d005ef04 913 if err := cc.Server.NewUser(login, string(t.GetField(FieldUserName).Data), string(t.GetField(FieldUserPassword).Data), newAccess); err != nil {
180d6544
JH
914 res = append(res, cc.NewErrReply(t, "Cannot create account because there is already an account with that login."))
915 return res, err
6988a057
JH
916 }
917
918 res = append(res, cc.NewReply(t))
919 return res, err
920}
921
922func HandleDeleteUser(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 923 if !cc.Authorize(accessDeleteUser) {
003a743e 924 res = append(res, cc.NewErrReply(t, "You are not allowed to delete accounts."))
180d6544 925 return res, nil
003a743e
JH
926 }
927
6699cff2 928 login := string(encodeString(t.GetField(FieldUserLogin).Data))
6988a057
JH
929
930 if err := cc.Server.DeleteUser(login); err != nil {
931 return res, err
932 }
933
934 res = append(res, cc.NewReply(t))
935 return res, err
936}
937
938// HandleUserBroadcast sends an Administrator Message to all connected clients of the server
939func HandleUserBroadcast(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 940 if !cc.Authorize(accessBroadcast) {
d4c152a4
JH
941 res = append(res, cc.NewErrReply(t, "You are not allowed to send broadcast messages."))
942 return res, err
943 }
944
6988a057 945 cc.sendAll(
d005ef04
JH
946 TranServerMsg,
947 NewField(FieldData, t.GetField(TranGetMsgs).Data),
948 NewField(FieldChatOptions, []byte{0}),
6988a057
JH
949 )
950
951 res = append(res, cc.NewReply(t))
952 return res, err
953}
954
df1ade54
JH
955// HandleGetClientInfoText returns user information for the specific user.
956//
957// Fields used in the request:
958// 103 User ID
959//
960// Fields used in the reply:
961// 102 User name
962// 101 Data User info text string
963func HandleGetClientInfoText(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 964 if !cc.Authorize(accessGetClientInfo) {
df1ade54 965 res = append(res, cc.NewErrReply(t, "You are not allowed to get client info."))
d4c152a4
JH
966 return res, err
967 }
968
d005ef04 969 clientID, _ := byteToInt(t.GetField(FieldUserID).Data)
6988a057
JH
970
971 clientConn := cc.Server.Clients[uint16(clientID)]
972 if clientConn == nil {
df1ade54 973 return append(res, cc.NewErrReply(t, "User not found.")), err
6988a057
JH
974 }
975
6988a057 976 res = append(res, cc.NewReply(t,
d005ef04
JH
977 NewField(FieldData, []byte(clientConn.String())),
978 NewField(FieldUserName, clientConn.UserName),
6988a057
JH
979 ))
980 return res, err
981}
982
983func HandleGetUserNameList(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
984 res = append(res, cc.NewReply(t, cc.Server.connectedUsers()...))
985
986 return res, err
987}
988
6988a057 989func HandleTranAgreed(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
d005ef04 990 if t.GetField(FieldUserName).Data != nil {
ea5d8c51 991 if cc.Authorize(accessAnyName) {
d005ef04 992 cc.UserName = t.GetField(FieldUserName).Data
ea5d8c51
JH
993 } else {
994 cc.UserName = []byte(cc.Account.Name)
995 }
996 }
997
d005ef04 998 cc.Icon = t.GetField(FieldUserIconID).Data
6988a057 999
67db911d 1000 cc.logger = cc.logger.With("name", string(cc.UserName))
0db54aa7 1001 cc.logger.Infow("Login successful", "clientVersion", fmt.Sprintf("%v", func() int { i, _ := byteToInt(cc.Version); return i }()))
67db911d 1002
d005ef04 1003 options := t.GetField(FieldOptions).Data
6988a057
JH
1004 optBitmap := big.NewInt(int64(binary.BigEndian.Uint16(options)))
1005
a7216f67 1006 flagBitmap := big.NewInt(int64(binary.BigEndian.Uint16(cc.Flags)))
6988a057
JH
1007
1008 // Check refuse private PM option
1009 if optBitmap.Bit(refusePM) == 1 {
b1658a46 1010 flagBitmap.SetBit(flagBitmap, UserFlagRefusePM, 1)
a7216f67 1011 binary.BigEndian.PutUint16(cc.Flags, uint16(flagBitmap.Int64()))
6988a057
JH
1012 }
1013
1014 // Check refuse private chat option
1015 if optBitmap.Bit(refuseChat) == 1 {
b1658a46 1016 flagBitmap.SetBit(flagBitmap, UserFlagRefusePChat, 1)
a7216f67 1017 binary.BigEndian.PutUint16(cc.Flags, uint16(flagBitmap.Int64()))
6988a057
JH
1018 }
1019
1020 // Check auto response
1021 if optBitmap.Bit(autoResponse) == 1 {
d005ef04 1022 cc.AutoReply = t.GetField(FieldAutomaticResponse).Data
6988a057 1023 } else {
aebc4d36 1024 cc.AutoReply = []byte{}
6988a057
JH
1025 }
1026
ea5d8c51 1027 trans := cc.notifyOthers(
003a743e 1028 *NewTransaction(
d005ef04
JH
1029 TranNotifyChangeUser, nil,
1030 NewField(FieldUserName, cc.UserName),
1031 NewField(FieldUserID, *cc.ID),
1032 NewField(FieldUserIconID, cc.Icon),
1033 NewField(FieldUserFlags, cc.Flags),
003a743e 1034 ),
ea5d8c51
JH
1035 )
1036 res = append(res, trans...)
6988a057 1037
9067f234 1038 if cc.Server.Config.BannerFile != "" {
d005ef04 1039 res = append(res, *NewTransaction(TranServerBanner, cc.ID, NewField(FieldBannerType, []byte("JPEG"))))
9067f234
JH
1040 }
1041
6988a057
JH
1042 res = append(res, cc.NewReply(t))
1043
1044 return res, err
1045}
1046
6988a057
JH
1047// HandleTranOldPostNews updates the flat news
1048// Fields used in this request:
1049// 101 Data
1050func HandleTranOldPostNews(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1051 if !cc.Authorize(accessNewsPostArt) {
d4c152a4
JH
1052 res = append(res, cc.NewErrReply(t, "You are not allowed to post news."))
1053 return res, err
1054 }
1055
6988a057
JH
1056 cc.Server.flatNewsMux.Lock()
1057 defer cc.Server.flatNewsMux.Unlock()
1058
1059 newsDateTemplate := defaultNewsDateFormat
1060 if cc.Server.Config.NewsDateFormat != "" {
1061 newsDateTemplate = cc.Server.Config.NewsDateFormat
1062 }
1063
1064 newsTemplate := defaultNewsTemplate
1065 if cc.Server.Config.NewsDelimiter != "" {
1066 newsTemplate = cc.Server.Config.NewsDelimiter
1067 }
1068
d005ef04 1069 newsPost := fmt.Sprintf(newsTemplate+"\r", cc.UserName, time.Now().Format(newsDateTemplate), t.GetField(FieldData).Data)
c8bfd606 1070 newsPost = strings.ReplaceAll(newsPost, "\n", "\r")
6988a057 1071
4d64a5b9
JH
1072 // update news in memory
1073 cc.Server.FlatNews = append([]byte(newsPost), cc.Server.FlatNews...)
1074
6988a057 1075 // update news on disk
8a1512f9 1076 if err := cc.Server.FS.WriteFile(filepath.Join(cc.Server.ConfigDir, "MessageBoard.txt"), cc.Server.FlatNews, 0644); err != nil {
6988a057
JH
1077 return res, err
1078 }
1079
1080 // Notify all clients of updated news
1081 cc.sendAll(
d005ef04
JH
1082 TranNewMsg,
1083 NewField(FieldData, []byte(newsPost)),
6988a057
JH
1084 )
1085
1086 res = append(res, cc.NewReply(t))
1087 return res, err
1088}
1089
1090func HandleDisconnectUser(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1091 if !cc.Authorize(accessDisconUser) {
d4c152a4
JH
1092 res = append(res, cc.NewErrReply(t, "You are not allowed to disconnect users."))
1093 return res, err
1094 }
1095
d005ef04 1096 clientConn := cc.Server.Clients[binary.BigEndian.Uint16(t.GetField(FieldUserID).Data)]
6988a057 1097
187d6dc5 1098 if clientConn.Authorize(accessCannotBeDiscon) {
6988a057
JH
1099 res = append(res, cc.NewErrReply(t, clientConn.Account.Login+" is not allowed to be disconnected."))
1100 return res, err
1101 }
1102
d005ef04 1103 // If FieldOptions is set, then the client IP is banned in addition to disconnected.
46862572
JH
1104 // 00 01 = temporary ban
1105 // 00 02 = permanent ban
d005ef04
JH
1106 if t.GetField(FieldOptions).Data != nil {
1107 switch t.GetField(FieldOptions).Data[1] {
46862572
JH
1108 case 1:
1109 // send message: "You are temporarily banned on this server"
1110 cc.logger.Infow("Disconnect & temporarily ban " + string(clientConn.UserName))
1111
1112 res = append(res, *NewTransaction(
d005ef04 1113 TranServerMsg,
46862572 1114 clientConn.ID,
d005ef04
JH
1115 NewField(FieldData, []byte("You are temporarily banned on this server")),
1116 NewField(FieldChatOptions, []byte{0, 0}),
46862572
JH
1117 ))
1118
1119 banUntil := time.Now().Add(tempBanDuration)
1120 cc.Server.banList[strings.Split(clientConn.RemoteAddr, ":")[0]] = &banUntil
46862572
JH
1121 case 2:
1122 // send message: "You are permanently banned on this server"
1123 cc.logger.Infow("Disconnect & ban " + string(clientConn.UserName))
1124
1125 res = append(res, *NewTransaction(
d005ef04 1126 TranServerMsg,
46862572 1127 clientConn.ID,
d005ef04
JH
1128 NewField(FieldData, []byte("You are permanently banned on this server")),
1129 NewField(FieldChatOptions, []byte{0, 0}),
46862572
JH
1130 ))
1131
1132 cc.Server.banList[strings.Split(clientConn.RemoteAddr, ":")[0]] = nil
b1658a46
JH
1133 }
1134
1135 err := cc.Server.writeBanList()
1136 if err != nil {
1137 return res, err
46862572 1138 }
6988a057
JH
1139 }
1140
46862572
JH
1141 // TODO: remove this awful hack
1142 go func() {
1143 time.Sleep(1 * time.Second)
1144 clientConn.Disconnect()
1145 }()
1146
1147 return append(res, cc.NewReply(t)), err
6988a057
JH
1148}
1149
d4c152a4
JH
1150// HandleGetNewsCatNameList returns a list of news categories for a path
1151// Fields used in the request:
1152// 325 News path (Optional)
6988a057 1153func HandleGetNewsCatNameList(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1154 if !cc.Authorize(accessNewsReadArt) {
d4c152a4
JH
1155 res = append(res, cc.NewErrReply(t, "You are not allowed to read news."))
1156 return res, err
1157 }
6988a057 1158
d005ef04 1159 pathStrs := ReadNewsPath(t.GetField(FieldNewsPath).Data)
6988a057
JH
1160 cats := cc.Server.GetNewsCatByPath(pathStrs)
1161
1162 // To store the keys in slice in sorted order
1163 keys := make([]string, len(cats))
1164 i := 0
1165 for k := range cats {
1166 keys[i] = k
1167 i++
1168 }
1169 sort.Strings(keys)
1170
1171 var fieldData []Field
1172 for _, k := range keys {
1173 cat := cats[k]
72dd37f1 1174 b, _ := cat.MarshalBinary()
6988a057 1175 fieldData = append(fieldData, NewField(
d005ef04 1176 FieldNewsCatListData15,
72dd37f1 1177 b,
6988a057
JH
1178 ))
1179 }
1180
1181 res = append(res, cc.NewReply(t, fieldData...))
1182 return res, err
1183}
1184
1185func HandleNewNewsCat(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1186 if !cc.Authorize(accessNewsCreateCat) {
d4c152a4
JH
1187 res = append(res, cc.NewErrReply(t, "You are not allowed to create news categories."))
1188 return res, err
1189 }
1190
d005ef04
JH
1191 name := string(t.GetField(FieldNewsCatName).Data)
1192 pathStrs := ReadNewsPath(t.GetField(FieldNewsPath).Data)
6988a057
JH
1193
1194 cats := cc.Server.GetNewsCatByPath(pathStrs)
1195 cats[name] = NewsCategoryListData15{
1196 Name: name,
9cf66aea 1197 Type: [2]byte{0, 3},
6988a057
JH
1198 Articles: map[uint32]*NewsArtData{},
1199 SubCats: make(map[string]NewsCategoryListData15),
1200 }
1201
1202 if err := cc.Server.writeThreadedNews(); err != nil {
1203 return res, err
1204 }
1205 res = append(res, cc.NewReply(t))
1206 return res, err
1207}
1208
d4c152a4
JH
1209// Fields used in the request:
1210// 322 News category name
1211// 325 News path
6988a057 1212func HandleNewNewsFldr(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1213 if !cc.Authorize(accessNewsCreateFldr) {
d4c152a4
JH
1214 res = append(res, cc.NewErrReply(t, "You are not allowed to create news folders."))
1215 return res, err
1216 }
1217
d005ef04
JH
1218 name := string(t.GetField(FieldFileName).Data)
1219 pathStrs := ReadNewsPath(t.GetField(FieldNewsPath).Data)
6988a057 1220
67db911d 1221 cc.logger.Infof("Creating new news folder %s", name)
6988a057
JH
1222
1223 cats := cc.Server.GetNewsCatByPath(pathStrs)
1224 cats[name] = NewsCategoryListData15{
1225 Name: name,
9cf66aea 1226 Type: [2]byte{0, 2},
6988a057
JH
1227 Articles: map[uint32]*NewsArtData{},
1228 SubCats: make(map[string]NewsCategoryListData15),
1229 }
1230 if err := cc.Server.writeThreadedNews(); err != nil {
1231 return res, err
1232 }
1233 res = append(res, cc.NewReply(t))
1234 return res, err
1235}
1236
33265393
JH
1237// HandleGetNewsArtData gets the list of article names at the specified news path.
1238
6988a057
JH
1239// Fields used in the request:
1240// 325 News path Optional
33265393
JH
1241
1242// Fields used in the reply:
6988a057
JH
1243// 321 News article list data Optional
1244func HandleGetNewsArtNameList(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1245 if !cc.Authorize(accessNewsReadArt) {
d4c152a4
JH
1246 res = append(res, cc.NewErrReply(t, "You are not allowed to read news."))
1247 return res, err
1248 }
d005ef04 1249 pathStrs := ReadNewsPath(t.GetField(FieldNewsPath).Data)
6988a057
JH
1250
1251 var cat NewsCategoryListData15
1252 cats := cc.Server.ThreadedNews.Categories
1253
003a743e
JH
1254 for _, fp := range pathStrs {
1255 cat = cats[fp]
1256 cats = cats[fp].SubCats
6988a057
JH
1257 }
1258
1259 nald := cat.GetNewsArtListData()
1260
9cf66aea
JH
1261 b, err := io.ReadAll(&nald)
1262 if err != nil {
1263
1264 }
1265
1266 res = append(res, cc.NewReply(t, NewField(FieldNewsArtListData, b)))
6988a057
JH
1267 return res, err
1268}
1269
33265393
JH
1270// HandleGetNewsArtData requests information about the specific news article.
1271// Fields used in the request:
1272//
1273// Request fields
1274// 325 News path
1275// 326 News article ID
1276// 327 News article data flavor
1277//
1278// Fields used in the reply:
1279// 328 News article title
1280// 329 News article poster
1281// 330 News article date
1282// 331 Previous article ID
1283// 332 Next article ID
1284// 335 Parent article ID
1285// 336 First child article ID
1286// 327 News article data flavor "Should be “text/plain”
1287// 333 News article data Optional (if data flavor is “text/plain”)
6988a057 1288func HandleGetNewsArtData(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1289 if !cc.Authorize(accessNewsReadArt) {
d4c152a4
JH
1290 res = append(res, cc.NewErrReply(t, "You are not allowed to read news."))
1291 return res, err
1292 }
1293
6988a057
JH
1294 var cat NewsCategoryListData15
1295 cats := cc.Server.ThreadedNews.Categories
1296
d005ef04 1297 for _, fp := range ReadNewsPath(t.GetField(FieldNewsPath).Data) {
003a743e
JH
1298 cat = cats[fp]
1299 cats = cats[fp].SubCats
6988a057 1300 }
6988a057 1301
33265393
JH
1302 // The official Hotline clients will send the article ID as 2 bytes if possible, but
1303 // some third party clients such as Frogblast and Heildrun will always send 4 bytes
d005ef04 1304 convertedID, err := byteToInt(t.GetField(FieldNewsArtID).Data)
33265393
JH
1305 if err != nil {
1306 return res, err
1307 }
6988a057 1308
33265393 1309 art := cat.Articles[uint32(convertedID)]
6988a057
JH
1310 if art == nil {
1311 res = append(res, cc.NewReply(t))
1312 return res, err
1313 }
1314
6988a057 1315 res = append(res, cc.NewReply(t,
d005ef04
JH
1316 NewField(FieldNewsArtTitle, []byte(art.Title)),
1317 NewField(FieldNewsArtPoster, []byte(art.Poster)),
1318 NewField(FieldNewsArtDate, art.Date),
1319 NewField(FieldNewsArtPrevArt, art.PrevArt),
1320 NewField(FieldNewsArtNextArt, art.NextArt),
1321 NewField(FieldNewsArtParentArt, art.ParentArt),
1322 NewField(FieldNewsArt1stChildArt, art.FirstChildArt),
1323 NewField(FieldNewsArtDataFlav, []byte("text/plain")),
1324 NewField(FieldNewsArtData, []byte(art.Data)),
6988a057
JH
1325 ))
1326 return res, err
1327}
1328
8eb43f95
JH
1329// HandleDelNewsItem deletes an existing threaded news folder or category from the server.
1330// Fields used in the request:
1331// 325 News path
1332// Fields used in the reply:
1333// None
6988a057 1334func HandleDelNewsItem(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
d005ef04 1335 pathStrs := ReadNewsPath(t.GetField(FieldNewsPath).Data)
6988a057 1336
6988a057 1337 cats := cc.Server.ThreadedNews.Categories
6988a057
JH
1338 delName := pathStrs[len(pathStrs)-1]
1339 if len(pathStrs) > 1 {
7e2e07da
JH
1340 for _, fp := range pathStrs[0 : len(pathStrs)-1] {
1341 cats = cats[fp].SubCats
6988a057
JH
1342 }
1343 }
1344
9cf66aea 1345 if cats[delName].Type == [2]byte{0, 3} {
8eb43f95
JH
1346 if !cc.Authorize(accessNewsDeleteCat) {
1347 return append(res, cc.NewErrReply(t, "You are not allowed to delete news categories.")), nil
1348 }
1349 } else {
1350 if !cc.Authorize(accessNewsDeleteFldr) {
1351 return append(res, cc.NewErrReply(t, "You are not allowed to delete news folders.")), nil
1352 }
1353 }
1354
6988a057
JH
1355 delete(cats, delName)
1356
8eb43f95 1357 if err := cc.Server.writeThreadedNews(); err != nil {
6988a057
JH
1358 return res, err
1359 }
1360
8eb43f95 1361 return append(res, cc.NewReply(t)), nil
6988a057
JH
1362}
1363
1364func HandleDelNewsArt(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1365 if !cc.Authorize(accessNewsDeleteArt) {
d4c152a4
JH
1366 res = append(res, cc.NewErrReply(t, "You are not allowed to delete news articles."))
1367 return res, err
1368 }
1369
6988a057
JH
1370 // Request Fields
1371 // 325 News path
1372 // 326 News article ID
1373 // 337 News article – recursive delete Delete child articles (1) or not (0)
d005ef04
JH
1374 pathStrs := ReadNewsPath(t.GetField(FieldNewsPath).Data)
1375 ID, err := byteToInt(t.GetField(FieldNewsArtID).Data)
5890e1d2
JH
1376 if err != nil {
1377 return res, err
1378 }
6988a057
JH
1379
1380 // TODO: Delete recursive
1381 cats := cc.Server.GetNewsCatByPath(pathStrs[:len(pathStrs)-1])
1382
1383 catName := pathStrs[len(pathStrs)-1]
1384 cat := cats[catName]
1385
1386 delete(cat.Articles, uint32(ID))
1387
1388 cats[catName] = cat
1389 if err := cc.Server.writeThreadedNews(); err != nil {
1390 return res, err
1391 }
1392
1393 res = append(res, cc.NewReply(t))
1394 return res, err
1395}
1396
d4c152a4
JH
1397// Request fields
1398// 325 News path
1399// 326 News article ID ID of the parent article?
1400// 328 News article title
1401// 334 News article flags
1402// 327 News article data flavor Currently “text/plain”
1403// 333 News article data
6988a057 1404func HandlePostNewsArt(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1405 if !cc.Authorize(accessNewsPostArt) {
d4c152a4
JH
1406 res = append(res, cc.NewErrReply(t, "You are not allowed to post news articles."))
1407 return res, err
1408 }
6988a057 1409
d005ef04 1410 pathStrs := ReadNewsPath(t.GetField(FieldNewsPath).Data)
6988a057
JH
1411 cats := cc.Server.GetNewsCatByPath(pathStrs[:len(pathStrs)-1])
1412
1413 catName := pathStrs[len(pathStrs)-1]
1414 cat := cats[catName]
1415
d005ef04 1416 artID, err := byteToInt(t.GetField(FieldNewsArtID).Data)
5890e1d2
JH
1417 if err != nil {
1418 return res, err
1419 }
1420 convertedArtID := uint32(artID)
1421 bs := make([]byte, 4)
f808efcd 1422 binary.BigEndian.PutUint32(bs, convertedArtID)
5890e1d2 1423
6988a057 1424 newArt := NewsArtData{
d005ef04 1425 Title: string(t.GetField(FieldNewsArtTitle).Data),
72dd37f1 1426 Poster: string(cc.UserName),
3c9b1dcd 1427 Date: toHotlineTime(time.Now()),
6988a057
JH
1428 PrevArt: []byte{0, 0, 0, 0},
1429 NextArt: []byte{0, 0, 0, 0},
5890e1d2 1430 ParentArt: bs,
6988a057
JH
1431 FirstChildArt: []byte{0, 0, 0, 0},
1432 DataFlav: []byte("text/plain"),
d005ef04 1433 Data: string(t.GetField(FieldNewsArtData).Data),
6988a057
JH
1434 }
1435
1436 var keys []int
1437 for k := range cat.Articles {
1438 keys = append(keys, int(k))
1439 }
1440
1441 nextID := uint32(1)
1442 if len(keys) > 0 {
1443 sort.Ints(keys)
1444 prevID := uint32(keys[len(keys)-1])
1445 nextID = prevID + 1
1446
1447 binary.BigEndian.PutUint32(newArt.PrevArt, prevID)
1448
1449 // Set next article ID
1450 binary.BigEndian.PutUint32(cat.Articles[prevID].NextArt, nextID)
1451 }
1452
1453 // Update parent article with first child reply
5890e1d2 1454 parentID := convertedArtID
6988a057 1455 if parentID != 0 {
5890e1d2 1456 parentArt := cat.Articles[parentID]
6988a057
JH
1457
1458 if bytes.Equal(parentArt.FirstChildArt, []byte{0, 0, 0, 0}) {
1459 binary.BigEndian.PutUint32(parentArt.FirstChildArt, nextID)
1460 }
1461 }
1462
1463 cat.Articles[nextID] = &newArt
1464
1465 cats[catName] = cat
1466 if err := cc.Server.writeThreadedNews(); err != nil {
1467 return res, err
1468 }
1469
1470 res = append(res, cc.NewReply(t))
1471 return res, err
1472}
1473
1474// HandleGetMsgs returns the flat news data
1475func HandleGetMsgs(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1476 if !cc.Authorize(accessNewsReadArt) {
481631f6
JH
1477 res = append(res, cc.NewErrReply(t, "You are not allowed to read news."))
1478 return res, err
1479 }
1480
d005ef04 1481 res = append(res, cc.NewReply(t, NewField(FieldData, cc.Server.FlatNews)))
6988a057
JH
1482
1483 return res, err
1484}
1485
1486func HandleDownloadFile(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1487 if !cc.Authorize(accessDownloadFile) {
481631f6
JH
1488 res = append(res, cc.NewErrReply(t, "You are not allowed to download files."))
1489 return res, err
1490 }
1491
d005ef04
JH
1492 fileName := t.GetField(FieldFileName).Data
1493 filePath := t.GetField(FieldFilePath).Data
1494 resumeData := t.GetField(FieldFileResumeData).Data
16a4ad70
JH
1495
1496 var dataOffset int64
1497 var frd FileResumeData
1498 if resumeData != nil {
d005ef04 1499 if err := frd.UnmarshalBinary(t.GetField(FieldFileResumeData).Data); err != nil {
16a4ad70
JH
1500 return res, err
1501 }
7cd900d6 1502 // TODO: handle rsrc fork offset
16a4ad70
JH
1503 dataOffset = int64(binary.BigEndian.Uint32(frd.ForkInfoList[0].DataSize[:]))
1504 }
1505
7cd900d6 1506 fullFilePath, err := readPath(cc.Server.Config.FileRoot, filePath, fileName)
92a7e455
JH
1507 if err != nil {
1508 return res, err
1509 }
1510
7cd900d6 1511 hlFile, err := newFileWrapper(cc.Server.FS, fullFilePath, dataOffset)
6988a057
JH
1512 if err != nil {
1513 return res, err
1514 }
1515
df1ade54 1516 xferSize := hlFile.ffo.TransferSize(0)
6988a057 1517
df1ade54 1518 ft := cc.newFileTransfer(FileDownload, fileName, filePath, xferSize)
6988a057 1519
7cd900d6 1520 // TODO: refactor to remove this
16a4ad70
JH
1521 if resumeData != nil {
1522 var frd FileResumeData
d005ef04 1523 if err := frd.UnmarshalBinary(t.GetField(FieldFileResumeData).Data); err != nil {
d4c152a4
JH
1524 return res, err
1525 }
16a4ad70
JH
1526 ft.fileResumeData = &frd
1527 }
1528
d1cd6664
JH
1529 // Optional field for when a HL v1.5+ client requests file preview
1530 // Used only for TEXT, JPEG, GIFF, BMP or PICT files
1531 // The value will always be 2
d005ef04
JH
1532 if t.GetField(FieldFileTransferOptions).Data != nil {
1533 ft.options = t.GetField(FieldFileTransferOptions).Data
7cd900d6 1534 xferSize = hlFile.ffo.FlatFileDataForkHeader.DataSize[:]
d1cd6664
JH
1535 }
1536
6988a057 1537 res = append(res, cc.NewReply(t,
d005ef04
JH
1538 NewField(FieldRefNum, ft.refNum[:]),
1539 NewField(FieldWaitingCount, []byte{0x00, 0x00}), // TODO: Implement waiting count
1540 NewField(FieldTransferSize, xferSize),
1541 NewField(FieldFileSize, hlFile.ffo.FlatFileDataForkHeader.DataSize[:]),
6988a057
JH
1542 ))
1543
1544 return res, err
1545}
1546
1547// Download all files from the specified folder and sub-folders
6988a057 1548func HandleDownloadFolder(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1549 if !cc.Authorize(accessDownloadFile) {
d4c152a4
JH
1550 res = append(res, cc.NewErrReply(t, "You are not allowed to download folders."))
1551 return res, err
1552 }
1553
d005ef04 1554 fullFilePath, err := readPath(cc.Server.Config.FileRoot, t.GetField(FieldFilePath).Data, t.GetField(FieldFileName).Data)
aebc4d36
JH
1555 if err != nil {
1556 return res, err
1557 }
92a7e455 1558
6988a057
JH
1559 transferSize, err := CalcTotalSize(fullFilePath)
1560 if err != nil {
1561 return res, err
1562 }
1563 itemCount, err := CalcItemCount(fullFilePath)
1564 if err != nil {
1565 return res, err
1566 }
df1ade54 1567
d005ef04 1568 fileTransfer := cc.newFileTransfer(FolderDownload, t.GetField(FieldFileName).Data, t.GetField(FieldFilePath).Data, transferSize)
df1ade54
JH
1569
1570 var fp FilePath
d005ef04 1571 _, err = fp.Write(t.GetField(FieldFilePath).Data)
df1ade54
JH
1572 if err != nil {
1573 return res, err
1574 }
1575
6988a057 1576 res = append(res, cc.NewReply(t,
d005ef04
JH
1577 NewField(FieldRefNum, fileTransfer.ReferenceNumber),
1578 NewField(FieldTransferSize, transferSize),
1579 NewField(FieldFolderItemCount, itemCount),
1580 NewField(FieldWaitingCount, []byte{0x00, 0x00}), // TODO: Implement waiting count
6988a057
JH
1581 ))
1582 return res, err
1583}
1584
1585// Upload all files from the local folder and its subfolders to the specified path on the server
1586// Fields used in the request
1587// 201 File name
1588// 202 File path
df2735b2 1589// 108 transfer size Total size of all items in the folder
6988a057
JH
1590// 220 Folder item count
1591// 204 File transfer options "Optional Currently set to 1" (TODO: ??)
1592func HandleUploadFolder(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
7e2e07da 1593 var fp FilePath
d005ef04
JH
1594 if t.GetField(FieldFilePath).Data != nil {
1595 if _, err = fp.Write(t.GetField(FieldFilePath).Data); err != nil {
7e2e07da
JH
1596 return res, err
1597 }
1598 }
1599
1600 // Handle special cases for Upload and Drop Box folders
187d6dc5 1601 if !cc.Authorize(accessUploadAnywhere) {
7e2e07da 1602 if !fp.IsUploadDir() && !fp.IsDropbox() {
d005ef04 1603 res = append(res, cc.NewErrReply(t, fmt.Sprintf("Cannot accept upload of the folder \"%v\" because you are only allowed to upload to the \"Uploads\" folder.", string(t.GetField(FieldFileName).Data))))
7e2e07da
JH
1604 return res, err
1605 }
1606 }
1607
df1ade54 1608 fileTransfer := cc.newFileTransfer(FolderUpload,
d005ef04
JH
1609 t.GetField(FieldFileName).Data,
1610 t.GetField(FieldFilePath).Data,
1611 t.GetField(FieldTransferSize).Data,
df1ade54
JH
1612 )
1613
d005ef04 1614 fileTransfer.FolderItemCount = t.GetField(FieldFolderItemCount).Data
6988a057 1615
d005ef04 1616 res = append(res, cc.NewReply(t, NewField(FieldRefNum, fileTransfer.ReferenceNumber)))
6988a057
JH
1617 return res, err
1618}
1619
7e2e07da 1620// HandleUploadFile
16a4ad70
JH
1621// Fields used in the request:
1622// 201 File name
1623// 202 File path
1624// 204 File transfer options "Optional
1625// Used only to resume download, currently has value 2"
1626// 108 File transfer size "Optional used if download is not resumed"
6988a057 1627func HandleUploadFile(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1628 if !cc.Authorize(accessUploadFile) {
a0241c25
JH
1629 res = append(res, cc.NewErrReply(t, "You are not allowed to upload files."))
1630 return res, err
1631 }
1632
d005ef04
JH
1633 fileName := t.GetField(FieldFileName).Data
1634 filePath := t.GetField(FieldFilePath).Data
1635 transferOptions := t.GetField(FieldFileTransferOptions).Data
1636 transferSize := t.GetField(FieldTransferSize).Data // not sent for resume
16a4ad70 1637
7e2e07da
JH
1638 var fp FilePath
1639 if filePath != nil {
8fc43f8e 1640 if _, err = fp.Write(filePath); err != nil {
7e2e07da
JH
1641 return res, err
1642 }
1643 }
1644
1645 // Handle special cases for Upload and Drop Box folders
187d6dc5 1646 if !cc.Authorize(accessUploadAnywhere) {
7e2e07da
JH
1647 if !fp.IsUploadDir() && !fp.IsDropbox() {
1648 res = append(res, cc.NewErrReply(t, fmt.Sprintf("Cannot accept upload of the file \"%v\" because you are only allowed to upload to the \"Uploads\" folder.", string(fileName))))
1649 return res, err
1650 }
1651 }
df1ade54
JH
1652 fullFilePath, err := readPath(cc.Server.Config.FileRoot, filePath, fileName)
1653 if err != nil {
1654 return res, err
1655 }
7e2e07da 1656
df1ade54
JH
1657 if _, err := cc.Server.FS.Stat(fullFilePath); err == nil {
1658 res = append(res, cc.NewErrReply(t, fmt.Sprintf("Cannot accept upload because there is already a file named \"%v\". Try choosing a different name.", string(fileName))))
1659 return res, err
6988a057
JH
1660 }
1661
df1ade54
JH
1662 ft := cc.newFileTransfer(FileUpload, fileName, filePath, transferSize)
1663
d005ef04 1664 replyT := cc.NewReply(t, NewField(FieldRefNum, ft.ReferenceNumber))
16a4ad70 1665
7cd900d6 1666 // client has requested to resume a partially transferred file
16a4ad70 1667 if transferOptions != nil {
b196a50a 1668 fileInfo, err := cc.Server.FS.Stat(fullFilePath + incompleteFileSuffix)
16a4ad70
JH
1669 if err != nil {
1670 return res, err
1671 }
1672
1673 offset := make([]byte, 4)
1674 binary.BigEndian.PutUint32(offset, uint32(fileInfo.Size()))
1675
1676 fileResumeData := NewFileResumeData([]ForkInfoList{
1677 *NewForkInfoList(offset),
1678 })
1679
1680 b, _ := fileResumeData.BinaryMarshal()
1681
df1ade54
JH
1682 ft.TransferSize = offset
1683
d005ef04 1684 replyT.Fields = append(replyT.Fields, NewField(FieldFileResumeData, b))
16a4ad70
JH
1685 }
1686
1687 res = append(res, replyT)
6988a057
JH
1688 return res, err
1689}
1690
6988a057 1691func HandleSetClientUserInfo(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
d005ef04
JH
1692 if len(t.GetField(FieldUserIconID).Data) == 4 {
1693 cc.Icon = t.GetField(FieldUserIconID).Data[2:]
6988a057 1694 } else {
d005ef04 1695 cc.Icon = t.GetField(FieldUserIconID).Data
264b7c27
JH
1696 }
1697 if cc.Authorize(accessAnyName) {
d005ef04 1698 cc.UserName = t.GetField(FieldUserName).Data
6988a057 1699 }
6988a057
JH
1700
1701 // the options field is only passed by the client versions > 1.2.3.
d005ef04 1702 options := t.GetField(FieldOptions).Data
6988a057
JH
1703 if options != nil {
1704 optBitmap := big.NewInt(int64(binary.BigEndian.Uint16(options)))
a7216f67 1705 flagBitmap := big.NewInt(int64(binary.BigEndian.Uint16(cc.Flags)))
6988a057 1706
b1658a46 1707 flagBitmap.SetBit(flagBitmap, UserFlagRefusePM, optBitmap.Bit(refusePM))
a7216f67 1708 binary.BigEndian.PutUint16(cc.Flags, uint16(flagBitmap.Int64()))
6988a057 1709
b1658a46 1710 flagBitmap.SetBit(flagBitmap, UserFlagRefusePChat, optBitmap.Bit(refuseChat))
a7216f67 1711 binary.BigEndian.PutUint16(cc.Flags, uint16(flagBitmap.Int64()))
6988a057
JH
1712
1713 // Check auto response
1714 if optBitmap.Bit(autoResponse) == 1 {
d005ef04 1715 cc.AutoReply = t.GetField(FieldAutomaticResponse).Data
6988a057 1716 } else {
aebc4d36 1717 cc.AutoReply = []byte{}
6988a057
JH
1718 }
1719 }
1720
264b7c27
JH
1721 for _, c := range sortedClients(cc.Server.Clients) {
1722 res = append(res, *NewTransaction(
d005ef04 1723 TranNotifyChangeUser,
264b7c27 1724 c.ID,
d005ef04
JH
1725 NewField(FieldUserID, *cc.ID),
1726 NewField(FieldUserIconID, cc.Icon),
1727 NewField(FieldUserFlags, cc.Flags),
1728 NewField(FieldUserName, cc.UserName),
264b7c27
JH
1729 ))
1730 }
6988a057
JH
1731
1732 return res, err
1733}
1734
61c272e1
JH
1735// HandleKeepAlive responds to keepalive transactions with an empty reply
1736// * HL 1.9.2 Client sends keepalive msg every 3 minutes
1737// * HL 1.2.3 Client doesn't send keepalives
6988a057
JH
1738func HandleKeepAlive(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
1739 res = append(res, cc.NewReply(t))
1740
1741 return res, err
1742}
1743
1744func HandleGetFileNameList(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
92a7e455
JH
1745 fullPath, err := readPath(
1746 cc.Server.Config.FileRoot,
d005ef04 1747 t.GetField(FieldFilePath).Data,
92a7e455
JH
1748 nil,
1749 )
1750 if err != nil {
1751 return res, err
6988a057
JH
1752 }
1753
7e2e07da 1754 var fp FilePath
d005ef04
JH
1755 if t.GetField(FieldFilePath).Data != nil {
1756 if _, err = fp.Write(t.GetField(FieldFilePath).Data); err != nil {
7e2e07da
JH
1757 return res, err
1758 }
1759 }
1760
1761 // Handle special case for drop box folders
187d6dc5 1762 if fp.IsDropbox() && !cc.Authorize(accessViewDropBoxes) {
2e08be58 1763 res = append(res, cc.NewErrReply(t, "You are not allowed to view drop boxes."))
7e2e07da
JH
1764 return res, err
1765 }
1766
b8c0a83a 1767 fileNames, err := getFileNameList(fullPath, cc.Server.Config.IgnoreFiles)
6988a057
JH
1768 if err != nil {
1769 return res, err
1770 }
1771
1772 res = append(res, cc.NewReply(t, fileNames...))
1773
1774 return res, err
1775}
1776
1777// =================================
1778// Hotline private chat flow
1779// =================================
d005ef04 1780// 1. ClientA sends TranInviteNewChat to server with user ID to invite
6988a057 1781// 2. Server creates new ChatID
d005ef04 1782// 3. Server sends TranInviteToChat to invitee
6988a057
JH
1783// 4. Server replies to ClientA with new Chat ID
1784//
1785// A dialog box pops up in the invitee client with options to accept or decline the invitation.
1786// If Accepted is clicked:
d005ef04 1787// 1. ClientB sends TranJoinChat with FieldChatID
6988a057
JH
1788
1789// HandleInviteNewChat invites users to new private chat
1790func HandleInviteNewChat(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1791 if !cc.Authorize(accessOpenChat) {
d4c152a4
JH
1792 res = append(res, cc.NewErrReply(t, "You are not allowed to request private chat."))
1793 return res, err
1794 }
1795
6988a057 1796 // Client to Invite
d005ef04 1797 targetID := t.GetField(FieldUserID).Data
6988a057
JH
1798 newChatID := cc.Server.NewPrivateChat(cc)
1799
c1c44744
JH
1800 // Check if target user has "Refuse private chat" flag
1801 binary.BigEndian.Uint16(targetID)
1802 targetClient := cc.Server.Clients[binary.BigEndian.Uint16(targetID)]
1803
1804 flagBitmap := big.NewInt(int64(binary.BigEndian.Uint16(targetClient.Flags)))
b1658a46 1805 if flagBitmap.Bit(UserFlagRefusePChat) == 1 {
c1c44744
JH
1806 res = append(res,
1807 *NewTransaction(
d005ef04 1808 TranServerMsg,
c1c44744 1809 cc.ID,
d005ef04
JH
1810 NewField(FieldData, []byte(string(targetClient.UserName)+" does not accept private chats.")),
1811 NewField(FieldUserName, targetClient.UserName),
1812 NewField(FieldUserID, *targetClient.ID),
1813 NewField(FieldOptions, []byte{0, 2}),
c1c44744
JH
1814 ),
1815 )
1816 } else {
1817 res = append(res,
1818 *NewTransaction(
d005ef04 1819 TranInviteToChat,
c1c44744 1820 &targetID,
d005ef04
JH
1821 NewField(FieldChatID, newChatID),
1822 NewField(FieldUserName, cc.UserName),
1823 NewField(FieldUserID, *cc.ID),
c1c44744
JH
1824 ),
1825 )
1826 }
6988a057
JH
1827
1828 res = append(res,
1829 cc.NewReply(t,
d005ef04
JH
1830 NewField(FieldChatID, newChatID),
1831 NewField(FieldUserName, cc.UserName),
1832 NewField(FieldUserID, *cc.ID),
1833 NewField(FieldUserIconID, cc.Icon),
1834 NewField(FieldUserFlags, cc.Flags),
6988a057
JH
1835 ),
1836 )
1837
1838 return res, err
1839}
1840
1841func HandleInviteToChat(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 1842 if !cc.Authorize(accessOpenChat) {
d4c152a4
JH
1843 res = append(res, cc.NewErrReply(t, "You are not allowed to request private chat."))
1844 return res, err
1845 }
1846
6988a057 1847 // Client to Invite
d005ef04
JH
1848 targetID := t.GetField(FieldUserID).Data
1849 chatID := t.GetField(FieldChatID).Data
6988a057
JH
1850
1851 res = append(res,
1852 *NewTransaction(
d005ef04 1853 TranInviteToChat,
6988a057 1854 &targetID,
d005ef04
JH
1855 NewField(FieldChatID, chatID),
1856 NewField(FieldUserName, cc.UserName),
1857 NewField(FieldUserID, *cc.ID),
6988a057
JH
1858 ),
1859 )
1860 res = append(res,
1861 cc.NewReply(
1862 t,
d005ef04
JH
1863 NewField(FieldChatID, chatID),
1864 NewField(FieldUserName, cc.UserName),
1865 NewField(FieldUserID, *cc.ID),
1866 NewField(FieldUserIconID, cc.Icon),
1867 NewField(FieldUserFlags, cc.Flags),
6988a057
JH
1868 ),
1869 )
1870
1871 return res, err
1872}
1873
1874func HandleRejectChatInvite(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
d005ef04 1875 chatID := t.GetField(FieldChatID).Data
6988a057
JH
1876 chatInt := binary.BigEndian.Uint32(chatID)
1877
1878 privChat := cc.Server.PrivateChats[chatInt]
1879
72dd37f1 1880 resMsg := append(cc.UserName, []byte(" declined invitation to chat")...)
6988a057
JH
1881
1882 for _, c := range sortedClients(privChat.ClientConn) {
1883 res = append(res,
1884 *NewTransaction(
d005ef04 1885 TranChatMsg,
6988a057 1886 c.ID,
d005ef04
JH
1887 NewField(FieldChatID, chatID),
1888 NewField(FieldData, resMsg),
6988a057
JH
1889 ),
1890 )
1891 }
1892
1893 return res, err
1894}
1895
1896// HandleJoinChat is sent from a v1.8+ Hotline client when the joins a private chat
1897// Fields used in the reply:
1898// * 115 Chat subject
1899// * 300 User name with info (Optional)
1900// * 300 (more user names with info)
1901func HandleJoinChat(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
d005ef04 1902 chatID := t.GetField(FieldChatID).Data
6988a057
JH
1903 chatInt := binary.BigEndian.Uint32(chatID)
1904
1905 privChat := cc.Server.PrivateChats[chatInt]
1906
d005ef04 1907 // Send TranNotifyChatChangeUser to current members of the chat to inform of new user
6988a057
JH
1908 for _, c := range sortedClients(privChat.ClientConn) {
1909 res = append(res,
1910 *NewTransaction(
d005ef04 1911 TranNotifyChatChangeUser,
6988a057 1912 c.ID,
d005ef04
JH
1913 NewField(FieldChatID, chatID),
1914 NewField(FieldUserName, cc.UserName),
1915 NewField(FieldUserID, *cc.ID),
1916 NewField(FieldUserIconID, cc.Icon),
1917 NewField(FieldUserFlags, cc.Flags),
6988a057
JH
1918 ),
1919 )
1920 }
1921
1922 privChat.ClientConn[cc.uint16ID()] = cc
1923
d005ef04 1924 replyFields := []Field{NewField(FieldChatSubject, []byte(privChat.Subject))}
6988a057 1925 for _, c := range sortedClients(privChat.ClientConn) {
9cf66aea
JH
1926
1927 b, err := io.ReadAll(&User{
6988a057 1928 ID: *c.ID,
a7216f67
JH
1929 Icon: c.Icon,
1930 Flags: c.Flags,
72dd37f1 1931 Name: string(c.UserName),
9cf66aea
JH
1932 })
1933 if err != nil {
1934 return res, nil
6988a057 1935 }
9cf66aea 1936 replyFields = append(replyFields, NewField(FieldUsernameWithInfo, b))
6988a057
JH
1937 }
1938
1939 res = append(res, cc.NewReply(t, replyFields...))
1940 return res, err
1941}
1942
1943// HandleLeaveChat is sent from a v1.8+ Hotline client when the user exits a private chat
1944// Fields used in the request:
d005ef04 1945// - 114 FieldChatID
33265393 1946//
6988a057
JH
1947// Reply is not expected.
1948func HandleLeaveChat(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
d005ef04 1949 chatID := t.GetField(FieldChatID).Data
6988a057
JH
1950 chatInt := binary.BigEndian.Uint32(chatID)
1951
c74c1f28
JH
1952 privChat, ok := cc.Server.PrivateChats[chatInt]
1953 if !ok {
1954 return res, nil
1955 }
6988a057
JH
1956
1957 delete(privChat.ClientConn, cc.uint16ID())
1958
1959 // Notify members of the private chat that the user has left
1960 for _, c := range sortedClients(privChat.ClientConn) {
1961 res = append(res,
1962 *NewTransaction(
d005ef04 1963 TranNotifyChatDeleteUser,
6988a057 1964 c.ID,
d005ef04
JH
1965 NewField(FieldChatID, chatID),
1966 NewField(FieldUserID, *cc.ID),
6988a057
JH
1967 ),
1968 )
1969 }
1970
1971 return res, err
1972}
1973
1974// HandleSetChatSubject is sent from a v1.8+ Hotline client when the user sets a private chat subject
1975// Fields used in the request:
1976// * 114 Chat ID
2d92d26e 1977// * 115 Chat subject
6988a057
JH
1978// Reply is not expected.
1979func HandleSetChatSubject(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
d005ef04 1980 chatID := t.GetField(FieldChatID).Data
6988a057
JH
1981 chatInt := binary.BigEndian.Uint32(chatID)
1982
1983 privChat := cc.Server.PrivateChats[chatInt]
d005ef04 1984 privChat.Subject = string(t.GetField(FieldChatSubject).Data)
6988a057
JH
1985
1986 for _, c := range sortedClients(privChat.ClientConn) {
1987 res = append(res,
1988 *NewTransaction(
d005ef04 1989 TranNotifyChatSubject,
6988a057 1990 c.ID,
d005ef04
JH
1991 NewField(FieldChatID, chatID),
1992 NewField(FieldChatSubject, t.GetField(FieldChatSubject).Data),
6988a057
JH
1993 ),
1994 )
1995 }
1996
1997 return res, err
1998}
decc2fbf 1999
2d92d26e 2000// HandleMakeAlias makes a file alias using the specified path.
decc2fbf
JH
2001// Fields used in the request:
2002// 201 File name
2003// 202 File path
2004// 212 File new path Destination path
2005//
2006// Fields used in the reply:
2007// None
2008func HandleMakeAlias(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
187d6dc5 2009 if !cc.Authorize(accessMakeAlias) {
decc2fbf
JH
2010 res = append(res, cc.NewErrReply(t, "You are not allowed to make aliases."))
2011 return res, err
2012 }
d005ef04
JH
2013 fileName := t.GetField(FieldFileName).Data
2014 filePath := t.GetField(FieldFilePath).Data
2015 fileNewPath := t.GetField(FieldFileNewPath).Data
decc2fbf
JH
2016
2017 fullFilePath, err := readPath(cc.Server.Config.FileRoot, filePath, fileName)
2018 if err != nil {
2019 return res, err
2020 }
2021
2022 fullNewFilePath, err := readPath(cc.Server.Config.FileRoot, fileNewPath, fileName)
2023 if err != nil {
2024 return res, err
2025 }
2026
67db911d 2027 cc.logger.Debugw("Make alias", "src", fullFilePath, "dst", fullNewFilePath)
decc2fbf 2028
b196a50a 2029 if err := cc.Server.FS.Symlink(fullFilePath, fullNewFilePath); err != nil {
decc2fbf
JH
2030 res = append(res, cc.NewErrReply(t, "Error creating alias"))
2031 return res, nil
2032 }
2033
2034 res = append(res, cc.NewReply(t))
2035 return res, err
2036}
9067f234 2037
969e6481
JH
2038// HandleDownloadBanner handles requests for a new banner from the server
2039// Fields used in the request:
2040// None
2041// Fields used in the reply:
d005ef04
JH
2042// 107 FieldRefNum Used later for transfer
2043// 108 FieldTransferSize Size of data to be downloaded
9067f234 2044func HandleDownloadBanner(cc *ClientConn, t *Transaction) (res []Transaction, err error) {
9067f234
JH
2045 fi, err := cc.Server.FS.Stat(filepath.Join(cc.Server.ConfigDir, cc.Server.Config.BannerFile))
2046 if err != nil {
2047 return res, err
2048 }
2049
df1ade54 2050 ft := cc.newFileTransfer(bannerDownload, []byte{}, []byte{}, make([]byte, 4))
9067f234 2051
df1ade54 2052 binary.BigEndian.PutUint32(ft.TransferSize, uint32(fi.Size()))
9067f234
JH
2053
2054 res = append(res, cc.NewReply(t,
d005ef04
JH
2055 NewField(FieldRefNum, ft.refNum[:]),
2056 NewField(FieldTransferSize, ft.TransferSize),
9067f234
JH
2057 ))
2058
9067f234
JH
2059 return res, err
2060}