-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogress.js.html
More file actions
201 lines (153 loc) · 6.35 KB
/
progress.js.html
File metadata and controls
201 lines (153 loc) · 6.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>User Management API Documentation progress.js</title>
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script src="./build/entry.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,400,700|Inconsolata,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link type="text/css" rel="stylesheet" href="https://jmblog.github.io/color-themes-for-google-code-prettify/themes/tomorrow-night.min.css">
<link type="text/css" rel="stylesheet" href="styles/app.min.css">
<link type="text/css" rel="stylesheet" href="styles/iframe.css">
<link type="text/css" rel="stylesheet" href="style.css">
<script async defer src="https://buttons.github.io/buttons.js"></script>
</head>
<body class="layout small-header">
<div id="stickyNavbarOverlay"></div>
<div class="top-nav">
<div class="inner">
<a id="hamburger" role="button" class="navbar-burger" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
<div class="logo">
<a href="index.html">
<h1 class="navbar-item">User Management API Documentation</h1>
</a>
</div>
<div class="menu">
<div class="navigation">
<a
href="index.html"
class="link"
>
Documentation
</a>
</div>
</div>
</div>
</div>
<div id="main">
<div
class="sidebar "
id="sidebarNav"
>
<nav>
<h2><a href="index.html">Documentation</a></h2><div class="category"><h3>Modules</h3><ul><li><a href="module-DonorListAPI.html">DonorListAPI</a></li></ul><h3>Classes</h3><ul><li><a href="ProgressService.html">ProgressService</a></li></ul><h3>Global</h3><ul><li><a href="global.html#GET/api/progress/:id">GET /api/progress/:id</a></li></ul></div><div class="category"><h2>Routes</h2><h3>Modules</h3><ul><li><a href="module-DonorAPI.html">DonorAPI</a></li><li><a href="module-EventAPI.html">EventAPI</a></li><li><a href="module-UserAPI.html">UserAPI</a></li></ul></div>
</nav>
</div>
<div class="core" id="main-content-wrapper">
<div class="content">
<header class="page-title">
<p>Source</p>
<h1>progress.js</h1>
</header>
<section>
<article>
<pre class="prettyprint source linenums"><code>// server/routes/progress.js
import express from 'express';
import { protect } from '../middleware/auth.js';
import progressService from './progressService.js';
const router = express.Router();
/**
* Get operation progress by ID
* @name GET /api/progress/:id
*/
router.get('/:id', protect, async (req, res) => {
const operationId = req.params.id;
try {
const operation = progressService.operations.get(operationId);
if (!operation) {
return res.status(404).json({
success: false,
message: 'Operation not found'
});
}
// Check if user has permission to access this operation
if (operation.userId !== req.user?.id) {
return res.status(403).json({
success: false,
message: 'Not authorized to access this operation'
});
}
// Return the operation status
res.json({
success: true,
operationId,
progress: operation.progress,
status: operation.status,
message: operation.message,
result: operation.result || null,
startTime: operation.startTime,
lastUpdated: operation.lastUpdated
});
} catch (error) {
console.error('Error fetching operation progress:', error);
res.status(500).json({
success: false,
message: 'Failed to fetch operation progress'
});
}
});
/**
* Get all operations for the current user
* @route GET /api/progress/user/operations
* @access Private
*/
router.get('/user/operations', protect, (req, res) => {
const operations = progressService.getUserOperations(req.user?.id);
res.json(operations);
});
/**
* Cancel an operation
* @route DELETE /api/progress/:operationId
* @access Private
*/
router.delete('/:operationId', protect, (req, res) => {
const { operationId } = req.params;
const result = progressService.cancelOperation(operationId, req.user?.id);
if (!result) {
return res.status(404).json({ message: 'Operation not found or unauthorized to cancel' });
}
res.json({ message: 'Operation cancelled successfully', operationId });
});
export default router;</code></pre>
</article>
</section>
</div>
<footer class="footer">
<div class="content has-text-centered">
<p>Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.4</a></p>
<p class="sidebar-created-by">
<a href="https://github.com/SoftwareBrothers/better-docs" target="_blank">BetterDocs theme</a> provided with <i class="fas fa-heart"></i> by
<a href="http://softwarebrothers.co" target="_blank">SoftwareBrothers - JavaScript Development Agency</a>
</p>
</div>
</footer>
</div>
<div id="side-nav" class="side-nav">
</div>
</div>
<script src="scripts/app.min.js"></script>
<script>PR.prettyPrint();</script>
<script src="scripts/linenumber.js"> </script>
</body>
</html>