go语言写的一个魔镜的小程序

简介: 1、利用了github上的一个go写的EventSource库;https://github.com/antage/eventsource2、利用了心知天气的api接口;https://www.seniverse.com/

WX20220918-100442.png

main.go

package main

import (
    "encoding/json"
    "fmt"
    "html/template"
    "io/ioutil"
    "net/http"
    "os"
    "os/exec"
    "runtime"
    "time"

    "example.com/pub/magicMirror/api"
)

var es = &api.Event{}

func index(w http.ResponseWriter, r *http.Request) {
    //天气预报及体感数据
    weather := new(api.Result)
    weather.AddResult()
    //今天
    toDay := time.Now().Format("2006-01-02 15:04")
    fmt.Println(toDay, "刷新")
    //模板
    var template = template.Must(template.ParseGlob("client/templates/*"))
    template.ExecuteTemplate(w, "index.html", weather)
}

//添加课程表后台
func createCourse(w http.ResponseWriter, r *http.Request) {
    var template = template.Must(template.ParseGlob("client/templates/*"))
    template.ExecuteTemplate(w, "addCourse.html", nil)
}

//生成课程表后台的json数据
func seekCourse(w http.ResponseWriter, r *http.Request) {
    var monday = r.FormValue("monday")
    var mondaySlice = r.FormValue("mondaySlice")
    var tuesday = r.FormValue("tuesday")
    var tuesdaySlice = r.FormValue("tuesdaySlice")
    var wednesday = r.FormValue("wednesday")
    var wednesdaySlice = r.FormValue("wednesdaySlice")
    var friday = r.FormValue("friday")
    var fridaySlice = r.FormValue("fridaySlice")
    var saturday = r.FormValue("saturday")
    var saturdaySlice = r.FormValue("saturdaySlice")
    var sunday = r.FormValue("sunday")
    var sundaySlice = r.FormValue("sundaySlice")
    if monday == "" || tuesday == "" || wednesday == "" || friday == "" || saturday == "" || sunday == "" {
        fp, _ := os.Open("interface/courseJson.json")
        dummy, _ := ioutil.ReadAll(fp)
        w.Write(dummy)
    } else {
        var cu = new(api.Calender)
        cu.AddMsg(monday, mondaySlice)
        cu.AddMsg(tuesday, tuesdaySlice)
        cu.AddMsg(wednesday, wednesdaySlice)
        cu.AddMsg(friday, fridaySlice)
        cu.AddMsg(saturday, saturdaySlice)
        cu.AddMsg(sunday, sundaySlice)
        fmt.Println(len(cu.Items.Items))
        cu.CreateCourseJson()
        dummy := cu.Read()
        w.Write([]byte(dummy))
    }

}

//添加事件通知
func createEvent(w http.ResponseWriter, r *http.Request) {
    tpl := template.Must(template.ParseGlob("client/templates/*"))
    tpl.ExecuteTemplate(w, "createEvent.html", nil)
    if r.FormValue("event") != "" {
        msg := r.FormValue("event")
        go func(msg string) {
            es.Ev.SendEventMessage(msg, "", "")
        }(msg)
        w.Write([]byte(fmt.Sprintf("%s事件添加完毕", msg)))
    }
}

//天气预报
func weather(w http.ResponseWriter, r *http.Request) {
    weather := new(api.Weather)
    weather.CreateWeather("yingkou")
    tpl := template.Must(template.ParseGlob("client/templates/*"))
    tpl.ExecuteTemplate(w, "weather.html", weather.Results[0])
    dummy, _ := json.Marshal(&weather)
    w.Write([]byte(dummy))
}
func NewRoute() *http.ServeMux {
    r := http.NewServeMux()
    //静态数据
    r.Handle("/favicon.ico", http.NotFoundHandler())
    r.Handle("/client/css/", http.StripPrefix("/client/css", http.FileServer(http.Dir("client/css"))))
    r.Handle("/client/img/", http.StripPrefix("/client/img", http.FileServer(http.Dir("client/img"))))
    r.Handle("/client/js/", http.StripPrefix("/client/js", http.FileServer(http.Dir("client/js"))))
    //首页
    r.HandleFunc("/", index)
    //后台课程表添加数据
    r.HandleFunc("/createcourse", createCourse)
    //处理生成课程表
    r.HandleFunc("/course", seekCourse)
    //处理通知事件
    r.Handle("/event", es.Ev)
    r.HandleFunc("/createEvent", createEvent)
    //天气预报
    r.HandleFunc("/weather", weather)
    return r
}

func open(url string) error {
    var (
        cmd  string
        args []string
    )

    switch runtime.GOOS {
    case "windows":
        cmd, args = "cmd", []string{"/c", "start"}
    case "darwin":
        cmd = "open"
    default:
        // "linux", "freebsd", "openbsd", "netbsd"
        cmd = "xdg-open"
    }
    args = append(args, url)
    return exec.Command(cmd, args...).Start()
}
func main() {
    es.Init()
    defer es.Ev.Close()
    mux := NewRoute()
    fmt.Println("魔镜启动中......")
    open("http://localhost")
    http.ListenAndServe(":80", mux)
}

api/weather.go

package api

import (
    "encoding/json"
    "fmt"
    "io/ioutil"
    "log"
    "net/http"
)

type Weather struct {
    Results []weatherLocation `json:"results"`
}
type weatherLocation struct {
    Location location `json:"location"`
    Now      now      `json:"now"`
}
type location struct {
    Id              string `json:"id"`
    Name            string `json:"name"`
    Country         string `json:"country"`
    Path            string `json:"path"`
    Timezone        string `json:"timezone"`
    Timezone_offset string `json:"timezone_offset"`
}
type now struct {
    Text        string `json:"text"`
    Code        string `json:"code"`
    Temperature string `json:"temperature"`
}

func (w *Weather) CreateWeather(city string) {
    key := "xxxxxxxxxxxxxxxxx"
    var url = fmt.Sprintf("https://api.seniverse.com/v3/weather/now.json?key=%s&location=%s&language=zh-Hans&unit=c", key, city)
    response, err := http.DefaultClient.Get(url)
    if err != nil {
        log.Fatal("天气url打开错误", err)
        return
    }
    defer response.Body.Close()
    data, err := ioutil.ReadAll(response.Body)
    if err != nil {
        log.Fatal("天气预报解析错误", err)
        return
    }
    json.Unmarshal(data, &w)
}

api/result.go

package api

type Result struct {
    //城市名
    City string
    //天气图标序号
    WeatherIcon string
    //天气状态如:多云
    Text string
    //气温
    Temperature string
    //体感舒适度
    Life string
    //紫外线
    Uv string
    //穿衣
    Dressing string
    //运动
    Sport string
    //感冒
    Flu string
    //历史上的今天
    HistoryDate  string
    HistoryTitle string
}

func (r *Result) AddResult() {
    var ws = new(Weather)
    ws.CreateWeather("yingkou")
    r.City = ws.Results[0].Location.Name
    r.WeatherIcon = ws.Results[0].Now.Code
    r.Text = ws.Results[0].Now.Text
    r.Temperature = ws.Results[0].Now.Temperature
    //体感
    var lf = new(Life)
    lf.CreateLife("yingkou")
    r.Life = lf.Results[0].Suggestion[0].Comfort.Details
    //紫外线
    r.Uv = lf.Results[0].Suggestion[0].Uv.Brief
    //穿衣
    r.Dressing = lf.Results[0].Suggestion[0].Dressing.Brief
    //运动
    r.Sport = lf.Results[0].Suggestion[0].Sport.Brief
    //感冒
    r.Flu = lf.Results[0].Suggestion[0].Flu.Brief
    //历史上的今天
    var hi = new(History)
    hi.Add()
    r.HistoryDate = hi.Result[1].Date
    r.HistoryTitle = hi.Result[1].Title
}
相关文章
|
10天前
|
存储 JSON 监控
Viper,一个Go语言配置管理神器!
Viper 是一个功能强大的 Go 语言配置管理库,支持从多种来源读取配置,包括文件、环境变量、远程配置中心等。本文详细介绍了 Viper 的核心特性和使用方法,包括从本地 YAML 文件和 Consul 远程配置中心读取配置的示例。Viper 的多来源配置、动态配置和轻松集成特性使其成为管理复杂应用配置的理想选择。
30 2
|
8天前
|
Go 索引
go语言中的循环语句
【11月更文挑战第4天】
19 2
|
8天前
|
Go C++
go语言中的条件语句
【11月更文挑战第4天】
21 2
|
3天前
|
Go API 数据库
Go 语言中常用的 ORM 框架,如 GORM、XORM 和 BeeORM,分析了它们的特点、优势及不足,并从功能特性、性能表现、易用性和社区活跃度等方面进行了比较,旨在帮助开发者根据项目需求选择合适的 ORM 框架。
本文介绍了 Go 语言中常用的 ORM 框架,如 GORM、XORM 和 BeeORM,分析了它们的特点、优势及不足,并从功能特性、性能表现、易用性和社区活跃度等方面进行了比较,旨在帮助开发者根据项目需求选择合适的 ORM 框架。
16 4
|
3天前
|
缓存 监控 前端开发
在 Go 语言中实现 WebSocket 实时通信的应用,包括 WebSocket 的简介、Go 语言的优势、基本实现步骤、应用案例、注意事项及性能优化策略,旨在帮助开发者构建高效稳定的实时通信系统
本文深入探讨了在 Go 语言中实现 WebSocket 实时通信的应用,包括 WebSocket 的简介、Go 语言的优势、基本实现步骤、应用案例、注意事项及性能优化策略,旨在帮助开发者构建高效稳定的实时通信系统。
27 1
|
6天前
|
Go
go语言中的continue 语句
go语言中的continue 语句
16 3
|
7天前
|
安全 Go 调度
探索Go语言的并发模型:goroutine与channel
在这个快节奏的技术世界中,Go语言以其简洁的并发模型脱颖而出。本文将带你深入了解Go语言的goroutine和channel,这两个核心特性如何协同工作,以实现高效、简洁的并发编程。
|
8天前
|
Go
go语言中的 跳转语句
【11月更文挑战第4天】
17 4
|
8天前
|
JSON 安全 Go
Go语言中使用JWT鉴权、Token刷新完整示例,拿去直接用!
本文介绍了如何在 Go 语言中使用 Gin 框架实现 JWT 用户认证和安全保护。JWT(JSON Web Token)是一种轻量、高效的认证与授权解决方案,特别适合微服务架构。文章详细讲解了 JWT 的基本概念、结构以及如何在 Gin 中生成、解析和刷新 JWT。通过示例代码,展示了如何在实际项目中应用 JWT,确保用户身份验证和数据安全。完整代码可在 GitHub 仓库中查看。
40 1
|
1天前
|
存储 Go PHP
Go语言中的加解密利器:go-crypto库全解析
在软件开发中,数据安全和隐私保护至关重要。`go-crypto` 是一个专为 Golang 设计的加密解密工具库,支持 AES 和 RSA 等加密算法,帮助开发者轻松实现数据的加密和解密,保障数据传输和存储的安全性。本文将详细介绍 `go-crypto` 的安装、特性及应用实例。
11 0

热门文章

最新文章

下一篇
无影云桌面