2023-09-04 19:08:23 +02:00
import argparse
import json
from baserow_api import BaserowAPI
import view
2023-09-04 19:44:43 +02:00
def handle_output ( quiet , data ) :
if not quiet :
view . print_json_output ( data )
2023-09-04 19:08:23 +02:00
def main ( ) :
args = parse_arguments ( )
api = BaserowAPI ( args . base_url , args . api_key , args . verbose )
2023-09-04 19:44:43 +02:00
2023-09-04 19:08:23 +02:00
if args . table_ids :
tables_data = fetch_table_data ( api , args . table_ids )
2023-09-04 19:44:43 +02:00
if " linked_fields " in args . output :
linked_fields_data = api . get_link_fields_for_all_tables ( tables_data )
handle_output ( args . quiet , linked_fields_data )
if " tables " in args . output :
handle_output ( args . quiet , tables_data )
2023-09-04 23:00:45 +02:00
if " matrix " in args . output :
2023-09-05 00:33:58 +02:00
matrix_data = api . build_multitable_matrix ( tables_data )
2023-09-04 23:00:45 +02:00
handle_output ( args . quiet , matrix_data )
2023-09-04 19:44:43 +02:00
if args . database_id :
2023-09-04 19:08:23 +02:00
all_data = api . get_all_data_from_database ( args . database_id )
if not args . quiet :
view . print_json_output ( all_data )
2023-09-04 19:44:43 +02:00
2023-09-04 19:08:23 +02:00
def parse_arguments ( ) :
parser = argparse . ArgumentParser ( description = " Fetch all data from a Baserow database. " )
parser . add_argument ( " base_url " , help = " Base URL of your Baserow instance, e.g., https://YOUR_BASEROW_INSTANCE_URL/api/ " )
parser . add_argument ( " api_key " , help = " Your Baserow API key. " )
parser . add_argument ( " --database_id " , help = " ID of the Baserow database you want to fetch data from. " , default = None )
parser . add_argument ( " --table_ids " , help = " IDs of the Baserow tables you want to fetch data from, separated by commas. " , default = None )
parser . add_argument ( " -v " , " --verbose " , action = " store_true " , help = " Enable verbose mode for debugging. " )
2023-09-04 19:44:43 +02:00
parser . add_argument ( " --output " , choices = [ " linked_fields " , " tables " , " matrix " ] , default = [ ] , nargs = ' + ' , help = " Specify the type(s) of output: linked_fields, matrix, content or both " )
2023-09-04 19:08:23 +02:00
parser . add_argument ( " --quiet " , action = " store_true " , help = " Suppress output of json " )
return parser . parse_args ( )
def fetch_table_data ( api , table_ids_str ) :
table_ids = table_ids_str . split ( ' , ' )
2023-09-04 23:00:45 +02:00
return api . get_tables ( table_ids )
2023-09-04 19:08:23 +02:00
if __name__ == " __main__ " :
main ( )