Skip to content

Commit c1a6090

Browse files
committed
feature(ssh): save asciinema file when session is finished
1 parent fce7950 commit c1a6090

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

ssh/session/session.go

+26
Original file line numberDiff line numberDiff line change
@@ -625,6 +625,10 @@ func (s *Session) Announce(client gossh.Channel) error {
625625
// Finish terminates the session between Agent and Client, sending a request to Agent to closes it.
626626
func (s *Session) Finish() (err error) {
627627
s.once.Do(func() {
628+
log.WithFields(log.Fields{
629+
"uid": s.UID,
630+
}).Trace("session finish called")
631+
628632
if s.Agent.Conn != nil {
629633
request, _ := http.NewRequest(http.MethodDelete, fmt.Sprintf("/ssh/close/%s", s.UID), nil)
630634

@@ -643,6 +647,28 @@ func (s *Session) Finish() (err error) {
643647
err = errs[0]
644648
}
645649

650+
if envs.IsEnterprise() {
651+
log.WithFields(log.Fields{
652+
"uid": s.UID,
653+
}).Info("saving sessions as Asciinema files")
654+
655+
for seat := range s.Seat.Load() {
656+
if err := s.api.SaveSession(s.UID, int(seat)); err != nil {
657+
log.WithError(err).WithFields(log.Fields{
658+
"uid": s.UID,
659+
"seat": seat,
660+
}).Error("failed to save the session as Asciinema file")
661+
662+
continue
663+
}
664+
665+
log.WithFields(log.Fields{
666+
"uid": s.UID,
667+
"seat": seat,
668+
}).Info("asciinema file saved")
669+
}
670+
}
671+
646672
log.WithFields(
647673
log.Fields{
648674
"uid": s.UID,

0 commit comments

Comments
 (0)