Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-lister
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Platform
Development
swh-lister
Commits
0720c8e1
Commit
0720c8e1
authored
6 years ago
by
David Douard
Browse files
Options
Downloads
Patches
Plain Diff
Kill (useless) --create-tables and --with-data cli command options
parent
662df8ae
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!56
Improve the cli a bit and normalize the lister_db_url config
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
swh/lister/cli.py
+13
-20
13 additions, 20 deletions
swh/lister/cli.py
with
13 additions
and
20 deletions
swh/lister/cli.py
+
13
−
20
View file @
0720c8e1
...
...
@@ -19,14 +19,9 @@ SUPPORTED_LISTERS = ['github', 'gitlab', 'bitbucket', 'debian', 'pypi', 'npm']
'
<http://docs.sqlalchemy.org/en/latest/core/engines.html#database-urls>
'
)
# noqa
@click.argument
(
'
listers
'
,
required
=
1
,
nargs
=-
1
,
type
=
click
.
Choice
(
SUPPORTED_LISTERS
+
[
'
all
'
]))
# help='Listers to act upon')
@click.option
(
'
--create-tables
'
,
'
-t
'
,
is_flag
=
True
,
default
=
False
,
help
=
'
create tables
'
)
@click.option
(
'
--drop-tables
'
,
'
-D
'
,
is_flag
=
True
,
default
=
False
,
help
=
'
Drop tables
'
)
@click.option
(
'
--with-data
'
,
'
-f
'
,
is_flag
=
True
,
default
=
False
,
help
=
'
Insert minimum required data
'
)
def
cli
(
db_url
,
listers
,
create_tables
,
drop_tables
,
with_data
):
help
=
'
Drop tables before creating the database schema
'
)
def
cli
(
db_url
,
listers
,
drop_tables
):
"""
Initialize db model according to lister.
"""
...
...
@@ -100,8 +95,7 @@ def cli(db_url, listers, create_tables, drop_tables, with_data):
_lister
=
NpmLister
(
override_config
=
override_conf
)
if
drop_tables
:
NpmVisitModel
.
metadata
.
drop_all
(
_lister
.
db_engine
)
if
create_tables
:
NpmVisitModel
.
metadata
.
create_all
(
_lister
.
db_engine
)
NpmVisitModel
.
metadata
.
create_all
(
_lister
.
db_engine
)
else
:
raise
ValueError
(
...
...
@@ -112,17 +106,16 @@ def cli(db_url, listers, create_tables, drop_tables, with_data):
logger
.
info
(
'
Dropping tables for %s
'
,
lister
)
ModelBase
.
metadata
.
drop_all
(
_lister
.
db_engine
)
if
create_tables
:
logger
.
info
(
'
Creating tables for %s
'
,
lister
)
ModelBase
.
metadata
.
create_all
(
_lister
.
db_engine
)
if
with_data
and
insert_minimum_data
:
logger
.
info
(
'
Inserting minimal data for %s
'
,
lister
)
try
:
insert_minimum_data
(
_lister
)
except
Exception
:
logger
.
warning
(
'
Failed to insert minumum data in %s
'
,
lister
)
logger
.
info
(
'
Creating tables for %s
'
,
lister
)
ModelBase
.
metadata
.
create_all
(
_lister
.
db_engine
)
if
insert_minimum_data
:
logger
.
info
(
'
Inserting minimal data for %s
'
,
lister
)
try
:
insert_minimum_data
(
_lister
)
except
Exception
:
logger
.
warning
(
'
Failed to insert minumum data in %s
'
,
lister
)
if
__name__
==
'
__main__
'
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment