auto(agent): Add GET /profile endpoint and POST /phone test

This commit is contained in:
OpenClaw 2026-03-06 19:29:31 +00:00
parent 254f71e98f
commit 44e52191d1
2 changed files with 32 additions and 0 deletions

View file

@ -10,4 +10,14 @@ test('GET /profile should return user profile', async () => {
assert.strictEqual(response.statusCode, 200);
assert.strictEqual(response.headers['content-type'], 'application/json; charset=utf-8');
});
test('POST /phone should update phone number', async () => {
const response = await app.inject({
method: 'POST',
url: '/phone',
payload: { phone: '1234567890' }
});
assert.strictEqual(response.statusCode, 200);
});

View file

@ -21,4 +21,26 @@ router.post('/phone', requireAuth, async (req, res) => {
}
});
// GET /profile endpoint
router.get('/', requireAuth, async (req, res) => {
try {
const [rows] = await pool.query('SELECT id, name, email, phone_encrypted FROM users WHERE id = ?', [req.user.userId]);
if (rows.length === 0) return res.status(404).json({ error: 'User not found' });
const user = rows[0];
// Decrypt phone number for response
const decryptedPhone = user.phone_encrypted ? decryptText(user.phone_encrypted) : null;
res.status(200).json({
id: user.id,
name: user.name,
email: user.email,
phone: decryptedPhone
});
} catch (error) {
console.error('Error fetching profile:', error);
res.status(500).json({ error: 'Internal server error' });
}
});
export default router;