// Copyright (c) Abstract Machines // SPDX-License-Identifier: Apache-2.0 package re import ( "encoding/json" "strings" svcerr "github.com/absmach/supermq/pkg/errors/service" ) // Status represents Rule status. type Status uint8 // Possible User status values. const ( // EnabledStatus represents enabled Rule. EnabledStatus Status = iota // DisabledStatus represents disabled Rule. DisabledStatus // DeletedStatus represents a rule that will be deleted. DeletedStatus // AllStatus is used for querying purposes to list rules irrespective // of their status - both enabled and disabled. It is never stored in the // database as the actual User status and should always be the largest // value in this enumeration. AllStatus ) // String representation of the possible status values. const ( Disabled = "disabled" Enabled = "enabled" Deleted = "deleted" All = "all" Unknown = "unknown" ) func (s Status) String() string { switch s { case DisabledStatus: return Disabled case EnabledStatus: return Enabled case DeletedStatus: return Deleted case AllStatus: return All default: return Unknown } } // ToStatus converts string value to a valid status. func ToStatus(status string) (Status, error) { switch status { case "", Enabled: return EnabledStatus, nil case Disabled: return DisabledStatus, nil case Deleted: return DeletedStatus, nil case All: return AllStatus, nil } return Status(0), svcerr.ErrInvalidStatus } func (s Status) MarshalJSON() ([]byte, error) { return json.Marshal(s.String()) } func (s *Status) UnmarshalJSON(data []byte) error { str := strings.Trim(string(data), "\"") val, err := ToStatus(str) *s = val return err }