123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- package hubtest
- import (
- "fmt"
- "os"
- "path/filepath"
- "strings"
- "github.com/crowdsecurity/crowdsec/pkg/cwhub"
- )
- func (t *HubTestItem) installPostoverflowItem(hubPostOverflow *cwhub.Item) error {
- postoverflowSource, err := filepath.Abs(filepath.Join(t.HubPath, hubPostOverflow.RemotePath))
- if err != nil {
- return fmt.Errorf("can't get absolute path of '%s': %s", postoverflowSource, err)
- }
- postoverflowFileName := filepath.Base(postoverflowSource)
- // runtime/hub/postoverflows/s00-enrich/crowdsecurity/
- hubDirPostoverflowDest := filepath.Join(t.RuntimeHubPath, filepath.Dir(hubPostOverflow.RemotePath))
- // runtime/postoverflows/s00-enrich
- postoverflowDirDest := fmt.Sprintf("%s/postoverflows/%s/", t.RuntimePath, hubPostOverflow.Stage)
- if err := os.MkdirAll(hubDirPostoverflowDest, os.ModePerm); err != nil {
- return fmt.Errorf("unable to create folder '%s': %s", hubDirPostoverflowDest, err)
- }
- if err := os.MkdirAll(postoverflowDirDest, os.ModePerm); err != nil {
- return fmt.Errorf("unable to create folder '%s': %s", postoverflowDirDest, err)
- }
- // runtime/hub/postoverflows/s00-enrich/crowdsecurity/rdns.yaml
- hubDirPostoverflowPath := filepath.Join(hubDirPostoverflowDest, postoverflowFileName)
- if err := Copy(postoverflowSource, hubDirPostoverflowPath); err != nil {
- return fmt.Errorf("unable to copy '%s' to '%s': %s", postoverflowSource, hubDirPostoverflowPath, err)
- }
- // runtime/postoverflows/s00-enrich/rdns.yaml
- postoverflowDirParserPath := filepath.Join(postoverflowDirDest, postoverflowFileName)
- if err := os.Symlink(hubDirPostoverflowPath, postoverflowDirParserPath); err != nil {
- if !os.IsExist(err) {
- return fmt.Errorf("unable to symlink postoverflow '%s' to '%s': %s", hubDirPostoverflowPath, postoverflowDirParserPath, err)
- }
- }
- return nil
- }
- func (t *HubTestItem) installPostoverflowCustomFrom(postoverflow string, customPath string) (bool, error) {
- // we check if its a custom postoverflow
- customPostOverflowPath := filepath.Join(customPath, postoverflow)
- if _, err := os.Stat(customPostOverflowPath); os.IsNotExist(err) {
- return false, nil
- }
- customPostOverflowPathSplit := strings.Split(customPostOverflowPath, "/")
- customPostoverflowName := customPostOverflowPathSplit[len(customPostOverflowPathSplit)-1]
- // because path is postoverflows/<stage>/<author>/parser.yaml and we wan't the stage
- customPostoverflowStage := customPostOverflowPathSplit[len(customPostOverflowPathSplit)-3]
- // check if stage exist
- hubStagePath := filepath.Join(t.HubPath, fmt.Sprintf("postoverflows/%s", customPostoverflowStage))
- if _, err := os.Stat(hubStagePath); os.IsNotExist(err) {
- return false, fmt.Errorf("stage '%s' from extracted '%s' doesn't exist in the hub", customPostoverflowStage, hubStagePath)
- }
- postoverflowDirDest := fmt.Sprintf("%s/postoverflows/%s/", t.RuntimePath, customPostoverflowStage)
- if err := os.MkdirAll(postoverflowDirDest, os.ModePerm); err != nil {
- return false, fmt.Errorf("unable to create folder '%s': %s", postoverflowDirDest, err)
- }
- customPostoverflowDest := filepath.Join(postoverflowDirDest, customPostoverflowName)
- // if path to postoverflow exist, copy it
- if err := Copy(customPostOverflowPath, customPostoverflowDest); err != nil {
- return false, fmt.Errorf("unable to copy custom parser '%s' to '%s': %s", customPostOverflowPath, customPostoverflowDest, err)
- }
- return true, nil
- }
- func (t *HubTestItem) installPostoverflowCustom(postoverflow string) error {
- for _, customPath := range t.CustomItemsLocation {
- found, err := t.installPostoverflowCustomFrom(postoverflow, customPath)
- if err != nil {
- return err
- }
- if found {
- return nil
- }
- }
- return fmt.Errorf("couldn't find custom postoverflow '%s' in the following location: %+v", postoverflow, t.CustomItemsLocation)
- }
- func (t *HubTestItem) installPostoverflow(name string) error {
- if hubPostOverflow := t.HubIndex.GetItem(cwhub.POSTOVERFLOWS, name); hubPostOverflow != nil {
- return t.installPostoverflowItem(hubPostOverflow)
- }
- return t.installPostoverflowCustom(name)
- }
|