代码拉取完成,页面将自动刷新
/*
Nging is a toolbox for webmasters
Copyright (C) 2018-present Wenhui Shen <swh@admpub.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package task
import (
"fmt"
"strconv"
"strings"
"time"
"github.com/admpub/nging/application/dbschema"
"github.com/admpub/nging/application/handler"
"github.com/admpub/nging/application/library/cron"
"github.com/admpub/nging/application/model"
"github.com/webx-top/db"
"github.com/webx-top/echo"
)
func Log(ctx echo.Context) error {
taskID := ctx.Formx(`taskId`).Uint()
totalRows := ctx.Formx(`rows`).Int()
m := model.NewTaskLog(ctx)
page, size, totalRows, p := handler.PagingWithPagination(ctx)
cond := db.Cond{}
var task *model.Task
var err error
if taskID > 0 {
task = model.NewTask(ctx)
err = task.Get(nil, `id`, taskID)
cond[`task_id`] = taskID
}
cnt, err2 := m.List(nil, func(r db.Result) db.Result {
return r.OrderBy(`-id`)
}, page, size, cond)
if err2 != nil {
err = err2
}
if totalRows <= 0 {
totalRows = int(cnt())
p.SetRows(totalRows)
}
ctx.Set(`listData`, m.Objects())
ctx.Set(`pagination`, p)
if task == nil {
task = model.NewTask(ctx)
}
ctx.Set(`task`, task)
ret := handler.Err(ctx, err)
ctx.Set(`activeURL`, `/task/index`)
ctx.Set(`notRecordPrefixFlag`, cron.NotRecordPrefixFlag)
return ctx.Render(`task/log`, ret)
}
func renderLogViewData(ctx echo.Context, m *dbschema.TaskLog, err error) error {
ctx.Set(`data`, m)
ctx.Set(`activeURL`, `/task/index`)
var task *model.Task
if m.TaskId > 0 {
task = model.NewTask(ctx)
err = task.Get(nil, `id`, m.TaskId)
}
ex := &extra{}
entry := cron.GetEntryById(task.Id)
if entry != nil {
ex.NextTime = entry.Next
ex.Running = true
} else {
ex.NextTime = time.Time{}
}
ctx.Set(`task`, task)
ctx.Set(`extra`, ex)
ctx.Set(`notRecordPrefixFlag`, cron.NotRecordPrefixFlag)
return ctx.Render(`task/log_view`, handler.Err(ctx, err))
}
func LogView(ctx echo.Context) error {
id := ctx.Paramx(`id`).Uint()
m := model.NewTaskLog(ctx)
err := m.Get(nil, `id`, id)
if err != nil {
handler.SendFail(ctx, err.Error())
return ctx.Redirect(handler.URLFor(`/task/log`))
}
return renderLogViewData(ctx, m.TaskLog, err)
}
func LogDelete(ctx echo.Context) error {
id := ctx.Formx(`id`).Uint()
taskId := ctx.Formx(`taskId`).Uint()
m := model.NewTaskLog(ctx)
var (
cond db.Cond
err error
n int
)
if id > 0 {
cond = db.Cond{`id`: id}
} else {
ago := ctx.Form(`ago`)
if len(ago) < 2 {
handler.SendFail(ctx, ctx.T(`missing param`))
goto END
}
switch ago[len(ago)-1] {
case 'd': //删除几天前的。例如:7d
n, err = strconv.Atoi(strings.TrimSuffix(ago, `d`))
if err != nil {
handler.SendFail(ctx, err.Error()+`:`+ago)
goto END
}
cond = db.Cond{`created`: db.Lt(time.Now().AddDate(0, 0, -n).Unix())}
case 'm': //删除几个月前的。例如:1m
n, err = strconv.Atoi(strings.TrimSuffix(ago, `m`))
if err != nil {
handler.SendFail(ctx, err.Error()+`:`+ago)
goto END
}
cond = db.Cond{`created`: db.Lt(time.Now().AddDate(0, -n, 0).Unix())}
case 'y': //删除几年前的。例如:1y
n, err = strconv.Atoi(strings.TrimSuffix(ago, `y`))
if err != nil {
handler.SendFail(ctx, err.Error()+`:`+ago)
goto END
}
cond = db.Cond{`created`: db.Lt(time.Now().AddDate(-n, 0, 0).Unix())}
default:
handler.SendFail(ctx, ctx.T(`invalid param`))
goto END
}
if taskId > 0 {
cond[`task_id`] = taskId
}
}
err = m.Delete(nil, cond)
if err == nil {
handler.SendOk(ctx, ctx.T(`操作成功`))
} else {
handler.SendFail(ctx, err.Error())
}
END:
return ctx.Redirect(handler.URLFor(`/task/log?taskId=`) + fmt.Sprint(taskId))
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。