* Notifications Settings page working * Update import * Linked notification settings to notification rules * Add more subscribe types * It's alive... It's alive, it's moving, it's alive, it's alive, it's alive, it's alive, IT'S ALIVE' * UI Tweaks * Clean up comments * Direct & highlight sections for notif mgmt from emails * Comment cleanup * Comment cleanup, lint * More comment cleanup * Update email templates to predict * Move private user out of getDestinationsForUser * Fix resolution messages * Remove magic * Extract switch to switch-setting * Change tab in url * Show 0 as invested or payout * All emails use unsubscribeUrl
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import * as admin from 'firebase-admin'
|
|
|
|
import { initAdmin } from './script-init'
|
|
initAdmin()
|
|
|
|
import { getDefaultNotificationSettings, PrivateUser, User } from 'common/user'
|
|
import { STARTING_BALANCE } from 'common/economy'
|
|
|
|
const firestore = admin.firestore()
|
|
|
|
async function main() {
|
|
const snap = await firestore.collection('users').get()
|
|
const users = snap.docs.map((d) => d.data() as User)
|
|
|
|
for (const user of users) {
|
|
const fbUser = await admin.auth().getUser(user.id)
|
|
const email = fbUser.email
|
|
const { username } = user
|
|
|
|
const privateUser: PrivateUser = {
|
|
id: user.id,
|
|
email,
|
|
username,
|
|
notificationSubscriptionTypes: getDefaultNotificationSettings(user.id),
|
|
}
|
|
|
|
if (user.totalDeposits === undefined) {
|
|
await firestore
|
|
.collection('users')
|
|
.doc(user.id)
|
|
.update({ totalDeposits: STARTING_BALANCE })
|
|
|
|
console.log('set starting balance for:', user.username)
|
|
}
|
|
|
|
try {
|
|
await firestore
|
|
.collection('private-users')
|
|
.doc(user.id)
|
|
.create(privateUser)
|
|
|
|
console.log('created private user for:', user.username)
|
|
} catch (_) {
|
|
// private user already created
|
|
}
|
|
}
|
|
}
|
|
|
|
if (require.main === module) main().then(() => process.exit())
|