package web import ( "os" ice "github.com/shylinux/icebergs" kit "github.com/shylinux/toolkits" "fmt" "path" "strings" ) func _share_list(m *ice.Message, arg ...string) { if len(arg) == 0 { m.Grows(ice.WEB_SHARE, nil, "", "", func(index int, value map[string]interface{}) { m.Push("", value, []string{kit.MDB_TIME, "share", kit.MDB_TYPE, kit.MDB_NAME, kit.MDB_TEXT}) m.Push("value", fmt.Sprintf(m.Conf(ice.WEB_SHARE, "meta.template.link"), m.Conf(ice.WEB_SHARE, "meta.domain"), value["share"], value["share"])) }) return } m.Richs(ice.WEB_SHARE, nil, arg[0], func(key string, value map[string]interface{}) { m.Push("detail", value) m.Push("key", "link") m.Push("value", fmt.Sprintf(m.Conf(ice.WEB_SHARE, "meta.template.link"), m.Conf(ice.WEB_SHARE, "meta.domain"), key, key)) m.Push("key", "share") m.Push("value", fmt.Sprintf(m.Conf(ice.WEB_SHARE, "meta.template.share"), m.Conf(ice.WEB_SHARE, "meta.domain"), key)) m.Push("key", "value") m.Push("value", fmt.Sprintf(m.Conf(ice.WEB_SHARE, "meta.template.value"), m.Conf(ice.WEB_SHARE, "meta.domain"), key)) }) } func _share_auth(m *ice.Message, share string, role string) { m.Richs(ice.WEB_SHARE, nil, share, func(key string, value map[string]interface{}) { switch value["type"] { case "active": m.Cmdy(ice.WEB_SPACE, value["name"], "sessid", m.Cmdx(ice.AAA_SESS, "create", role)) case "user": m.Cmdy(ice.AAA_ROLE, role, value["name"]) default: m.Cmdy(ice.AAA_SESS, "auth", value["text"], role) } }) } func _share_check(m *ice.Message, share string) { m.Richs(ice.WEB_SHARE, nil, share, func(key string, value map[string]interface{}) { m.Render(ice.RENDER_QRCODE, kit.Format(kit.Dict( kit.MDB_TYPE, "share", kit.MDB_NAME, value["type"], kit.MDB_TEXT, key, ))) }) } func _share_create(m *ice.Message, kind, name, text string, arg ...string) { arg = append(arg, "storm", m.Option("storm"), "river", m.Option("river")) h := m.Rich(ice.WEB_SHARE, nil, kit.Dict( kit.MDB_TIME, m.Time(m.Conf(ice.WEB_SHARE, "meta.expire")), kit.MDB_TYPE, kind, kit.MDB_NAME, name, kit.MDB_TEXT, text, "extra", kit.Dict(arg), )) // 创建列表 m.Grow(ice.WEB_SHARE, nil, kit.Dict( kit.MDB_TYPE, kind, kit.MDB_NAME, name, kit.MDB_TEXT, text, "share", h, )) m.Logs(ice.LOG_CREATE, "share", h, "type", kind, "name", name) m.Echo(h) } func _share_local(m *ice.Message, arg ...string) { p := path.Join(arg...) switch ls := strings.Split(p, "/"); ls[0] { case "etc", "var": return } m.Render(ice.RENDER_DOWNLOAD, p) } func _share_repos(m *ice.Message, repos string, arg ...string) { prefix := m.Conf(ice.WEB_SERVE, "meta.volcanos.require") if _, e := os.Stat(path.Join(prefix, repos)); e != nil { m.Cmd(ice.CLI_SYSTEM, "git", "clone", "https://"+repos, path.Join(prefix, repos)) } m.Render(ice.RENDER_DOWNLOAD, path.Join(prefix, repos, path.Join(arg...))) } func _share_remote(m *ice.Message, pod string, arg ...string) { m.Cmdy(ice.WEB_SPACE, pod, "web./publish/", arg) m.Render(ice.RENDER_RESULT) } func _share_story(m *ice.Message, value map[string]interface{}, arg ...string) map[string]interface{} { msg := m.Cmd(ice.WEB_STORY, ice.STORY_INDEX, value["text"]) if msg.Append("text") == "" && kit.Value(value, "extra.pod") != "" { msg = m.Cmd(ice.WEB_SPACE, kit.Value(value, "extra.pod"), ice.WEB_STORY, ice.STORY_INDEX, value["text"]) } value = kit.Dict("type", msg.Append("scene"), "name", msg.Append("story"), "text", msg.Append("text"), "file", msg.Append("file")) m.Log(ice.LOG_EXPORT, "%s: %v", arg, kit.Format(value)) return value } func _share_download(m *ice.Message, value map[string]interface{}) { if strings.HasPrefix(kit.Format(value["text"]), m.Conf(ice.WEB_CACHE, "meta.path")) { m.Render(ice.RENDER_DOWNLOAD, value["text"], value["type"], value["name"]) } else { m.Render("%s", value["text"]) } } func _share_action_redirect(m *ice.Message, value map[string]interface{}, share string) bool { m.Render("redirect", "/share", "share", share, "title", kit.Format(value["name"]), "river", kit.Value(value, "extra.river"), "storm", kit.Value(value, "extra.storm"), kit.UnMarshal(kit.Format(kit.Value(value, "extra.tool.0.value"))), ) return true } func _share_action_page(m *ice.Message, value map[string]interface{}) bool { Render(m, ice.RENDER_DOWNLOAD, m.Conf(ice.WEB_SERVE, "meta.page.share")) return true } func _share_action_list(m *ice.Message, value map[string]interface{}, river, storm string) bool { value["count"] = kit.Int(value["count"]) + 1 kit.Fetch(kit.Value(value, "extra.tool"), func(index int, value map[string]interface{}) { m.Push("river", river) m.Push("storm", storm) m.Push("action", index) m.Push("node", value["pod"]) m.Push("group", value["ctx"]) m.Push("index", value["cmd"]) m.Push("args", value["args"]) m.Push("value", value["value"]) msg := m.Cmd(m.Space(value["pod"]), ice.CTX_COMMAND, value["ctx"], value["cmd"]) m.Push("name", value["cmd"]) m.Push("help", kit.Select(msg.Append("help"), kit.Format(value["help"]))) m.Push("inputs", msg.Append("list")) m.Push("feature", msg.Append("meta")) }) return true } func _share_action(m *ice.Message, value map[string]interface{}, arg ...string) bool { if len(arg) == 1 || arg[1] == "" { return _share_action_redirect(m, value, arg[0]) } if arg[1] == "" { return _share_action_page(m, value) } if len(arg) == 2 { return _share_action_list(m, value, arg[0], arg[1]) } // 默认参数 meta := kit.Value(value, kit.Format("extra.tool.%s", arg[2])).(map[string]interface{}) if meta["single"] == "yes" && kit.Select("", arg, 3) != "action" { arg = append(arg[:3], kit.Simple(kit.UnMarshal(kit.Format(meta["args"])))...) for i := len(arg) - 1; i >= 0; i-- { if arg[i] != "" { return true } arg = arg[:i] } } // 执行命令 cmds := kit.Simple(m.Space(meta["pod"]), kit.Keys(meta["ctx"], meta["cmd"]), arg[3:]) m.Cmdy(cmds).Option("cmds", cmds) m.Option("title", value["name"]) if strings.HasPrefix(kit.Format(value["text"]), m.Conf(ice.WEB_CACHE, "meta.path")) { m.Render(ice.RENDER_DOWNLOAD, value["text"], value["type"], value["name"]) } else { m.Render("%s", value["text"]) } return true } func init() { Index.Merge(&ice.Context{ Configs: map[string]*ice.Config{ ice.WEB_SHARE: {Name: "share", Help: "共享链", Value: kit.Data( "index", "usr/volcanos/share.html", "template", share_template, "expire", "72h", )}, }, Commands: map[string]*ice.Command{ ice.WEB_SHARE: {Name: "share share auto", Help: "共享链", Hand: func(m *ice.Message, c *ice.Context, cmd string, arg ...string) { if len(arg) == 0 { _share_list(m) return } switch arg[0] { case "invite": arg = []string{arg[0], m.Cmdx(ice.WEB_SHARE, "add", "invite", kit.Select("tech", arg, 1), kit.Select("miss", arg, 2))} fallthrough case "check": _share_check(m, arg[1]) case "auth": _share_auth(m, arg[1], arg[2]) case "add": _share_create(m, arg[1], arg[2], arg[3], arg[4:]...) default: if len(arg) == 1 { _share_list(m, arg[0]) break } _share_create(m, arg[0], arg[1], arg[2], arg[3:]...) } }}, "/share/": {Name: "/share/", Help: "共享链", Hand: func(m *ice.Message, c *ice.Context, cmd string, arg ...string) { m.Log(ice.LOG_EXPORT, "%s: %v", arg, arg) switch arg[0] { case "local": _share_local(m, arg[1:]...) return } m.Richs(ice.WEB_SHARE, nil, arg[0], func(key string, value map[string]interface{}) { m.Log(ice.LOG_EXPORT, "%s: %v", arg, kit.Format(value)) if m.Warn(m.Option(ice.MSG_USERROLE) != ice.ROLE_ROOT && kit.Time(kit.Format(value[kit.MDB_TIME])) < kit.Time(m.Time()), "expired") { m.Echo("expired") return } switch value["type"] { case ice.TYPE_SPACE: case ice.TYPE_STORY: value = _share_story(m, value, arg...) } switch kit.Select("", arg, 1) { case "download", "下载": _share_download(m, value) return case "detail", "详情": m.Render(kit.Formats(value)) return case "share", "共享码": m.Render(ice.RENDER_QRCODE, kit.Format("%s/share/%s/?share=%s", m.Conf(ice.WEB_SHARE, "meta.domain"), key, key)) return case "check", "安全码": m.Render(ice.RENDER_QRCODE, kit.Format(kit.Dict( kit.MDB_TYPE, "share", kit.MDB_NAME, value["type"], kit.MDB_TEXT, key, ))) return case "value", "数据值": m.Render(ice.RENDER_QRCODE, kit.Format(value), kit.Select("256", arg, 2)) return case "text": m.Render(ice.RENDER_QRCODE, kit.Format(value["text"])) return } switch value["type"] { case ice.TYPE_RIVER: // 共享群组 m.Render("redirect", "/", "share", key, "river", kit.Format(value["text"])) case ice.TYPE_STORM: // 共享应用 m.Render("redirect", "/", "share", key, "storm", kit.Format(value["text"]), "river", kit.Format(kit.Value(value, "extra.river"))) case ice.TYPE_ACTION: _share_action(m, value, arg...) default: // 查看数据 m.Option("type", value["type"]) m.Option("name", value["name"]) m.Option("text", value["text"]) m.Render(ice.RENDER_TEMPLATE, m.Conf(ice.WEB_SHARE, "meta.template.simple")) m.Option(ice.MSG_OUTPUT, ice.RENDER_RESULT) } }) }}, "/plugin/github.com/": {Name: "/space/", Help: "空间站", Hand: func(m *ice.Message, c *ice.Context, cmd string, arg ...string) { _share_repos(m, path.Join(strings.Split(cmd, "/")[2:5]...), arg[6:]...) }}, "/publish/": {Name: "/publish/", Help: "空间站", Hand: func(m *ice.Message, c *ice.Context, cmd string, arg ...string) { if p := m.Option("pod"); p != "" { m.Option("pod", "") _share_remote(m, p, arg...) return } p := path.Join(kit.Simple(m.Conf(ice.WEB_SERVE, "meta.publish"), arg)...) if m.W == nil { m.Cmdy("nfs.cat", p) return } _share_local(m, p) }}, }}, nil) }