mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
31 lines
554 B
Go
31 lines
554 B
Go
package badoption
|
|
|
|
import (
|
|
"regexp"
|
|
|
|
"github.com/sagernet/sing/common/json"
|
|
)
|
|
|
|
type Regexp regexp.Regexp
|
|
|
|
func (r *Regexp) Build() *regexp.Regexp {
|
|
return (*regexp.Regexp)(r)
|
|
}
|
|
|
|
func (r *Regexp) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal((*regexp.Regexp)(r).String())
|
|
}
|
|
|
|
func (r *Regexp) UnmarshalJSON(content []byte) error {
|
|
var stringValue string
|
|
err := json.Unmarshal(content, &stringValue)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
regex, err := regexp.Compile(stringValue)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
*r = Regexp(*regex)
|
|
return nil
|
|
}
|