| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- package sub
- import (
- "regexp"
- "strconv"
- "strings"
- "time"
- "unicode"
- "github.com/mhsanaei/3x-ui/v3/internal/database/model"
- "github.com/mhsanaei/3x-ui/v3/internal/util/common"
- "github.com/mhsanaei/3x-ui/v3/internal/xray"
- )
- // remarkContext carries the per-client data a remark template can interpolate.
- // stats holds the live traffic record when one exists; when it doesn't, the
- // caller synthesizes a minimal one from the client so expiry/total/status tokens
- // still resolve. hostRemark is the host endpoint's own remark: it takes priority
- // over the inbound's remark as the config name and backs the {{HOST}} token.
- type remarkContext struct {
- client model.Client
- stats xray.ClientTraffic
- inbound *model.Inbound
- hostRemark string
- }
- // configName is the display name for a link: the host endpoint's own remark when
- // it has one, otherwise the inbound's remark.
- func (ctx remarkContext) configName() string {
- if ctx.hostRemark != "" {
- return ctx.hostRemark
- }
- if ctx.inbound != nil {
- return ctx.inbound.Remark
- }
- return ""
- }
- // remarkVarRe matches a {{TOKEN}} placeholder. Tokens are uppercase letters and
- // underscores only, so ordinary braces in a remark are left untouched.
- var remarkVarRe = regexp.MustCompile(`\{\{([A-Z_]+)\}\}`)
- // unlimitedMark is the value the human-readable quota/expiry tokens render when
- // the client has no limit. A segment built only around such a token carries no
- // information, so it is dropped rather than printed as "∞" (see expandRemarkVars).
- const unlimitedMark = "∞"
- // unlimitedDropTokens are the tokens that render unlimitedMark for an unlimited
- // client. A "|"-separated segment whose only value comes from one of these is
- // dropped whole when unlimited, so the operator never sees "📊∞|⏳∞D".
- var unlimitedDropTokens = map[string]bool{
- "TRAFFIC_LEFT": true,
- "TRAFFIC_TOTAL": true,
- "DAYS_LEFT": true,
- }
- // expandRemarkVars substitutes every {{TOKEN}} in template with its per-client
- // value. Unknown tokens resolve to "" (never the literal text). The template is
- // split on "|" into segments: a segment whose only value is an unlimited quota
- // or expiry (∞) drops out whole — decoration and separator included — so an
- // unlimited client gets "host" instead of "host|📊∞|⏳∞D".
- func expandRemarkVars(template string, ctx remarkContext) string {
- if !strings.Contains(template, "{{") {
- return template
- }
- segments := strings.Split(template, "|")
- kept := make([]string, 0, len(segments))
- for _, seg := range segments {
- if out, drop := expandSegment(seg, ctx); !drop {
- kept = append(kept, out)
- }
- }
- return strings.Join(kept, "|")
- }
- // expandSegment expands one "|" segment and reports whether it should be dropped.
- // It drops only when the segment carries an unlimited (∞) quota/expiry token and
- // no other token in it resolves to a non-empty value — so a segment mixing, say,
- // {{EMAIL}} with {{TRAFFIC_LEFT}} is always kept.
- func expandSegment(seg string, ctx remarkContext) (string, bool) {
- hasUnlimited, hasOtherValue := false, false
- out := remarkVarRe.ReplaceAllStringFunc(seg, func(m string) string {
- token := m[2 : len(m)-2]
- val := remarkVarValue(token, ctx)
- switch {
- case unlimitedDropTokens[token] && val == unlimitedMark:
- hasUnlimited = true
- case val != "":
- hasOtherValue = true
- }
- return val
- })
- return out, hasUnlimited && !hasOtherValue
- }
- func remarkVarValue(token string, ctx remarkContext) string {
- c := ctx.client
- st := ctx.stats
- used := st.Up + st.Down
- switch token {
- case "EMAIL", "USERNAME":
- return c.Email
- case "INBOUND":
- return ctx.configName()
- case "HOST":
- return ctx.hostRemark
- case "ID":
- return c.ID
- case "SHORT_ID":
- if len(c.ID) >= 8 {
- return c.ID[:8]
- }
- return c.ID
- case "TELEGRAM_ID":
- if c.TgID != 0 {
- return strconv.FormatInt(c.TgID, 10)
- }
- return ""
- case "SUB_ID":
- return c.SubID
- case "COMMENT":
- return c.Comment
- case "STATUS":
- return clientStatus(st)
- case "DAYS_LEFT":
- return daysLeftLabel(st.ExpiryTime)
- case "EXPIRE_DATE":
- return expireDateLabel(st.ExpiryTime)
- case "EXPIRE_UNIX":
- if st.ExpiryTime <= 0 {
- return "0"
- }
- return strconv.FormatInt(st.ExpiryTime/1000, 10)
- case "CREATED_UNIX":
- if c.CreatedAt == 0 {
- return ""
- }
- return strconv.FormatInt(c.CreatedAt/1000, 10)
- case "TRAFFIC_USED":
- return common.FormatTraffic(used)
- case "TRAFFIC_LEFT":
- if st.Total <= 0 {
- return unlimitedMark
- }
- return common.FormatTraffic(max64(st.Total-used, 0))
- case "TRAFFIC_TOTAL":
- if st.Total <= 0 {
- return unlimitedMark
- }
- return common.FormatTraffic(st.Total)
- case "TRAFFIC_USED_BYTES":
- return strconv.FormatInt(used, 10)
- case "TRAFFIC_LEFT_BYTES":
- if st.Total <= 0 {
- return "0"
- }
- return strconv.FormatInt(max64(st.Total-used, 0), 10)
- case "TRAFFIC_TOTAL_BYTES":
- return strconv.FormatInt(st.Total, 10)
- case "UP":
- return common.FormatTraffic(st.Up)
- case "DOWN":
- return common.FormatTraffic(st.Down)
- case "RESET_DAYS":
- if c.Reset > 0 {
- return strconv.Itoa(c.Reset)
- }
- return ""
- }
- return ""
- }
- // clientStatus collapses enable/expiry/quota into a single word.
- func clientStatus(st xray.ClientTraffic) string {
- if !st.Enable {
- return "disabled"
- }
- if st.ExpiryTime > 0 && st.ExpiryTime/1000 < time.Now().Unix() {
- return "expired"
- }
- if st.Total > 0 && st.Up+st.Down >= st.Total {
- return "depleted"
- }
- return "active"
- }
- // daysLeftLabel is the whole-days form of remainingTimeLabel: "∞" for unlimited,
- // "0" once past expiry.
- func daysLeftLabel(expiryMs int64) string {
- if expiryMs == 0 {
- return unlimitedMark
- }
- exp := expiryMs / 1000
- var secs int64
- if exp > 0 {
- secs = exp - time.Now().Unix()
- } else {
- secs = -exp // delayed-start: value is the duration itself
- }
- days := secs / 86400
- if days < 0 {
- return "0"
- }
- return strconv.FormatInt(days, 10)
- }
- // expireDateLabel renders a fixed expiry as YYYY-MM-DD (UTC). Unlimited and
- // delayed-start (no fixed calendar date yet) expiries yield "".
- func expireDateLabel(expiryMs int64) string {
- if expiryMs <= 0 {
- return ""
- }
- return time.Unix(expiryMs/1000, 0).UTC().Format("2006-01-02")
- }
- func max64(a, b int64) int64 {
- if a > b {
- return a
- }
- return b
- }
- // statsForClient returns the client's live traffic record, or a minimal one
- // synthesized from the client (enable/expiry/total) when no live stats exist —
- // so expiry/total/status tokens still resolve on links that have no counters yet.
- func (s *SubService) statsForClient(inbound *model.Inbound, client model.Client) xray.ClientTraffic {
- if stats, ok := s.findClientStats(inbound, client.Email); ok {
- return stats
- }
- return xray.ClientTraffic{
- Enable: client.Enable,
- ExpiryTime: client.ExpiryTime,
- Total: client.TotalGB,
- }
- }
- // lookupClient resolves the full client (TgID, SubID, comment, …) for an email,
- // needed when a global remark template references client-only tokens. Falls back
- // to an email-only client if not found.
- func (s *SubService) lookupClient(inbound *model.Inbound, email string) model.Client {
- clients, _ := s.inboundService.GetClients(inbound)
- for _, c := range clients {
- if c.Email == email {
- return c
- }
- }
- return model.Client{Email: email}
- }
- // usageInfoTokens are the per-client status tokens. On every link of a
- // subscription except the client's first, these (and the decoration leading
- // into them) are dropped, so the traffic/expiry info shows once instead of on
- // every server.
- var usageInfoTokens = []string{
- "TRAFFIC_USED", "TRAFFIC_LEFT", "TRAFFIC_TOTAL",
- "TRAFFIC_USED_BYTES", "TRAFFIC_LEFT_BYTES", "TRAFFIC_TOTAL_BYTES",
- "UP", "DOWN", "DAYS_LEFT", "EXPIRE_DATE", "EXPIRE_UNIX", "STATUS",
- }
- // nameOnlyTemplate returns template with the trailing per-client info part
- // removed: everything from the first usage token (and the decoration — emojis,
- // spaces, separators — leading into it) onward is dropped, leaving the config
- // name. Returns "" when the template is info-only.
- func nameOnlyTemplate(template string) string {
- idx := -1
- for _, tok := range usageInfoTokens {
- if i := strings.Index(template, "{{"+tok+"}}"); i >= 0 && (idx < 0 || i < idx) {
- idx = i
- }
- }
- if idx < 0 {
- return template
- }
- return strings.TrimRightFunc(template[:idx], func(r rune) bool {
- return r != '}' && !unicode.IsLetter(r) && !unicode.IsDigit(r)
- })
- }
- // effectiveTemplate picks which template to expand for one body link: the full
- // template (with the per-client info) for a client's first link, and the
- // name-only template for every link thereafter — so the info shows once. Only
- // called in the subscription-body context (displays bypass the template).
- func (s *SubService) effectiveTemplate(email string) string {
- if s.usageShown == nil {
- s.usageShown = map[string]bool{}
- }
- if s.usageShown[email] {
- return nameOnlyTemplate(s.remarkTemplate)
- }
- s.usageShown[email] = true
- return s.remarkTemplate
- }
- // genTemplatedRemark expands the remark template for one client. hostRemark is
- // the host endpoint's remark (empty for a plain inbound); it takes priority over
- // the inbound remark for the config name and backs the {{HOST}} token.
- func (s *SubService) genTemplatedRemark(inbound *model.Inbound, client model.Client, hostRemark string) string {
- ctx := remarkContext{
- client: client,
- stats: s.statsForClient(inbound, client),
- inbound: inbound,
- hostRemark: hostRemark,
- }
- tmpl := s.effectiveTemplate(client.Email)
- // Fall back to the config name when the template is empty or expands to
- // nothing (e.g. an all-unlimited template whose only segments dropped out).
- if out := expandRemarkVars(tmpl, ctx); strings.TrimSpace(out) != "" {
- return out
- }
- return ctx.configName()
- }
- // genHostRemark builds one host endpoint's remark for a specific client. The
- // config name is the host endpoint's own remark when set, otherwise the inbound's
- // remark. In the subscription body the rest of the remark template still applies;
- // displays show just the config name.
- func (s *SubService) genHostRemark(inbound *model.Inbound, client model.Client, hostRemark string) string {
- if !s.subscriptionBody {
- return remarkContext{inbound: inbound, hostRemark: hostRemark}.configName()
- }
- return s.genTemplatedRemark(inbound, client, hostRemark)
- }
|