2019-02-23 06:29:19 +00:00
|
|
|
// Work in progress
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
|
2019-04-19 06:36:26 +00:00
|
|
|
c "github.com/Azareal/Gosora/common"
|
2019-02-23 06:29:19 +00:00
|
|
|
"github.com/Azareal/Gosora/query_gen"
|
|
|
|
"gopkg.in/olivere/elastic.v6"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
log.Print("Loading the configuration data")
|
2019-04-19 06:36:26 +00:00
|
|
|
err := c.LoadConfig()
|
2019-02-23 06:29:19 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Print("Processing configuration data")
|
2019-04-19 06:36:26 +00:00
|
|
|
err = c.ProcessConfig()
|
2019-02-23 06:29:19 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2019-04-19 06:36:26 +00:00
|
|
|
if c.DbConfig.Adapter != "mysql" && c.DbConfig.Adapter != "" {
|
2019-02-23 06:29:19 +00:00
|
|
|
log.Fatal("Only MySQL is supported for upgrades right now, please wait for a newer build of the patcher")
|
|
|
|
}
|
|
|
|
|
|
|
|
err = prepMySQL()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
client, err := elastic.NewClient(elastic.SetErrorLog(log.New(os.Stdout, "ES ", log.LstdFlags)))
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
_, _, err = client.Ping("http://127.0.0.1:9200").Do(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = setupIndices(client)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = setupData(client)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func prepMySQL() error {
|
|
|
|
return qgen.Builder.Init("mysql", map[string]string{
|
2019-04-19 06:36:26 +00:00
|
|
|
"host": c.DbConfig.Host,
|
|
|
|
"port": c.DbConfig.Port,
|
|
|
|
"name": c.DbConfig.Dbname,
|
|
|
|
"username": c.DbConfig.Username,
|
|
|
|
"password": c.DbConfig.Password,
|
2019-02-23 06:29:19 +00:00
|
|
|
"collation": "utf8mb4_general_ci",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type ESIndexBase struct {
|
|
|
|
Mappings ESIndexMappings `json:"mappings"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ESIndexMappings struct {
|
|
|
|
Doc ESIndexDoc `json:"_doc"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ESIndexDoc struct {
|
|
|
|
Properties map[string]map[string]string `json:"properties"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ESDocMap map[string]map[string]string
|
|
|
|
|
|
|
|
func (d ESDocMap) Add(column string, cType string) {
|
|
|
|
d["column"] = map[string]string{"type": cType}
|
|
|
|
}
|
|
|
|
|
|
|
|
func setupIndices(client *elastic.Client) error {
|
|
|
|
exists, err := client.IndexExists("topics").Do(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if exists {
|
|
|
|
deleteIndex, err := client.DeleteIndex("topics").Do(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !deleteIndex.Acknowledged {
|
|
|
|
return errors.New("delete not acknowledged")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
docMap := make(ESDocMap)
|
|
|
|
docMap.Add("tid", "integer")
|
|
|
|
docMap.Add("title", "text")
|
|
|
|
docMap.Add("content", "text")
|
|
|
|
docMap.Add("createdBy", "integer")
|
|
|
|
docMap.Add("ip", "ip")
|
|
|
|
docMap.Add("suggest", "completion")
|
|
|
|
indexBase := ESIndexBase{ESIndexMappings{ESIndexDoc{docMap}}}
|
|
|
|
oBytes, err := json.Marshal(indexBase)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
createIndex, err := client.CreateIndex("topics").Body(string(oBytes)).Do(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !createIndex.Acknowledged {
|
|
|
|
return errors.New("not acknowledged")
|
|
|
|
}
|
|
|
|
|
|
|
|
exists, err = client.IndexExists("replies").Do(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if exists {
|
|
|
|
deleteIndex, err := client.DeleteIndex("replies").Do(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !deleteIndex.Acknowledged {
|
|
|
|
return errors.New("delete not acknowledged")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
docMap = make(ESDocMap)
|
|
|
|
docMap.Add("rid", "integer")
|
|
|
|
docMap.Add("tid", "integer")
|
|
|
|
docMap.Add("content", "text")
|
|
|
|
docMap.Add("createdBy", "integer")
|
|
|
|
docMap.Add("ip", "ip")
|
|
|
|
docMap.Add("suggest", "completion")
|
|
|
|
indexBase = ESIndexBase{ESIndexMappings{ESIndexDoc{docMap}}}
|
|
|
|
oBytes, err = json.Marshal(indexBase)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
createIndex, err = client.CreateIndex("replies").Body(string(oBytes)).Do(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !createIndex.Acknowledged {
|
|
|
|
return errors.New("not acknowledged")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type ESTopic struct {
|
|
|
|
ID int `json:"tid"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Content string `json:"content"`
|
|
|
|
CreatedBy int `json:"createdBy"`
|
2019-08-31 22:34:43 +00:00
|
|
|
IP string `json:"ip"`
|
2019-02-23 06:29:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ESReply struct {
|
|
|
|
ID int `json:"rid"`
|
|
|
|
TID int `json:"tid"`
|
|
|
|
Content string `json:"content"`
|
|
|
|
CreatedBy int `json:"createdBy"`
|
2019-08-31 22:34:43 +00:00
|
|
|
IP string `json:"ip"`
|
2019-02-23 06:29:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func setupData(client *elastic.Client) error {
|
2019-02-24 01:29:06 +00:00
|
|
|
tcount := 4
|
|
|
|
errs := make(chan error)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
tin := make([]chan ESTopic, tcount)
|
|
|
|
tf := func(tin chan ESTopic) {
|
|
|
|
for {
|
|
|
|
topic, more := <-tin
|
|
|
|
if !more {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
_, err := client.Index().Index("topics").Type("_doc").Id(strconv.Itoa(topic.ID)).BodyJson(topic).Do(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
errs <- err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i := 0; i < 4; i++ {
|
|
|
|
go tf(tin[i])
|
2019-02-23 06:29:19 +00:00
|
|
|
}
|
|
|
|
|
2019-02-24 01:29:06 +00:00
|
|
|
oi := 0
|
Cascade delete attachments properly.
Cascade delete replied to topic events for replies properly.
Cascade delete likes on topic posts properly.
Cascade delete replies and their children properly.
Recalculate user stats properly when items are deleted.
Users can now unlike topic opening posts.
Add a recalculator to fix abnormalities across upgrades.
Try fixing a last_ip daily update bug.
Add Existable interface.
Add Delete method to LikeStore.
Add Each, Exists, Create, CountUser, CountMegaUser and CountBigUser methods to ReplyStore.
Add CountUser, CountMegaUser, CountBigUser methods to TopicStore.
Add Each method to UserStore.
Add Add, Delete and DeleteResource methods to SubscriptionStore.
Add Delete, DeleteByParams, DeleteByParamsExtra and AidsByParamsExtra methods to ActivityStream.
Add Exists method to ProfileReplyStore.
Add DropColumn, RenameColumn and ChangeColumn to the database adapters.
Shorten ipaddress column names to ip.
- topics table.
- replies table
- users_replies table.
- polls_votes table.
Add extra column to activity_stream table.
Fix an issue upgrading sites to MariaDB 10.3 from older versions of Gosora. Please report any other issues you find.
You need to run the updater / patcher for this commit.
2020-01-31 07:22:08 +00:00
|
|
|
err := qgen.NewAcc().Select("topics").Cols("tid,title,content,createdBy,ip").Each(func(rows *sql.Rows) error {
|
2019-08-31 22:34:43 +00:00
|
|
|
t := ESTopic{}
|
|
|
|
err := rows.Scan(&t.ID, &t.Title, &t.Content, &t.CreatedBy, &t.IP)
|
2019-02-24 01:29:06 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-08-31 22:34:43 +00:00
|
|
|
tin[oi] <- t
|
2019-02-24 01:29:06 +00:00
|
|
|
if oi < 3 {
|
|
|
|
oi++
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
for i := 0; i < 4; i++ {
|
|
|
|
close(tin[i])
|
|
|
|
}
|
|
|
|
errs <- err
|
|
|
|
}()
|
2019-02-23 06:29:19 +00:00
|
|
|
|
2019-02-24 01:29:06 +00:00
|
|
|
go func() {
|
|
|
|
rin := make([]chan ESReply, tcount)
|
|
|
|
rf := func(rin chan ESReply) {
|
|
|
|
for {
|
|
|
|
reply, more := <-rin
|
|
|
|
if !more {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
_, err := client.Index().Index("replies").Type("_doc").Id(strconv.Itoa(reply.ID)).BodyJson(reply).Do(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
errs <- err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i := 0; i < 4; i++ {
|
|
|
|
rf(rin[i])
|
2019-02-23 06:29:19 +00:00
|
|
|
}
|
2019-02-24 01:29:06 +00:00
|
|
|
oi := 0
|
Cascade delete attachments properly.
Cascade delete replied to topic events for replies properly.
Cascade delete likes on topic posts properly.
Cascade delete replies and their children properly.
Recalculate user stats properly when items are deleted.
Users can now unlike topic opening posts.
Add a recalculator to fix abnormalities across upgrades.
Try fixing a last_ip daily update bug.
Add Existable interface.
Add Delete method to LikeStore.
Add Each, Exists, Create, CountUser, CountMegaUser and CountBigUser methods to ReplyStore.
Add CountUser, CountMegaUser, CountBigUser methods to TopicStore.
Add Each method to UserStore.
Add Add, Delete and DeleteResource methods to SubscriptionStore.
Add Delete, DeleteByParams, DeleteByParamsExtra and AidsByParamsExtra methods to ActivityStream.
Add Exists method to ProfileReplyStore.
Add DropColumn, RenameColumn and ChangeColumn to the database adapters.
Shorten ipaddress column names to ip.
- topics table.
- replies table
- users_replies table.
- polls_votes table.
Add extra column to activity_stream table.
Fix an issue upgrading sites to MariaDB 10.3 from older versions of Gosora. Please report any other issues you find.
You need to run the updater / patcher for this commit.
2020-01-31 07:22:08 +00:00
|
|
|
err := qgen.NewAcc().Select("replies").Cols("rid,tid,content,createdBy,ip").Each(func(rows *sql.Rows) error {
|
2019-08-31 22:34:43 +00:00
|
|
|
r := ESReply{}
|
|
|
|
err := rows.Scan(&r.ID, &r.TID, &r.Content, &r.CreatedBy, &r.IP)
|
2019-02-24 01:29:06 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-08-31 22:34:43 +00:00
|
|
|
rin[oi] <- r
|
2019-02-24 01:29:06 +00:00
|
|
|
if oi < 3 {
|
|
|
|
oi++
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
for i := 0; i < 4; i++ {
|
|
|
|
close(rin[i])
|
|
|
|
}
|
|
|
|
errs <- err
|
|
|
|
}()
|
2019-02-23 06:29:19 +00:00
|
|
|
|
2019-02-24 01:29:06 +00:00
|
|
|
fin := 0
|
|
|
|
for {
|
|
|
|
err := <-errs
|
|
|
|
if err == nil {
|
|
|
|
fin++
|
|
|
|
if fin == 2 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2019-02-23 06:29:19 +00:00
|
|
|
}
|