diff --git a/apis/src/models/admin.model.ts b/apis/src/models/admin.model.ts index 16929c1..6e82a4a 100644 --- a/apis/src/models/admin.model.ts +++ b/apis/src/models/admin.model.ts @@ -12,10 +12,9 @@ export default function (app: Application): Model { const mongooseClient: Mongoose = app.get('mongooseClient'); const { Schema } = mongooseClient; const schema = new Schema({ - role: { - type: Number, - enum: RolesEnumList, - default: RolesEnum.ADMIN, + user: { + type: mongoose.Schema.Types.ObjectId, + ref: 'users' }, player: { type: mongoose.Schema.Types.ObjectId, diff --git a/apis/src/models/platform-super-admin.model.ts b/apis/src/models/platform-super-admin.model.ts index dd868b3..5fccd50 100644 --- a/apis/src/models/platform-super-admin.model.ts +++ b/apis/src/models/platform-super-admin.model.ts @@ -3,14 +3,26 @@ // See http://mongoosejs.com/docs/models.html // for more of what you can do here. import { Application } from '../declarations'; -import { Model, Mongoose } from 'mongoose'; +import mongoose, { Model, Mongoose } from 'mongoose'; export default function (app: Application): Model { const modelName = 'platformSuperAdmin'; const mongooseClient: Mongoose = app.get('mongooseClient'); const { Schema } = mongooseClient; const schema = new Schema({ - text: { type: String, required: true } + user: { + type: mongoose.Schema.Types.ObjectId, + ref: 'users', + required: true, + }, + contactNo: { + type: String + }, + socials: [ + { + type: Object + } + ], }, { timestamps: true }); diff --git a/apis/src/models/player.model.ts b/apis/src/models/player.model.ts index c1ced86..b916d56 100644 --- a/apis/src/models/player.model.ts +++ b/apis/src/models/player.model.ts @@ -14,27 +14,9 @@ export default function (app: Application): Model { const mongooseClient: Mongoose = app.get('mongooseClient'); const { ObjectId } = mongoose.Schema.Types; const schema = new mongooseClient.Schema({ - firstName: { - type: String, - required: true - }, - lastName: { - type: String, - required: true - }, - email: { - type: String, - required: true, - index: true, - }, - password: { - type: String, - required: true - }, - role: { - type: Number, - enum: RolesEnumList, - default:RolesEnum.PLAYER + user: { + type: mongoose.Schema.Types.ObjectId, + ref: 'users', }, sport: { type: String, @@ -42,21 +24,6 @@ export default function (app: Application): Model { enum: SportEnumList, index: true, }, - branch: { - type: String, - required: true, - enum: BranchEnumList, - index: true, - }, - year: { - type: Number, - required: true, - enum: [1, 2, 3, 4], - index: true, - }, - contactNo: { - type: String - }, socials: [ { type: Object diff --git a/apis/src/models/squad-player.model.ts b/apis/src/models/squad-player.model.ts index 076067b..d751648 100644 --- a/apis/src/models/squad-player.model.ts +++ b/apis/src/models/squad-player.model.ts @@ -10,6 +10,11 @@ export default function (app: Application): Model { const mongooseClient: Mongoose = app.get('mongooseClient'); const { Schema } = mongooseClient; const schema = new Schema({ + user: { + type: mongoose.Schema.Types.ObjectId, + ref: 'users', + required: true, + }, player: { type: mongoose.Schema.Types.ObjectId, ref: 'player', diff --git a/apis/src/models/team-player.model.ts b/apis/src/models/team-player.model.ts index 19029cd..23d263b 100644 --- a/apis/src/models/team-player.model.ts +++ b/apis/src/models/team-player.model.ts @@ -10,18 +10,28 @@ export default function (app: Application): Model { const mongooseClient: Mongoose = app.get('mongooseClient'); const { Schema } = mongooseClient; const schema = new Schema({ - team:{ - type:mongoose.Schema.Types.ObjectId, - ref:'team', - required:true, - }, - squad:{ - type:mongoose.Schema.Types.ObjectId, - ref:'squad', - required:true, - }, - position:{ - type:String, + user: { + type: mongoose.Schema.Types.ObjectId, + ref: 'users', + required: true, + }, + player: { + type: mongoose.Schema.Types.ObjectId, + ref: 'player', + required: true, + }, + team: { + type: mongoose.Schema.Types.ObjectId, + ref: 'team', + required: true, + }, + squad: { + type: mongoose.Schema.Types.ObjectId, + ref: 'squad', + required: true, + }, + position: { + type: String, }, createdBy: { type: mongoose.Schema.Types.ObjectId, diff --git a/apis/src/models/users.model.ts b/apis/src/models/users.model.ts index 5a87237..f5b844b 100644 --- a/apis/src/models/users.model.ts +++ b/apis/src/models/users.model.ts @@ -2,6 +2,8 @@ // // See http://mongoosejs.com/docs/models.html // for more of what you can do here. +import { BranchEnumList } from '../constants/branch.enum'; +import RolesEnum, { RolesEnumList } from '../constants/roles.enum'; import { Application } from '../declarations'; import { Model, Mongoose } from 'mongoose'; @@ -9,11 +11,42 @@ export default function (app: Application): Model { const modelName = 'users'; const mongooseClient: Mongoose = app.get('mongooseClient'); const schema = new mongooseClient.Schema({ - - email: { type: String, unique: true, lowercase: true }, - password: { type: String }, - - + firstName: { + type: String, + required: true + }, + lastName: { + type: String, + required: true + }, + email: { + type: String, + required: true, + index: true, + }, + password: { + type: String, + required: true + }, + role: { + type: Number, + enum: RolesEnumList, + }, + branch: { + type: String, + required: true, + enum: BranchEnumList, + index: true, + }, + year: { + type: Number, + required: true, + enum: [1, 2, 3, 4], + index: true, + }, + contactNo: { + type: String + }, }, { timestamps: true }); diff --git a/apis/src/services/users/users.class.ts b/apis/src/services/users/users.class.ts index 9f5039f..2adeea4 100644 --- a/apis/src/services/users/users.class.ts +++ b/apis/src/services/users/users.class.ts @@ -1,9 +1,35 @@ import { Service, MongooseServiceOptions } from 'feathers-mongoose'; import { Application } from '../../declarations'; +import { Params } from '@feathersjs/feathers'; +import generateOTP from '../../utils/generateOTP'; +import { BadRequest } from '@feathersjs/errors'; +import app from '../../app'; +import RolesEnum from '../../constants/roles.enum'; +import * as jwt from "jsonwebtoken" +import sendMail from '../../utils/sendMail'; export class Users extends Service { //eslint-disable-next-line @typescript-eslint/no-unused-vars constructor(options: Partial, app: Application) { super(options); } + + async create(data: any, params: Params) { + try { + if (!data.email || !data.password) throw new BadRequest('Email and Password is required'); + const otp = generateOTP(); + const secret = app.settings.authentication.secret; + data.role = RolesEnum.PLAYER; + const token = jwt.sign({ + player: data, + otp + }, secret); + + await sendMail(data.email, otp); + + return { token }; + } catch (error: any) { + throw new Error(error.message); + } + } } diff --git a/apis/src/services/users/verification/verification.class.ts b/apis/src/services/users/verification/verification.class.ts index 5415763..925fe24 100644 --- a/apis/src/services/users/verification/verification.class.ts +++ b/apis/src/services/users/verification/verification.class.ts @@ -1,29 +1,30 @@ -import { Id, NullableId, Paginated, Params, ServiceMethods } from '@feathersjs/feathers'; +import { Id, NullableId, Paginated, Params, ServiceAddons, ServiceMethods } from '@feathersjs/feathers'; import { Application } from '../../../declarations'; import { extractTokenFromHeader } from '../../../utils/extractTokenFromHeader'; import { BadRequest } from '@feathersjs/errors'; import { Service } from 'feathers-mongoose'; +import { Users } from '../users.class'; -interface Data {} +interface Data { } -interface ServiceOptions {} +interface ServiceOptions { } export class Verification implements ServiceMethods { app: Application; options: ServiceOptions; - constructor (options: ServiceOptions = {}, app: Application) { + constructor(options: ServiceOptions = {}, app: Application) { this.options = options; this.app = app; } // eslint-disable-next-line @typescript-eslint/no-unused-vars - async find (params?: Params): Promise> { + async find(params?: Params): Promise> { return []; } // eslint-disable-next-line @typescript-eslint/no-unused-vars - async get (id: Id, params?: Params): Promise { + async get(id: Id, params?: Params): Promise { return { id, text: `A new message with ID: ${id}!` }; @@ -48,11 +49,10 @@ export class Verification implements ServiceMethods { // @ts-ignore if (otp === data.otp) { - const PlayerService: Service = this.app.service('player'); + const UserService: Users & ServiceAddons = this.app.service('users'); console.log(player); - const p = new PlayerService.Model(player); - const _p = await p.save(); - return _p; + const user = await UserService._create(player); + return user } else throw new Error('OTP is invalid'); } catch (error: any) { @@ -62,17 +62,17 @@ export class Verification implements ServiceMethods { } // eslint-disable-next-line @typescript-eslint/no-unused-vars - async update (id: NullableId, data: Data, params?: Params): Promise { + async update(id: NullableId, data: Data, params?: Params): Promise { return data; } // eslint-disable-next-line @typescript-eslint/no-unused-vars - async patch (id: NullableId, data: Data, params?: Params): Promise { + async patch(id: NullableId, data: Data, params?: Params): Promise { return data; } // eslint-disable-next-line @typescript-eslint/no-unused-vars - async remove (id: NullableId, params?: Params): Promise { + async remove(id: NullableId, params?: Params): Promise { return { id }; } } diff --git a/go.sum b/go.sum index 6bfd20a..e7a0255 100644 --- a/go.sum +++ b/go.sum @@ -1,118 +1,43 @@ -github.com/IBM/sarama v1.43.0 h1:YFFDn8mMI2QL0wOrG0J2sFoVIAFl7hS9JQi2YZsXtJc= -github.com/IBM/sarama v1.43.0/go.mod h1:zlE6HEbC/SMQ9mhEYaF7nNLYOUyrs0obySKCckWP9BM= -github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= -github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/eapache/go-resiliency v1.6.0 h1:CqGDTLtpwuWKn6Nj3uNUdflaq+/kIPsg0gfNzHton30= -github.com/eapache/go-resiliency v1.6.0/go.mod h1:5yPzW0MIvSe0JDsv0v+DvcjEv2FyD6iZYSs1ZI+iQho= -github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 h1:Oy0F4ALJ04o5Qqpdz8XLIpNA3WM/iSIXqxtqo7UGVws= -github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3/go.mod h1:YvSRo5mw33fLEx1+DlK6L2VV43tJt5Eyel9n9XBcR+0= -github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= -github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw= -github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= -github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY= -github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= -github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= -github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= -github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY= -github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ= -github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4= -github.com/gorilla/sessions v1.2.1/go.mod h1:dk2InVEVJ0sfLlnXv9EAgkf6ecYs/i80K/zI+bUmuGM= -github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= -github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= -github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= -github.com/hashicorp/go-uuid v1.0.2/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-uuid v1.0.3 h1:2gKiV6YVmrJ1i2CKKa9obLvRieoRGviZFL26PcT/Co8= -github.com/hashicorp/go-uuid v1.0.3/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/jcmturner/aescts/v2 v2.0.0 h1:9YKLH6ey7H4eDBXW8khjYslgyqG2xZikXP0EQFKrle8= -github.com/jcmturner/aescts/v2 v2.0.0/go.mod h1:AiaICIRyfYg35RUkr8yESTqvSy7csK90qZ5xfvvsoNs= -github.com/jcmturner/dnsutils/v2 v2.0.0 h1:lltnkeZGL0wILNvrNiVCR6Ro5PGU/SeBvVO/8c/iPbo= -github.com/jcmturner/dnsutils/v2 v2.0.0/go.mod h1:b0TnjGOvI/n42bZa+hmXL+kFJZsFT7G4t3HTlQ184QM= -github.com/jcmturner/gofork v1.7.6 h1:QH0l3hzAU1tfT3rZCnW5zXl+orbkNMMRGJfdJjHVETg= -github.com/jcmturner/gofork v1.7.6/go.mod h1:1622LH6i/EZqLloHfE7IeZ0uEJwMSUyQ/nDd82IeqRo= -github.com/jcmturner/goidentity/v6 v6.0.1 h1:VKnZd2oEIMorCTsFBnJWbExfNN7yZr3EhJAxwOkZg6o= -github.com/jcmturner/goidentity/v6 v6.0.1/go.mod h1:X1YW3bgtvwAXju7V3LCIMpY0Gbxyjn/mY9zx4tFonSg= -github.com/jcmturner/gokrb5/v8 v8.4.4 h1:x1Sv4HaTpepFkXbt2IkL29DXRf8sOfZXo8eRKh687T8= -github.com/jcmturner/gokrb5/v8 v8.4.4/go.mod h1:1btQEpgT6k+unzCwX1KdWMEwPPkkgBtP+F6aCACiMrs= -github.com/jcmturner/rpc/v2 v2.0.3 h1:7FXXj8Ti1IaVFpSAziCZWNzbNuZmnvw/i6CqLNdWfZY= -github.com/jcmturner/rpc/v2 v2.0.3/go.mod h1:VUJYCIDm3PVOEHw8sgt091/20OJjskO/YJki3ELg/Hc= -github.com/jordan-wright/email v4.0.1-0.20210109023952-943e75fe5223+incompatible h1:jdpOPRN1zP63Td1hDQbZW73xKmzDvZHzVdNYxhnTMDA= -github.com/jordan-wright/email v4.0.1-0.20210109023952-943e75fe5223+incompatible/go.mod h1:1c7szIrayyPPB/987hsnvNzLushdWf4o/79s3P08L8A= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= -github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe h1:iruDEfMl2E6fbMZ9s0scYfZQ84/6SPL6zC8ACM2oIL0= -github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= -github.com/pierrec/lz4/v4 v4.1.21 h1:yOVMLb6qSIDP67pl/5F7RepeKYu/VmTyEXvuMI5d9mQ= -github.com/pierrec/lz4/v4 v4.1.21/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= -github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= -github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5XpJzTSTfLsJV/mx9Q9g7kxmchpfZyxgzM= -github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= -github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= -github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= -github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= -github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI= -github.com/xdg-go/scram v1.1.2 h1:FHX5I5B4i4hKRVRBCFRxq1iQRej7WO3hhBuJf+UUySY= -github.com/xdg-go/scram v1.1.2/go.mod h1:RT/sEzTbU5y00aCK8UOx6R7YryM0iF1N2MOmC3kKLN4= -github.com/xdg-go/stringprep v1.0.4 h1:XLI/Ng3O1Atzq0oBs3TWm+5ZVgkq2aqdlvP9JtoZ6c8= -github.com/xdg-go/stringprep v1.0.4/go.mod h1:mPGuuIYwz7CmR2bT9j4GbQqutWS1zV24gijq1dTyGkM= -github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d h1:splanxYIlg+5LfHAM6xpdFEAYOk8iySO56hMFq6uLyA= -github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= -github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -go.mongodb.org/mongo-driver v1.14.0 h1:P98w8egYRjYe3XDjxhYJagTokP/H6HzlsnojRgZRd80= -go.mongodb.org/mongo-driver v1.14.0/go.mod h1:Vzb0Mk/pa7e6cWw85R4F/endUC3u0U9jGcNU603k65c= -golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= -golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= -golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= -golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.22.0 h1:9sGLhx7iRIHEiX0oAJ3MRZMUCElJgy7Br1nO+AMN3Tc= -golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= -golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ= -golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= -golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= -golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= -golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= -golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= -golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= -gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +module github.com/p-society/gc-server + +go 1.21.7 + +require ( + github.com/gorilla/mux v1.8.1 + github.com/jordan-wright/email v4.0.1-0.20210109023952-943e75fe5223+incompatible +) + +require ( + github.com/IBM/sarama v1.43.0 + github.com/golang-jwt/jwt v3.2.2+incompatible + go.mongodb.org/mongo-driver v1.14.0 + golang.org/x/crypto v0.21.0 +) + +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/eapache/go-resiliency v1.6.0 // indirect + github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect + github.com/eapache/queue v1.1.0 // indirect + github.com/golang/snappy v0.0.4 // indirect + github.com/google/go-cmp v0.6.0 // indirect + github.com/hashicorp/errwrap v1.1.0 // indirect + github.com/hashicorp/go-multierror v1.1.1 // indirect + github.com/hashicorp/go-uuid v1.0.3 // indirect + github.com/jcmturner/aescts/v2 v2.0.0 // indirect + github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect + github.com/jcmturner/gofork v1.7.6 // indirect + github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect + github.com/jcmturner/rpc/v2 v2.0.3 // indirect + github.com/klauspost/compress v1.17.7 // indirect + github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect + github.com/pierrec/lz4/v4 v4.1.21 // indirect + github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect + github.com/xdg-go/pbkdf2 v1.0.0 // indirect + github.com/xdg-go/scram v1.1.2 // indirect + github.com/xdg-go/stringprep v1.0.4 // indirect + github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect + golang.org/x/net v0.22.0 // indirect + golang.org/x/sync v0.6.0 // indirect + golang.org/x/text v0.14.0 // indirect +)