You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

154 lines
3.9 KiB
C

#include "mastodon_api.h"
#include "http_server/http_request.h"
#include "form.h"
#include "json/json.h"
#include "model/status.h"
#include "model/account.h"
#include "model/notification.h"
#include "model/timeline.h"
#include "model/server.h"
#include "api/client_apps.h"
#include "api/status.h"
#include "api/notice.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
enum timeline_ids {
tli_owner = 0,
tli_public = 1,
tli_home = 2,
};
bool handle_timeline( struct http_request* req, int timeline_id )
{
bool with_muted = false;
unsigned int limit = 100;
struct timeline* tl = timeline_from_id( timeline_id );
struct status* ss[32];
int count = timeline_load_statuses( tl, 0, 32, ss );
printf( "count=%d\n", count );
show_statuses( req, ss, count );
for( int i = 0; i < count; ++i ) {
status_free( ss[i] );
}
timeline_free(tl);
return true;
}
bool handle_mastodon_api_show_account( struct http_request* req, struct account* a )
{
http_request_send_headers( req, 200, "application/json", true );
FILE* f = http_request_get_response_body( req );
account_write_as_json(a,f);
return true;
}
static bool http_request_route_id( struct http_request* req, int* id )
{
char* id_str = http_request_route_get_dir_or_file(req);
if( !id_str || !*id_str ) { return false; }
*id = -1;
sscanf( id_str, "%d", id );
free(id_str);
if( *id == -1 ) { return false; }
return true;
}
bool route_mastodon_api( struct http_request* req )
{
if( http_request_route( req, "apps" ) ) {
if( http_request_route_method( req, "POST" ) ) {
return handle_mastodon_api_apps(req);
}
} else if( http_request_route( req, "timelines/public" ) ) {
return handle_timeline( req, tli_public );
} else if( http_request_route( req, "instance" ) ) {
http_request_send_headers( req, 200, "application/json", true );
FILE* f = http_request_get_response_body( req );
#include "src/view/api/instance_data.json.inc"
return true;
}
//*
if( !check_bearer_token(req) ) { return false; }
printf( "authorization still valid\n" );
//*/
struct account* owner = account_from_id(0);
if( http_request_route( req, "notifications" ) ) {
return handle_notifications(req);
} else if( http_request_route( req, "filters" ) ) {
http_request_send_headers( req, 200, "application/json", true );
FILE* f = http_request_get_response_body( req );
fprintf( f, "[]" );
return true;
} else if( http_request_route( req, "statuses" ) ) {
if( http_request_route( req, "/" ) ) {
int id = -1;
if( http_request_route_id( req, &id ) ) {
struct status* s = status_from_id(id);
if( http_request_route( req, "context" ) ) {
show_status_context( req, s );
} else {
show_status( req, s );
}
status_free(s);
return true;
}
} else if( http_request_route_method( req, "POST" ) ) {
return handle_post(req, owner);
}
} else if( http_request_route( req, "timelines/" ) ) {
if( http_request_route( req, "home" ) ) {
return handle_timeline( req, tli_home );
} else if( http_request_route( req, "public" ) ) {
return handle_timeline( req, tli_public );
}
} else if( http_request_route( req, "accounts/" ) ) {
if( http_request_route( req, "verify_credentials" ) ) {
return true;
} else if( http_request_route( req, "relationships" ) ) {
http_request_send_headers( req, 200, "application/json", true );
FILE* f = http_request_get_response_body( req );
fprintf( f, "[]" );
return true;
} else if( http_request_route( req, "statuses" ) ) {
return handle_timeline( req, tli_owner );
}
int id = 0;
if( http_request_route_id( req, &id ) ) {
struct account* a = account_from_id( id );
if( !a ) { return false; }
if( http_request_route( req, "statuses" ) ) {
return handle_timeline( req, id );
} else {
return handle_mastodon_api_show_account( req, a );
}
} else if( id == 0 ) {
return handle_mastodon_api_show_account( req, owner );
}
}
return false;
}