WebSurf/frontends/gnustep/tables/fetch.m

52 lines
1.3 KiB
Objective-C

#import <Cocoa/Cocoa.h>
#import <string.h>
#import <libgen.h>
#import "utils/url.h"
#import "netsurf/fetch.h"
/*******************/
/****** Fetch ******/
/*******************/
// Return the MIME type of the specified file. Returned string can be inval on next req.
static const char *gnustep_fetch_filetype(const char *unix_path) {
NSLog(@"gnustep_fetch_filetype");
char *bnam;
char *ext;
bnam = basename(unix_path);
ext = strrchr(bnam, '.');
if (ext == NULL) {
return "text/html";
}
ext += 1;
if (strncmp(ext, "css", 3) == 0) {
return "text/css";
} else if (strncmp(ext, "jpeg", 4) == 0 || strncmp(ext, "jpg", 3) == 0) {
return "image/jpeg";
} else if (strncmp(ext, "gif", 3) == 0) {
return "image/gif";
} else if (strncmp(ext, "png", 3) == 0) {
return "image/png";
} else {
return "text/html";
}
}
static const char *gnustep_fetch_get_resource_url(const char *path) {
struct nsurl *url = NULL;
NSString *nspath = [[NSBundle mainBundle] pathForResource: [NSString
stringWithUTF8String: path] ofType: @""];
if (nspath == nil) {
return NULL;
}
nsurl_create([[[NSURL fileURLWithPath: nspath] absoluteString] UTF8String], &url);
return url;
}
struct gui_fetch_table gnustep_fetch_table = {
.filetype = gnustep_fetch_filetype,
.get_resource_url = gnustep_fetch_get_resource_url
};