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
|
/* Mailnag - GNOME-Shell extension frontend
*
* Copyright 2013, 2016 Patrick Ulbrich <zulu99@gmx.net>
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/* This tool aggregates a list of (email, avatar_file) pairs
* which is passed to the Mailnag GNOME-Shell extension.
* Compile with `valac --pkg folks aggregate-avatars.vala`.
*/
using Folks;
static int main(string[] args)
{
MainLoop mainloop = new MainLoop();
var aggregator = IndividualAggregator.dup();
aggregator.prepare.begin();
Idle.add(() => {
if (!aggregator.is_quiescent)
return true;
aggregate_async.begin(mainloop, aggregator);
return false;
});
mainloop.run();
return 0;
}
async void aggregate_async(MainLoop mainloop, IndividualAggregator aggregator)
{
File cache_dir = File.new_for_path(
Environment.get_user_runtime_dir()).get_child("aggregate-avatars-cache");
if (!cache_dir.query_exists())
cache_dir.make_directory_with_parents();
var sb = new StringBuilder();
foreach (var e in aggregator.individuals.entries)
{
OutputStream dst_stream = null;
InputStream src_stream = null;
try
{
Individual individual = e.value;
File dst_file = cache_dir.get_child(individual.id);
if (dst_file.query_exists())
dst_file.delete();
if ((individual.avatar != null) && !individual.email_addresses.is_empty)
{
src_stream = individual.avatar.load(-1, null, null);
dst_stream = dst_file.replace(null, false, FileCreateFlags.PRIVATE);
dst_stream.splice(src_stream, OutputStreamSpliceFlags.NONE);
foreach (var email in individual.email_addresses)
sb.append_printf("%s;%s;", email.value.strip(), dst_file.get_path());
}
}
catch (Error e)
{
stderr.printf("Error: %s\n", e.message);
}
finally
{
try
{
if (src_stream != null) src_stream.close();
if (dst_stream != null) dst_stream.close();
} catch (IOError e) {}
}
}
if (sb.len > 0)
{
stdout.printf(sb.truncate(sb.len - 1).str);
stdout.flush();
}
mainloop.quit();
}
|