aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/media/media-api.c
blob: e91eb39cf1d30d3e3cb59ec036cc731cc667cd08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/*
 * Copyright (C) 2016 "IoT.bzh"
 * Author "Manuel Bachmann"
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "media-api.h"

/* ------ LOCAL HELPER FUNCTIONS --------- */

/* private client context creation ; default values */
STATIC mediaCtxHandleT* initMediaCtx () {

    mediaCtxHandleT *ctx;

    ctx = malloc (sizeof(mediaCtxHandleT));
    ctx->media_server = NULL;
    ctx->index = 0;

    return ctx;
}

/* called when client session dies [e.g. client quits for more than 15mns] */
STATIC void freeMedia (void *context, void *handle) {

    free (context);
}

/* ------ PUBLIC PLUGIN FUNCTIONS --------- */

STATIC json_object* init (AFB_request *request) {        /* AFB_SESSION_CHECK */

    mediaCtxHandleT *ctx;
    json_object *jresp;

    /* create a private client context */
    if (!request->context)
        request->context = initMediaCtx();

    ctx = (mediaCtxHandleT*)request->context;

    /* initialize server connection */
    if (!ctx->media_server)
      _rygel_init (request->context);

    jresp = json_object_new_object();
    json_object_object_add(jresp, "info", json_object_new_string ("Media initialized"));
    return jresp;
}

STATIC json_object* list (AFB_request *request) {        /* AFB_SESSION_CHECK */

    mediaCtxHandleT *ctx = (mediaCtxHandleT*)request->context;
    json_object *jresp;

    jresp = _rygel_list (ctx);

    if (!jresp)
      return jsonNewMessage(AFB_FAIL, "No content found in media server");

    return jresp;
}

STATIC json_object* selecting (AFB_request *request) {   /* AFB_SESSION_CHECK */

    mediaCtxHandleT *ctx = (mediaCtxHandleT*)request->context;
    const char *value = getQueryValue (request, "value");
    json_object *jresp;
    unsigned int index;
    char index_str[5];

    /* no "?value=" parameter : return current index */
    if (!value) {
        snprintf (index_str, sizeof(index_str), "%d", ctx->index);
        jresp = json_object_new_object();
        json_object_object_add (jresp, "index", json_object_new_string (index_str));
    }

    /* "?value=" parameter is negative */
    else if (atoi(value) < 0)
        return jsonNewMessage(AFB_FAIL, "Chosen index cannot be negative");

    /* "?value=" parameter is positive */
    else if (atoi(value) >= 0) {
        index = (unsigned int) atoi(value);

        if (!_rygel_select (ctx, index))
          return jsonNewMessage(AFB_FAIL, "Chosen index superior to current media count");

        ctx->index = index;
        jresp = json_object_new_object();
        json_object_object_add (jresp, "index", json_object_new_string (value));
    }

    return jresp;
}

STATIC json_object* play (AFB_request *request) {        /* AFB_SESSION_CHECK */

    mediaCtxHandleT *ctx = (mediaCtxHandleT*)request->context;

    if (!_rygel_do (ctx, PLAY, NULL))
      return jsonNewMessage(AFB_FAIL, "Could not play chosen media");

    return jsonNewMessage(AFB_SUCCESS, "PLaying media");
}

STATIC json_object* stop (AFB_request *request) {        /* AFB_SESSION_CHECK */

    mediaCtxHandleT *ctx = (mediaCtxHandleT*)request->context;

    if (!_rygel_do (ctx, STOP, NULL))
      return jsonNewMessage(AFB_FAIL, "Could not stop chosen media");

    return jsonNewMessage(AFB_SUCCESS, "Stopped media");
}

STATIC json_object* pausing (AFB_request *request) {     /* AFB_SESSION_CHECK */

    mediaCtxHandleT *ctx = (mediaCtxHandleT*)request->context;

    if (!_rygel_do (ctx, PAUSE, NULL))
      return jsonNewMessage(AFB_FAIL, "Could not pause chosen media");

    return jsonNewMessage(AFB_SUCCESS, "Paused media");
}

STATIC json_object* seek (AFB_request *request) {        /* AFB_SESSION_CHECK */

    mediaCtxHandleT *ctx = (mediaCtxHandleT*)request->context;
    const char *value = getQueryValue (request, "value");

    /* no "?value=" parameter : return error */
    if (!value)
      return jsonNewMessage(AFB_FAIL, "You must provide a time");

    if (!_rygel_do (ctx, SEEK, value))
      return jsonNewMessage(AFB_FAIL, "Could not seek chosen media");

    return jsonNewMessage(AFB_SUCCESS, "Seeked media");
}

STATIC json_object* upload (AFB_request *request, AFB_PostItem *item) { /* AFB_SESSION_CHECK */

    mediaCtxHandleT *ctx = (mediaCtxHandleT*)request->context;
    AFB_PostCtx *postFileCtx;
#if 0
    const char *value = getQueryValue (request, "value");
    json_object *jresp;
    char path[256];

    /* no "?value=" parameter : return error */
    if (!value)
      return jsonNewMessage(AFB_FAIL, "You must provide a file name");
#endif
    if (item == NULL) {
        postFileCtx = getPostContext (request);
        if (postFileCtx) {
            postFileCtx->errcode = MHD_HTTP_OK;
            postFileCtx->jresp = jsonNewMessage (AFB_SUCCESS, "upload=%s done", getPostPath (request));
        }
    }

    return getPostFile (request, item, "media");
#if 0
    snprintf (path, sizeof(path), "/tmp/%s", value);
    if (access (path, R_OK) == -1)
      return jsonNewMessage(AFB_FAIL, "File not found");

    if (!_rygel_upload (ctx, path))
      return jsonNewMessage(AFB_FAIL, "Error when uploading file... could not complete");

    return jsonNewMessage(AFB_SUCCESS, "File successfully uploaded");
#endif
}

STATIC json_object* ping (AFB_request *request) {         /* AFB_SESSION_NONE */
    return jsonNewMessage(AFB_SUCCESS, "Ping Binder Daemon - Media API");
}


STATIC AFB_restapi pluginApis[]= {
  {"init"   , AFB_SESSION_CHECK,  (AFB_apiCB)init       , "Media API - init"   },
  {"list"   , AFB_SESSION_CHECK,  (AFB_apiCB)list       , "Media API - list"   },
  {"select" , AFB_SESSION_CHECK,  (AFB_apiCB)selecting  , "Media API - select" },
  {"play"   , AFB_SESSION_CHECK,  (AFB_apiCB)play       , "Media API - play"   },
  {"stop"   , AFB_SESSION_CHECK,  (AFB_apiCB)stop       , "Media API - stop"   },
  {"pause"  , AFB_SESSION_CHECK,  (AFB_apiCB)pausing    , "Media API - pause"  },
  {"seek"   , AFB_SESSION_CHECK,  (AFB_apiCB)seek       , "Media API - seek"   },
  {"upload" , AFB_SESSION_CHECK,  (AFB_apiCB)upload     , "Media API - upload" },
  {"ping"   , AFB_SESSION_NONE,   (AFB_apiCB)ping       , "Media API - ping"   },
  {NULL}
};

PUBLIC AFB_plugin* pluginRegister () {
    AFB_plugin *plugin = malloc (sizeof(AFB_plugin));
    plugin->type  = AFB_PLUGIN_JSON;
    plugin->info  = "Application Framework Binder - Media plugin";
    plugin->prefix  = "media";
    plugin->apis  = pluginApis;

    /*plugin->handle = initRadioPlugin();*/
    plugin->freeCtxCB = (AFB_freeCtxCB)freeMedia;

    return (plugin);
};