(no commit message)
[ptask.git] / src / note.c
1 /*
2  * Copyright (C) 2010-2012 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <sys/stat.h>
24 #include <sys/types.h>
25
26 #include <note.h>
27
28 void note_put(const char *uuid, const char *note)
29 {
30         char *home, *dir, *path;
31         FILE *f;
32
33         home = getenv("HOME");
34
35         if (!home)
36                 return ;
37
38         dir = malloc(strlen(home) + 1 + strlen(".task") + 1);
39         sprintf(dir, "%s/%s", home, ".task");
40         mkdir(dir, 0777);
41
42         path = malloc(strlen(dir) + 1 + strlen(uuid) + strlen(".note") + 1);
43         sprintf(path, "%s/%s.note", dir, uuid);
44
45         printf("note_put %s %s %s\n", path, uuid, note);
46
47         f = fopen(path, "w");
48
49         if (f) {
50                 fwrite(note, 1, strlen(note), f);
51                 fclose(f);
52         } else {
53                 fprintf(stderr, "Failed to open %s\n", path);
54         }
55
56         free(dir);
57         free(path);
58 }