server/admin/sync/exercice_hints.go

89 lines
3.1 KiB
Go
Raw Normal View History

package sync
import (
2018-01-07 22:40:11 +00:00
"bufio"
2018-02-03 01:03:08 +00:00
"crypto"
2018-01-07 22:40:11 +00:00
"encoding/hex"
"fmt"
2018-01-07 22:40:11 +00:00
"io"
"os"
"path"
2018-01-07 22:40:11 +00:00
"strings"
"srs.epita.fr/fic-server/libfic"
2018-02-03 01:03:08 +00:00
_ "golang.org/x/crypto/blake2b"
2018-01-07 22:40:11 +00:00
)
2018-03-09 18:07:08 +00:00
// SyncExerciceHints reads the content of hints/ directories and import it as EHint for the given challenge.
2018-01-07 22:40:11 +00:00
func SyncExerciceHints(i Importer, exercice fic.Exercice) (errs []string) {
params, err := parseExerciceParams(i, exercice.Path)
if err != nil {
errs = append(errs, fmt.Sprintf("%q: challenge.txt: %s", path.Base(exercice.Path), err))
}
if _, err := exercice.WipeHints(); err != nil {
errs = append(errs, err.Error())
} else {
for n, hint := range params.Hints {
2019-01-18 03:23:56 +00:00
if hint.Title == "" {
hint.Title = fmt.Sprintf("Astuce #%d", n+1)
} else {
hint.Title = fixnbsp(hint.Title)
}
if hint.Cost <= 0 {
hint.Cost = exercice.Gain / 4
}
if hint.Filename != "" {
if hint.Content != "" {
errs = append(errs, fmt.Sprintf("%q: challenge.txt: hint %s (%d): content and filename can't be filled at the same time", path.Base(exercice.Path), hint.Title, n+1))
2018-01-07 22:40:11 +00:00
continue
} else if !i.exists(path.Join(exercice.Path, "hints", hint.Filename)) {
errs = append(errs, fmt.Sprintf("%q: challenge.txt: hint %s (%d): %s: File not found", path.Base(exercice.Path), hint.Title, n+1, hint.Filename))
2018-01-07 22:40:11 +00:00
continue
} else {
// Handle files as downloadable content
if res, err := i.importFile(path.Join(exercice.Path, "hints", hint.Filename), func(filePath string, origin string) (interface{}, error) {
// Calculate hash
hash512 := crypto.BLAKE2b_512.New()
if fd, err := os.Open(filePath); err != nil {
return nil, err
} else {
defer fd.Close()
reader := bufio.NewReader(fd)
if _, err := io.Copy(hash512, reader); err != nil {
return nil, err
}
}
result512 := hash512.Sum(nil)
// Special format for downloadable hints: $FILES + hexhash + path from FILES/
return "$FILES" + hex.EncodeToString(result512) + strings.TrimPrefix(filePath, fic.FilesDir), nil
}); err != nil {
errs = append(errs, fmt.Sprintf("%q: unable to import hint file %q: %s", path.Base(exercice.Path), hint.Filename, err))
continue
} else if s, ok := res.(string); !ok {
errs = append(errs, fmt.Sprintf("%q: unable to import hint file %q: invalid string returned as filename", path.Base(exercice.Path), hint.Filename))
continue
} else {
hint.Content = s
}
2018-01-07 22:40:11 +00:00
}
2018-08-17 19:18:10 +00:00
} else if hint.Content == "" {
errs = append(errs, fmt.Sprintf("%q: challenge.txt: hint %s (%d): content and filename can't be empty at the same time", path.Base(exercice.Path), hint.Title, n+1))
continue
} else if hint.Content, err = ProcessMarkdown(i, fixnbsp(hint.Content), exercice.Path); err != nil{
errs = append(errs, fmt.Sprintf("%q: challenge.txt: hint %s (%d): error during markdown formating: %s", path.Base(exercice.Path), hint.Title, n+1, err))
2018-01-07 22:40:11 +00:00
}
// Import hint
if _, err := exercice.AddHint(hint.Title, hint.Content, hint.Cost); err != nil {
errs = append(errs, fmt.Sprintf("%q: challenge.txt: hint %s (%d): %s", path.Base(exercice.Path), hint.Title, n+1, err))
}
}
}
2018-01-07 22:40:11 +00:00
return
}