2019-12-23 20:30:32 +01:00
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
|
|
|
|
wf_db "github.com/writeas/writefreely/db"
|
|
|
|
)
|
|
|
|
|
|
|
|
func oauth(db *datastore) error {
|
|
|
|
dialect := wf_db.DialectMySQL
|
|
|
|
if db.driverName == driverSQLite {
|
|
|
|
dialect = wf_db.DialectSQLite
|
|
|
|
}
|
|
|
|
return wf_db.RunTransactionWithOptions(context.Background(), db.DB, &sql.TxOptions{}, func(ctx context.Context, tx *sql.Tx) error {
|
|
|
|
createTableUsersOauth, err := dialect.
|
2019-12-31 17:28:05 +01:00
|
|
|
Table("oauth_users").
|
2019-12-23 20:30:32 +01:00
|
|
|
SetIfNotExists(true).
|
|
|
|
Column(dialect.Column("user_id", wf_db.ColumnTypeInteger, wf_db.UnsetSize)).
|
|
|
|
Column(dialect.Column("remote_user_id", wf_db.ColumnTypeInteger, wf_db.UnsetSize)).
|
|
|
|
UniqueConstraint("user_id").
|
|
|
|
UniqueConstraint("remote_user_id").
|
|
|
|
ToSQL()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
createTableOauthClientState, err := dialect.
|
2019-12-31 17:28:05 +01:00
|
|
|
Table("oauth_client_states").
|
2019-12-23 20:30:32 +01:00
|
|
|
SetIfNotExists(true).
|
|
|
|
Column(dialect.Column("state", wf_db.ColumnTypeVarChar, wf_db.OptionalInt{Set: true, Value: 255})).
|
|
|
|
Column(dialect.Column("used", wf_db.ColumnTypeBool, wf_db.UnsetSize)).
|
|
|
|
Column(dialect.Column("created_at", wf_db.ColumnTypeDateTime, wf_db.UnsetSize).SetDefault("NOW()")).
|
|
|
|
UniqueConstraint("state").
|
|
|
|
ToSQL()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, table := range []string{createTableUsersOauth, createTableOauthClientState} {
|
|
|
|
if _, err := tx.ExecContext(ctx, table); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|