Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
C
console
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
console
Commits
25dc957a
Commit
25dc957a
authored
Jun 02, 2017
by
nano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Queue
parent
a141a695
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
86 additions
and
23 deletions
+86
-23
package/utils.ts
package/utils.ts
+1
-0
src/routes/upload.ts
src/routes/upload.ts
+36
-20
src/utils.ts
src/utils.ts
+49
-3
No files found.
package/utils.ts
View file @
25dc957a
...
@@ -114,3 +114,4 @@ export function caculateSHA256(file: string): Promise<string> {
...
@@ -114,3 +114,4 @@ export function caculateSHA256(file: string): Promise<string> {
input
.
pipe
(
hash
);
input
.
pipe
(
hash
);
});
});
}
}
src/routes/upload.ts
View file @
25dc957a
import
{
Context
}
from
'
koa
'
;
import
{
Context
}
from
'
koa
'
;
import
{
OSS
}
from
'
aliyun-sdk
'
;
import
{
OSS
}
from
'
aliyun-sdk
'
;
import
*
as
busboy
from
'
async-busboy
'
;
import
*
as
busboy
from
'
async-busboy
'
;
import
*
as
mime
from
'
mime
'
;
import
*
as
mime
from
'
mime
'
;
import
*
as
uuid
from
'
uuid
'
;
import
*
as
uuid
from
'
uuid
'
;
...
@@ -7,12 +7,17 @@ import * as Client from 'aliyun-oss-upload-stream';
...
@@ -7,12 +7,17 @@ import * as Client from 'aliyun-oss-upload-stream';
import
*
as
fs
from
'
fs-extra-promise
'
;
import
*
as
fs
from
'
fs-extra-promise
'
;
import
*
as
path
from
'
path
'
;
import
*
as
path
from
'
path
'
;
import
*
as
Aria2
from
'
aria2
'
;
import
*
as
Aria2
from
'
aria2
'
;
import
{
bundle
}
from
'
../../package/main
'
;
import
{
bundle
}
from
'
../../package/main
'
;
import
{
mongodb
}
from
'
../models/Iridium
'
;
import
{
mongodb
}
from
'
../models/Iridium
'
;
import
{
toObjectID
}
from
'
iridium
'
;
import
{
toObjectID
}
from
'
iridium
'
;
import
config
from
'
../../config
'
;
import
config
from
'
../../config
'
;
import
{
UploadOSS
}
from
'
../utils
'
;
import
{
UploadOSS
}
from
'
../utils
'
;
import
Router
=
require
(
'
koa-router
'
);
import
Router
=
require
(
'
koa-router
'
);
import
{
Queue
}
from
'
../utils
'
;
const
queue
=
new
Queue
({
concurrency
:
1
});
const
checkFilePath
=
async
(
file
)
=>
{
const
checkFilePath
=
async
(
file
)
=>
{
if
([
'
.gz
'
,
'
.rar
'
,
'
.zip
'
,
'
.7z
'
].
indexOf
(
path
.
extname
(
file
.
path
))
===
-
1
)
{
if
([
'
.gz
'
,
'
.rar
'
,
'
.zip
'
,
'
.7z
'
].
indexOf
(
path
.
extname
(
file
.
path
))
===
-
1
)
{
...
@@ -48,7 +53,7 @@ const router = new Router();
...
@@ -48,7 +53,7 @@ const router = new Router();
const
UploadImage
=
async
(
ctx
:
Context
)
=>
{
const
UploadImage
=
async
(
ctx
:
Context
)
=>
{
try
{
try
{
const
{
files
}
=
await
busboy
(
ctx
.
req
);
const
{
files
}
=
await
busboy
(
ctx
.
req
);
ctx
.
body
=
await
Promise
.
all
(
files
.
map
(
async
file
=>
{
ctx
.
body
=
await
Promise
.
all
(
files
.
map
(
async
file
=>
{
await
checkImage
(
file
);
await
checkImage
(
file
);
...
@@ -75,7 +80,7 @@ const UploadImage = async (ctx: Context) => {
...
@@ -75,7 +80,7 @@ const UploadImage = async (ctx: Context) => {
export
const
UploadPackage
=
async
(
ctx
:
Context
)
=>
{
export
const
UploadPackage
=
async
(
ctx
:
Context
)
=>
{
try
{
try
{
const
{
files
}
=
await
busboy
(
ctx
.
req
);
const
{
files
}
=
await
busboy
(
ctx
.
req
);
ctx
.
body
=
await
Promise
.
all
(
files
.
map
(
async
file
=>
{
ctx
.
body
=
await
Promise
.
all
(
files
.
map
(
async
file
=>
{
await
checkPackage
(
file
);
await
checkPackage
(
file
);
...
@@ -88,7 +93,7 @@ export const UploadPackage = async (ctx: Context) => {
...
@@ -88,7 +93,7 @@ export const UploadPackage = async (ctx: Context) => {
const
archive
=
fs
.
createWriteStream
(
path
.
join
(
archive_path
,
filename
));
const
archive
=
fs
.
createWriteStream
(
path
.
join
(
archive_path
,
filename
));
let
pack
=
await
mongodb
.
Packages
.
findOne
({
_id
:
toObjectID
(
ctx
.
params
.
id
)
});
let
pack
=
await
mongodb
.
Packages
.
findOne
({
_id
:
toObjectID
(
ctx
.
params
.
id
)
});
if
(
!
pack
)
{
if
(
!
pack
)
{
return
ctx
.
throw
(
400
,
'
pack not exists
'
);
return
ctx
.
throw
(
400
,
'
pack not exists
'
);
}
}
...
@@ -104,8 +109,13 @@ export const UploadPackage = async (ctx: Context) => {
...
@@ -104,8 +109,13 @@ export const UploadPackage = async (ctx: Context) => {
await
pack
!
.
save
();
await
pack
!
.
save
();
resolve
(
pack
!
);
resolve
(
pack
!
);
// 上传完, 打包
// 上传完, 打包
const
bundled
=
await
bundle
(
filename
);
let
bundled
;
queue
.
run
(
async
(
ctx
,
next
)
=>
{
bundled
=
await
bundle
(
filename
);
this
.
next
();
});
// 打包完,上传阿里云
// 打包完,上传阿里云
await
UploadOSS
(
bundled
.
distPath
);
await
UploadOSS
(
bundled
.
distPath
);
...
@@ -113,7 +123,7 @@ export const UploadPackage = async (ctx: Context) => {
...
@@ -113,7 +123,7 @@ export const UploadPackage = async (ctx: Context) => {
Object
.
assign
(
pack
,
bundled
);
Object
.
assign
(
pack
,
bundled
);
pack
!
.
status
=
'
uploaded
'
;
pack
!
.
status
=
'
uploaded
'
;
await
mongodb
.
Packages
.
update
({
id
:
pack
!
.
id
},
{
$set
:
{
status
:
'
deprecated
'
}},
{
multi
:
true
});
await
mongodb
.
Packages
.
update
({
id
:
pack
!
.
id
},
{
$set
:
{
status
:
'
deprecated
'
}
},
{
multi
:
true
});
await
pack
!
.
save
();
await
pack
!
.
save
();
// 上传完,干掉本地目录
// 上传完,干掉本地目录
...
@@ -151,13 +161,13 @@ const uploadPackageUrl = async (ctx: Context) => {
...
@@ -151,13 +161,13 @@ const uploadPackageUrl = async (ctx: Context) => {
const
downloader
=
new
Aria2
;
const
downloader
=
new
Aria2
;
await
downloader
.
open
();
await
downloader
.
open
();
let
pack
=
await
mongodb
.
Packages
.
findOne
({
_id
:
toObjectID
(
ctx
.
request
.
body
.
_id
)
});
let
pack
=
await
mongodb
.
Packages
.
findOne
({
_id
:
toObjectID
(
ctx
.
request
.
body
.
_id
)
});
if
(
!
pack
)
{
if
(
!
pack
)
{
return
ctx
.
throw
(
400
,
'
pack not exists
'
);
return
ctx
.
throw
(
400
,
'
pack not exists
'
);
}
}
downloader
.
onDownloadStart
=
async
({
gid
})
=>
{
downloader
.
onDownloadStart
=
async
({
gid
})
=>
{
const
{
files
}
=
await
downloader
.
send
(
'
tellStatus
'
,
gid
);
const
{
files
}
=
await
downloader
.
send
(
'
tellStatus
'
,
gid
);
const
[
file
]
=
files
;
const
[
file
]
=
files
;
const
[
url
]
=
file
.
uris
;
const
[
url
]
=
file
.
uris
;
if
(
ctx
.
request
.
body
.
url
==
url
.
uri
)
{
if
(
ctx
.
request
.
body
.
url
==
url
.
uri
)
{
...
@@ -166,16 +176,22 @@ const uploadPackageUrl = async (ctx: Context) => {
...
@@ -166,16 +176,22 @@ const uploadPackageUrl = async (ctx: Context) => {
}
}
};
};
downloader
.
onDownloadComplete
=
async
({
gid
})
=>
{
downloader
.
onDownloadComplete
=
async
({
gid
})
=>
{
const
{
files
}
=
await
downloader
.
send
(
'
tellStatus
'
,
gid
);
const
{
files
}
=
await
downloader
.
send
(
'
tellStatus
'
,
gid
);
const
[
file
]
=
files
;
const
[
file
]
=
files
;
const
[
url
]
=
file
.
uris
;
const
[
url
]
=
file
.
uris
;
if
(
ctx
.
request
.
body
.
url
==
url
.
uri
)
{
if
(
ctx
.
request
.
body
.
url
==
url
.
uri
)
{
try
{
try
{
await
checkFilePath
(
file
);
await
checkFilePath
(
file
);
// 打包
// 打包
const
bundled
=
await
bundle
(
path
.
basename
(
file
.
path
));
let
bundled
;
queue
.
run
(
async
(
ctx
,
next
)
=>
{
bundled
=
await
bundle
(
path
.
basename
(
file
.
path
));
this
.
next
();
});
// 打包完, 上传阿里云
// 打包完, 上传阿里云
await
UploadOSS
(
bundled
.
distPath
);
await
UploadOSS
(
bundled
.
distPath
);
...
@@ -183,7 +199,7 @@ const uploadPackageUrl = async (ctx: Context) => {
...
@@ -183,7 +199,7 @@ const uploadPackageUrl = async (ctx: Context) => {
Object
.
assign
(
pack
,
bundled
);
Object
.
assign
(
pack
,
bundled
);
pack
!
.
status
=
'
uploaded
'
;
pack
!
.
status
=
'
uploaded
'
;
await
mongodb
.
Packages
.
update
({
id
:
pack
!
.
id
},
{
$set
:
{
status
:
'
deprecated
'
}},
{
multi
:
true
});
await
mongodb
.
Packages
.
update
({
id
:
pack
!
.
id
},
{
$set
:
{
status
:
'
deprecated
'
}
},
{
multi
:
true
});
await
pack
!
.
save
();
await
pack
!
.
save
();
// 上传完,干掉本地目录
// 上传完,干掉本地目录
...
@@ -198,7 +214,7 @@ const uploadPackageUrl = async (ctx: Context) => {
...
@@ -198,7 +214,7 @@ const uploadPackageUrl = async (ctx: Context) => {
};
};
downloader
.
onDownloadError
=
async
(
err
)
=>
{
downloader
.
onDownloadError
=
async
(
err
)
=>
{
const
{
files
}
=
await
downloader
.
send
(
'
tellStatus
'
,
err
.
gid
);
const
{
files
}
=
await
downloader
.
send
(
'
tellStatus
'
,
err
.
gid
);
const
[
file
]
=
files
;
const
[
file
]
=
files
;
const
[
url
]
=
file
.
uris
;
const
[
url
]
=
file
.
uris
;
...
@@ -220,7 +236,7 @@ const uploadPackageUrl = async (ctx: Context) => {
...
@@ -220,7 +236,7 @@ const uploadPackageUrl = async (ctx: Context) => {
}
}
};
};
downloader
.
send
(
'
addUri
'
,
[
ctx
.
request
.
body
.
url
],
{
dir
:
config
.
upload_path
});
downloader
.
send
(
'
addUri
'
,
[
ctx
.
request
.
body
.
url
],
{
dir
:
config
.
upload_path
});
});
});
};
};
...
...
src/utils.ts
View file @
25dc957a
import
{
URL
}
from
'
url
'
;
import
{
URL
}
from
'
url
'
;
import
*
as
child_process
from
'
child_process
'
;
import
*
as
child_process
from
'
child_process
'
;
export
const
dot
=
'
__<DOT>__
'
;
export
const
dot
=
'
__<DOT>__
'
;
...
@@ -18,12 +18,12 @@ export const handleImg = (img) => {
...
@@ -18,12 +18,12 @@ export const handleImg = (img) => {
};
};
export
function
renderChecksum
(
files
:
{
path
:
string
,
hash
?:
string
}[])
{
export
function
renderChecksum
(
files
:
{
path
:
string
,
hash
?:
string
}[])
{
return
files
.
map
(({
path
,
hash
})
=>
`
${
hash
||
''
}
${
path
}
`
).
join
(
'
\n
'
);
return
files
.
map
(({
path
,
hash
})
=>
`
${
hash
||
''
}
${
path
}
`
).
join
(
'
\n
'
);
}
}
export
function
UploadOSS
(
dist
:
string
):
Promise
<
void
>
{
export
function
UploadOSS
(
dist
:
string
):
Promise
<
void
>
{
return
new
Promise
<
void
>
((
resolve
,
reject
)
=>
{
return
new
Promise
<
void
>
((
resolve
,
reject
)
=>
{
let
child
=
child_process
.
spawn
(
'
ossutil
'
,
[
'
cp
'
,
'
--recursive
'
,
dist
,
'
oss://mycard/test-release
'
],
{
stdio
:
'
inherit
'
});
let
child
=
child_process
.
spawn
(
'
ossutil
'
,
[
'
cp
'
,
'
--recursive
'
,
dist
,
'
oss://mycard/test-release
'
],
{
stdio
:
'
inherit
'
});
child
.
on
(
'
exit
'
,
(
code
)
=>
{
child
.
on
(
'
exit
'
,
(
code
)
=>
{
if
(
code
==
0
)
{
if
(
code
==
0
)
{
resolve
();
resolve
();
...
@@ -36,3 +36,49 @@ export function UploadOSS(dist: string): Promise<void> {
...
@@ -36,3 +36,49 @@ export function UploadOSS(dist: string): Promise<void> {
});
});
});
});
}
}
type
QueueParams
=
{
concurrency
:
number
;
};
export
class
Queue
{
concurrency
:
number
;
running
:
number
;
queue
:
Array
<
Function
>
;
constructor
(
params
:
QueueParams
)
{
Object
.
assign
(
this
,
params
);
this
.
running
=
0
;
this
.
queue
=
[];
}
set
(
args
:
QueueParams
):
Queue
{
Object
.
assign
(
this
,
args
);
return
this
;
}
push
(
task
:
Function
):
Queue
{
this
.
queue
.
push
(
task
);
return
this
;
}
run
(
task
:
Function
):
Queue
{
this
.
queue
.
push
(
task
);
this
.
next
();
return
this
;
}
next
()
{
while
(
this
.
running
<
this
.
concurrency
&&
this
.
queue
.
length
)
{
let
task
:
Function
|
undefined
=
this
.
queue
.
shift
();
if
(
!
task
)
{
return
;
}
task
(
this
,
()
=>
{
this
.
running
--
;
this
.
next
();
});
this
.
running
++
;
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment